Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency bazel_gazelle to v0.33.0 - autoclosed #1

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 5, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
bazel_gazelle http_archive minor v0.24.0 -> v0.33.0

Release Notes

bazelbuild/bazel-gazelle (bazel_gazelle)

v0.33.0

Compare Source

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.32.0...v0.33.0

v0.32.0

Compare Source

Starting this release, Gazelle no longer resolves Go and proto imports of Google APIs to @go_googleapis. Instead, Go packages from Google APIs will be treated as regular Go packages, and resolve to @org_golang_google_genproto, which contains the pre-generated Go code, with its version determined by Go modules. For proto files importing Google APIs proto and generating Go code, users need to:

  1. Add an http_archive rule to download Google APIs, e.g.,
http_archive(
    name = "googleapis",
    sha256 = "9d1a930e767c93c825398b8f8692eca3fe353b9aaadedfbcf1fca2282c85df88",
    strip_prefix = "googleapis-64926d52febbf298cb82a8f472ade4a3969ba922",
    urls = [
        "https://github.com/googleapis/googleapis/archive/64926d52febbf298cb82a8f472ade4a3969ba922.zip",
    ],
)

load("@​googleapis//:repository_rules.bzl", "switched_rules_by_language")

switched_rules_by_language(
    name = "com_google_googleapis_imports",
)

Note that the version of Google APIs archive needs to be compatible with the pre-generated code in @org_golang_google_genproto.

  1. Resolve the proto manually. If Gazelle is being used, directives like the following need to be added to a parent directory of the proto files:
### gazelle:resolve proto proto google/rpc/status.proto @​googleapis//google/rpc:status_proto
### gazelle:resolve proto go google/rpc/status.proto  @​org_golang_google_genproto//googleapis/rpc/status
### gazelle:resolve proto google/longrunning/operations.proto @​googleapis//google/longrunning:operations_proto
### gazelle:resolve proto go google/longrunning/operations.proto @​org_golang_google_genproto//googleapis/longrunning

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.31.1...v0.32.0

v0.31.1

Compare Source

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.31.0...v0.31.1

v0.31.0

Compare Source

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.30.0...v0.31.0

v0.30.0

Compare Source

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.29.0...v0.30.0

v0.29.0

Compare Source

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.28.0...v0.29.0

v0.28.0

Compare Source

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.27.0...v0.28.0

v0.27.0

Compare Source

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.26.0...v0.27.0

v0.26.0

Compare Source

What's Changed

New Contributors

Full Changelog: bazelbuild/bazel-gazelle@v0.25.0...v0.26.0

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_gazelle",
    sha256 = "501deb3d5695ab658e82f6f6f549ba681ea3ca2a5fb7911154b5aa45596183fa",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.26.0/bazel-gazelle-v0.26.0.tar.gz",
        "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.26.0/bazel-gazelle-v0.26.0.tar.gz",
    ],
)

load("@​bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")

############################################################

Define your own dependencies here using go_repository.

Else, dependencies declared by rules_go/gazelle will be used.

The first declaration of an external repository "wins".

############################################################

gazelle_dependencies()

v0.25.0

Compare Source

Go changes

Proto changes

General changes

Full Changelog: bazelbuild/bazel-gazelle@v0.24.0...v0.25.0

WORKSPACE code

load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "bazel_gazelle",
    sha256 = "5982e5463f171da99e3bdaeff8c0f48283a7a5f396ec5282910b9e8a49c0dd7e",
    urls = [
        "https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.25.0/bazel-gazelle-v0.25.0.tar.gz",
        "https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.25.0/bazel-gazelle-v0.25.0.tar.gz",
    ],
)

load("@​bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")

############################################################

Define your own dependencies here using go_repository.

Else, dependencies declared by rules_go/gazelle will be used.

The first declaration of an external repository "wins".

############################################################

gazelle_dependencies()

Configuration

📅 Schedule: Branch creation - "after 1am and before 7am" in timezone America/Vancouver, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch 3 times, most recently from 23ef569 to b3c7822 Compare September 12, 2022 19:20
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from b3c7822 to 8a6767d Compare September 14, 2022 22:52
@renovate renovate bot changed the title Update dependency bazel_gazelle to v0.26.0 Update dependency bazel_gazelle to v0.27.0 Sep 14, 2022
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch 2 times, most recently from a1a93f5 to 8509139 Compare September 22, 2022 05:03
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch 5 times, most recently from 4e6458d to 20fc5e2 Compare October 1, 2022 17:13
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from 20fc5e2 to 35de6b6 Compare October 10, 2022 15:38
@renovate renovate bot changed the title Update dependency bazel_gazelle to v0.27.0 Update dependency bazel_gazelle to v0.28.0 Oct 26, 2022
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch 3 times, most recently from ea5524d to 8471a74 Compare November 23, 2022 02:51
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from 8471a74 to f8198bb Compare November 29, 2022 12:10
@renovate renovate bot changed the title Update dependency bazel_gazelle to v0.28.0 Update dependency bazel_gazelle to v0.29.0 Jan 14, 2023
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from f8198bb to ef34dcc Compare March 9, 2023 18:42
@renovate renovate bot changed the title Update dependency bazel_gazelle to v0.29.0 chore(deps): update dependency bazel_gazelle to v0.29.0 Mar 9, 2023
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch 2 times, most recently from 7c01c0f to 7f97b6a Compare March 9, 2023 18:45
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from 7f97b6a to c4ff155 Compare March 30, 2023 22:59
@renovate renovate bot changed the title chore(deps): update dependency bazel_gazelle to v0.29.0 chore(deps): update dependency bazel_gazelle to v0.30.0 Mar 30, 2023
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from c4ff155 to 5bf5c14 Compare April 24, 2023 18:55
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from 5bf5c14 to 9a35b6f Compare May 1, 2023 20:07
@renovate renovate bot changed the title chore(deps): update dependency bazel_gazelle to v0.30.0 chore(deps): update dependency bazel_gazelle to v0.31.0 May 27, 2023
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from 9a35b6f to cf29372 Compare May 27, 2023 20:41
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from cf29372 to f42113e Compare June 13, 2023 03:14
@renovate renovate bot changed the title chore(deps): update dependency bazel_gazelle to v0.31.0 chore(deps): update dependency bazel_gazelle to v0.31.1 Jun 13, 2023
@renovate renovate bot changed the title chore(deps): update dependency bazel_gazelle to v0.31.1 chore(deps): update dependency bazel_gazelle to v0.32.0 Jul 11, 2023
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from f42113e to da2b3be Compare July 11, 2023 20:38
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from da2b3be to 7e08e94 Compare July 24, 2023 20:22
@zaucy zaucy enabled auto-merge (squash) July 24, 2023 20:25
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch 3 times, most recently from 39d27fa to 9ade304 Compare July 24, 2023 20:29
@renovate renovate bot changed the title chore(deps): update dependency bazel_gazelle to v0.32.0 chore(deps): update dependency bazel_gazelle to v0.33.0 Sep 8, 2023
@renovate renovate bot force-pushed the renovate/bazel_gazelle-0.x branch from 9ade304 to 1392cc1 Compare September 8, 2023 10:45
@cocogitto-bot
Copy link

cocogitto-bot bot commented Sep 8, 2023

✔️ 1392cc1 - Conventional commits check succeeded.

@renovate renovate bot changed the title chore(deps): update dependency bazel_gazelle to v0.33.0 chore(deps): update dependency bazel_gazelle to v0.33.0 - autoclosed Sep 19, 2023
@renovate renovate bot closed this Sep 19, 2023
auto-merge was automatically disabled September 19, 2023 17:00

Pull request was closed

@renovate renovate bot deleted the renovate/bazel_gazelle-0.x branch September 19, 2023 17:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants