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

Generate BUILD files for grpc compiler #1672

Merged
merged 2 commits into from
Nov 27, 2023
Merged

Generate BUILD files for grpc compiler #1672

merged 2 commits into from
Nov 27, 2023

Conversation

mering
Copy link
Contributor

@mering mering commented Nov 24, 2023

What type of PR is this?

Other

What package or component does this PR mostly affect?

bzlmod

What does this PR do? Why is it needed?

This allows using the gRPC compiler binary (google.golang.org/grpc/cmd/protoc-gen-go-grpc) to be used with Bazel.

Which issues(s) does this PR fix?

Other notes for review

@mering
Copy link
Contributor Author

mering commented Nov 24, 2023

How can I update the lock file?

@fmeum
Copy link
Collaborator

fmeum commented Nov 24, 2023

@mering Run bazel mod deps in tests/bcr.

@fmeum
Copy link
Collaborator

fmeum commented Nov 25, 2023

I sent out #1673 to simplify future contributions.

@mering
Copy link
Contributor Author

mering commented Nov 27, 2023

@fmeum I already tried the command from the error message:

$ cd tests/bcr
$ bazel mod deps --lockfile_mode=update
Starting local Bazel server and connecting to it...
FATAL: bazel crashed due to an internal error. Printing stack trace:
java.lang.RuntimeException: Unrecoverable error while evaluating node 'com.google.devtools.build.lib.bazel.bzlmod.BazelLockFileValue$$Lambda$218/0x000000080029a440@6eeaf19b' (requested by nodes 'com.google.devtools.build.lib.bazel.bzlmod.BazelDepGraphValue$$Lambda$343/0x00000008004c9040@6bd00568')
        at com.google.devtools.build.skyframe.AbstractParallelEvaluator$Evaluate.run(AbstractParallelEvaluator.java:633)
        at com.google.devtools.build.lib.concurrent.AbstractQueueVisitor$WrappedRunnable.run(AbstractQueueVisitor.java:365)
        at java.base/java.util.concurrent.ForkJoinTask$AdaptedRunnableAction.exec(Unknown Source)
        at java.base/java.util.concurrent.ForkJoinTask.doExec(Unknown Source)
        at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(Unknown Source)
        at java.base/java.util.concurrent.ForkJoinPool.scan(Unknown Source)
        at java.base/java.util.concurrent.ForkJoinPool.runWorker(Unknown Source)
        at java.base/java.util.concurrent.ForkJoinWorkerThread.run(Unknown Source)
Caused by: java.lang.IllegalArgumentException: com.google.devtools.build.lib.cmdline.LabelSyntaxException: invalid label 'github.com/stretchr/testify': absolute label must begin with '@' or '//'
        at com.google.devtools.build.lib.cmdline.Label.parseCanonicalUnchecked(Label.java:136)
        at com.google.devtools.build.lib.bazel.bzlmod.AttributeValuesAdapter.deserializeStringToObject(AttributeValuesAdapter.java:154)
        at com.google.devtools.build.lib.bazel.bzlmod.AttributeValuesAdapter.deserializeObject(AttributeValuesAdapter.java:105)
        at com.google.devtools.build.lib.bazel.bzlmod.AttributeValuesAdapter.read(AttributeValuesAdapter.java:56)
        at com.google.devtools.build.lib.bazel.bzlmod.AttributeValuesAdapter.read(AttributeValuesAdapter.java:40)
        at com.google.devtools.build.lib.bazel.bzlmod.Tag_GsonTypeAdapter.read(Tag_GsonTypeAdapter.java:110)
        at com.google.devtools.build.lib.bazel.bzlmod.Tag_GsonTypeAdapter.read(Tag_GsonTypeAdapter.java:12)
        at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41)
        at com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.read(CollectionTypeAdapterFactory.java:82)
        at com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.read(CollectionTypeAdapterFactory.java:61)
        at com.google.devtools.build.lib.bazel.bzlmod.DelegateTypeAdapterFactory$1.read(DelegateTypeAdapterFactory.java:133)
        at com.google.devtools.build.lib.bazel.bzlmod.ModuleExtensionUsage_GsonTypeAdapter.read(ModuleExtensionUsage_GsonTypeAdapter.java:229)
        at com.google.devtools.build.lib.bazel.bzlmod.ModuleExtensionUsage_GsonTypeAdapter.read(ModuleExtensionUsage_GsonTypeAdapter.java:17)
        at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41)
        at com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.read(CollectionTypeAdapterFactory.java:82)
        at com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.read(CollectionTypeAdapterFactory.java:61)
        at com.google.devtools.build.lib.bazel.bzlmod.DelegateTypeAdapterFactory$1.read(DelegateTypeAdapterFactory.java:133)
        at com.google.devtools.build.lib.bazel.bzlmod.Module_GsonTypeAdapter.read(Module_GsonTypeAdapter.java:210)
        at com.google.devtools.build.lib.bazel.bzlmod.Module_GsonTypeAdapter.read(Module_GsonTypeAdapter.java:14)
        at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.read(TypeAdapterRuntimeTypeWrapper.java:41)
        at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:187)
        at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.read(MapTypeAdapterFactory.java:145)
        at com.google.devtools.build.lib.bazel.bzlmod.DelegateTypeAdapterFactory$1.read(DelegateTypeAdapterFactory.java:133)
        at com.google.devtools.build.lib.bazel.bzlmod.BazelLockFileValue_GsonTypeAdapter.read(BazelLockFileValue_GsonTypeAdapter.java:159)
        at com.google.devtools.build.lib.bazel.bzlmod.BazelLockFileValue_GsonTypeAdapter.read(BazelLockFileValue_GsonTypeAdapter.java:13)
        at com.google.gson.Gson.fromJson(Gson.java:932)
        at com.google.gson.Gson.fromJson(Gson.java:897)
        at com.google.gson.Gson.fromJson(Gson.java:846)
        at com.google.gson.Gson.fromJson(Gson.java:817)
        at com.google.devtools.build.lib.bazel.bzlmod.BazelLockFileFunction.getLockfileValue(BazelLockFileFunction.java:101)
        at com.google.devtools.build.lib.bazel.bzlmod.BazelLockFileFunction.compute(BazelLockFileFunction.java:79)
        at com.google.devtools.build.skyframe.AbstractParallelEvaluator$Evaluate.run(AbstractParallelEvaluator.java:562)
        ... 7 more
Caused by: com.google.devtools.build.lib.cmdline.LabelSyntaxException: invalid label 'github.com/stretchr/testify': absolute label must begin with '@' or '//'
        at com.google.devtools.build.lib.cmdline.LabelParser.syntaxErrorf(LabelParser.java:208)
        at com.google.devtools.build.lib.cmdline.LabelParser$Parts.checkPkgIsAbsolute(LabelParser.java:194)
        at com.google.devtools.build.lib.cmdline.Label.parseCanonical(Label.java:125)
        at com.google.devtools.build.lib.cmdline.Label.parseCanonicalUnchecked(Label.java:134)
        ... 38 more

@fmeum
Copy link
Collaborator

fmeum commented Nov 27, 2023

@mering Which version of Bazel are you using? .bazelversion for tests/bcr specifies 6.4.0, which should be used automatically if bazel is Bazelisk (recommended setup).

@mering
Copy link
Contributor Author

mering commented Nov 27, 2023

@fmeum thanks for the hint. I was using 6.3.2 and when using Bazelisk it worked!

@mering
Copy link
Contributor Author

mering commented Nov 27, 2023

Tests are passing now.

@fmeum fmeum merged commit b625896 into bazelbuild:master Nov 27, 2023
8 checks passed
@mering mering deleted the grpc-build-gen branch November 27, 2023 16:02
renovate bot referenced this pull request in kreempuff/rules_unreal_engine Dec 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [bazel_gazelle](https://togithub.com/bazelbuild/bazel-gazelle) |
http_archive | minor | `v0.34.0` -> `v0.35.0` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

---

### Release Notes

<details>
<summary>bazelbuild/bazel-gazelle (bazel_gazelle)</summary>

###
[`v0.35.0`](https://togithub.com/bazelbuild/bazel-gazelle/releases/tag/v0.35.0)

[Compare
Source](https://togithub.com/bazelbuild/bazel-gazelle/compare/v0.34.0...v0.35.0)

#### What's Changed

- Don't run on centos7 in BCR presubmit and add maintainers by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1663](https://togithub.com/bazelbuild/bazel-gazelle/pull/1663)
- update readme for v0.34.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1662](https://togithub.com/bazelbuild/bazel-gazelle/pull/1662)
- nit: doc `gazelle_generation_test` use of `arguments.txt` by
[@&#8203;vpanta](https://togithub.com/vpanta) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1660](https://togithub.com/bazelbuild/bazel-gazelle/pull/1660)
- feat(bzlmod): allow patches in `archive_override`s by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1665](https://togithub.com/bazelbuild/bazel-gazelle/pull/1665)
- fix(bzlmod): fail on unused overrides by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1669](https://togithub.com/bazelbuild/bazel-gazelle/pull/1669)
- Annotate more globs with `allow_empty = True` by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1674](https://togithub.com/bazelbuild/bazel-gazelle/pull/1674)
- Generate BUILD files for grpc compiler by
[@&#8203;mering](https://togithub.com/mering) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1672](https://togithub.com/bazelbuild/bazel-gazelle/pull/1672)
- Disable lockfile check for BCR test module by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1673](https://togithub.com/bazelbuild/bazel-gazelle/pull/1673)
- Make isolated extensions usable for Go tools by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1678](https://togithub.com/bazelbuild/bazel-gazelle/pull/1678)
- bzlmod: support go.mod replace directives with a version qualifier on
the left by [@&#8203;andyscott](https://togithub.com/andyscott) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1679](https://togithub.com/bazelbuild/bazel-gazelle/pull/1679)
- fix CI by running both WORKSPACE and Bzlmod on select packages by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1690](https://togithub.com/bazelbuild/bazel-gazelle/pull/1690)
- disable lockfile by default by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1692](https://togithub.com/bazelbuild/bazel-gazelle/pull/1692)
- feat(resolve): optimize applying overrides to be efficient by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1687](https://togithub.com/bazelbuild/bazel-gazelle/pull/1687)
- feat(fix-update): allow user to profile commands with `pprof` by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1685](https://togithub.com/bazelbuild/bazel-gazelle/pull/1685)
- Fix partial execution with mapped kinds by
[@&#8203;HALtheWise](https://togithub.com/HALtheWise) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1680](https://togithub.com/bazelbuild/bazel-gazelle/pull/1680)
- prepare release 0.35.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1693](https://togithub.com/bazelbuild/bazel-gazelle/pull/1693)

#### New Contributors

- [@&#8203;mering](https://togithub.com/mering) made their first
contribution in
[https://github.com/bazelbuild/bazel-gazelle/pull/1672](https://togithub.com/bazelbuild/bazel-gazelle/pull/1672)

**Full Changelog**:
bazelbuild/bazel-gazelle@v0.34.0...v0.35.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/kreempuff/rules_unreal_engine).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
cgrindel-self-hosted-renovate bot referenced this pull request in cgrindel/bazel-starlib Dec 21, 2023
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [bazel_gazelle](https://togithub.com/bazelbuild/bazel-gazelle) |
http_archive | minor | `v0.34.0` -> `v0.35.0` |

---

### Release Notes

<details>
<summary>bazelbuild/bazel-gazelle (bazel_gazelle)</summary>

###
[`v0.35.0`](https://togithub.com/bazelbuild/bazel-gazelle/releases/tag/v0.35.0)

[Compare
Source](https://togithub.com/bazelbuild/bazel-gazelle/compare/v0.34.0...v0.35.0)

#### What's Changed

- Don't run on centos7 in BCR presubmit and add maintainers by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1663](https://togithub.com/bazelbuild/bazel-gazelle/pull/1663)
- update readme for v0.34.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1662](https://togithub.com/bazelbuild/bazel-gazelle/pull/1662)
- nit: doc `gazelle_generation_test` use of `arguments.txt` by
[@&#8203;vpanta](https://togithub.com/vpanta) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1660](https://togithub.com/bazelbuild/bazel-gazelle/pull/1660)
- feat(bzlmod): allow patches in `archive_override`s by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1665](https://togithub.com/bazelbuild/bazel-gazelle/pull/1665)
- fix(bzlmod): fail on unused overrides by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1669](https://togithub.com/bazelbuild/bazel-gazelle/pull/1669)
- Annotate more globs with `allow_empty = True` by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1674](https://togithub.com/bazelbuild/bazel-gazelle/pull/1674)
- Generate BUILD files for grpc compiler by
[@&#8203;mering](https://togithub.com/mering) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1672](https://togithub.com/bazelbuild/bazel-gazelle/pull/1672)
- Disable lockfile check for BCR test module by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1673](https://togithub.com/bazelbuild/bazel-gazelle/pull/1673)
- Make isolated extensions usable for Go tools by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1678](https://togithub.com/bazelbuild/bazel-gazelle/pull/1678)
- bzlmod: support go.mod replace directives with a version qualifier on
the left by [@&#8203;andyscott](https://togithub.com/andyscott) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1679](https://togithub.com/bazelbuild/bazel-gazelle/pull/1679)
- fix CI by running both WORKSPACE and Bzlmod on select packages by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1690](https://togithub.com/bazelbuild/bazel-gazelle/pull/1690)
- disable lockfile by default by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1692](https://togithub.com/bazelbuild/bazel-gazelle/pull/1692)
- feat(resolve): optimize applying overrides to be efficient by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1687](https://togithub.com/bazelbuild/bazel-gazelle/pull/1687)
- feat(fix-update): allow user to profile commands with `pprof` by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1685](https://togithub.com/bazelbuild/bazel-gazelle/pull/1685)
- Fix partial execution with mapped kinds by
[@&#8203;HALtheWise](https://togithub.com/HALtheWise) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1680](https://togithub.com/bazelbuild/bazel-gazelle/pull/1680)
- prepare release 0.35.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1693](https://togithub.com/bazelbuild/bazel-gazelle/pull/1693)

#### New Contributors

- [@&#8203;mering](https://togithub.com/mering) made their first
contribution in
[https://github.com/bazelbuild/bazel-gazelle/pull/1672](https://togithub.com/bazelbuild/bazel-gazelle/pull/1672)

**Full Changelog**:
bazelbuild/bazel-gazelle@v0.34.0...v0.35.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDAuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com>
cgrindel-self-hosted-renovate bot referenced this pull request in cgrindel/rules_swift_package_manager Dec 22, 2023
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [bazel_gazelle](https://togithub.com/bazelbuild/bazel-gazelle) |
http_archive | minor | `v0.34.0` -> `v0.35.0` |

---

### Release Notes

<details>
<summary>bazelbuild/bazel-gazelle (bazel_gazelle)</summary>

###
[`v0.35.0`](https://togithub.com/bazelbuild/bazel-gazelle/releases/tag/v0.35.0)

[Compare
Source](https://togithub.com/bazelbuild/bazel-gazelle/compare/v0.34.0...v0.35.0)

#### What's Changed

- Don't run on centos7 in BCR presubmit and add maintainers by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1663](https://togithub.com/bazelbuild/bazel-gazelle/pull/1663)
- update readme for v0.34.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1662](https://togithub.com/bazelbuild/bazel-gazelle/pull/1662)
- nit: doc `gazelle_generation_test` use of `arguments.txt` by
[@&#8203;vpanta](https://togithub.com/vpanta) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1660](https://togithub.com/bazelbuild/bazel-gazelle/pull/1660)
- feat(bzlmod): allow patches in `archive_override`s by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1665](https://togithub.com/bazelbuild/bazel-gazelle/pull/1665)
- fix(bzlmod): fail on unused overrides by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1669](https://togithub.com/bazelbuild/bazel-gazelle/pull/1669)
- Annotate more globs with `allow_empty = True` by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1674](https://togithub.com/bazelbuild/bazel-gazelle/pull/1674)
- Generate BUILD files for grpc compiler by
[@&#8203;mering](https://togithub.com/mering) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1672](https://togithub.com/bazelbuild/bazel-gazelle/pull/1672)
- Disable lockfile check for BCR test module by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1673](https://togithub.com/bazelbuild/bazel-gazelle/pull/1673)
- Make isolated extensions usable for Go tools by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1678](https://togithub.com/bazelbuild/bazel-gazelle/pull/1678)
- bzlmod: support go.mod replace directives with a version qualifier on
the left by [@&#8203;andyscott](https://togithub.com/andyscott) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1679](https://togithub.com/bazelbuild/bazel-gazelle/pull/1679)
- fix CI by running both WORKSPACE and Bzlmod on select packages by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1690](https://togithub.com/bazelbuild/bazel-gazelle/pull/1690)
- disable lockfile by default by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1692](https://togithub.com/bazelbuild/bazel-gazelle/pull/1692)
- feat(resolve): optimize applying overrides to be efficient by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1687](https://togithub.com/bazelbuild/bazel-gazelle/pull/1687)
- feat(fix-update): allow user to profile commands with `pprof` by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1685](https://togithub.com/bazelbuild/bazel-gazelle/pull/1685)
- Fix partial execution with mapped kinds by
[@&#8203;HALtheWise](https://togithub.com/HALtheWise) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1680](https://togithub.com/bazelbuild/bazel-gazelle/pull/1680)
- prepare release 0.35.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1693](https://togithub.com/bazelbuild/bazel-gazelle/pull/1693)

#### New Contributors

- [@&#8203;mering](https://togithub.com/mering) made their first
contribution in
[https://github.com/bazelbuild/bazel-gazelle/pull/1672](https://togithub.com/bazelbuild/bazel-gazelle/pull/1672)

**Full Changelog**:
bazelbuild/bazel-gazelle@v0.34.0...v0.35.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config help](https://togithub.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://togithub.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDAuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com>
alexeagle referenced this pull request in aspect-build/rules_py Feb 2, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [bazel_gazelle](https://togithub.com/bazelbuild/bazel-gazelle) |
http_archive | minor | `v0.34.0` -> `v0.35.0` |

---

### Release Notes

<details>
<summary>bazelbuild/bazel-gazelle (bazel_gazelle)</summary>

###
[`v0.35.0`](https://togithub.com/bazelbuild/bazel-gazelle/releases/tag/v0.35.0)

[Compare
Source](https://togithub.com/bazelbuild/bazel-gazelle/compare/v0.34.0...v0.35.0)

#### What's Changed

- Don't run on centos7 in BCR presubmit and add maintainers by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1663](https://togithub.com/bazelbuild/bazel-gazelle/pull/1663)
- update readme for v0.34.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1662](https://togithub.com/bazelbuild/bazel-gazelle/pull/1662)
- nit: doc `gazelle_generation_test` use of `arguments.txt` by
[@&#8203;vpanta](https://togithub.com/vpanta) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1660](https://togithub.com/bazelbuild/bazel-gazelle/pull/1660)
- feat(bzlmod): allow patches in `archive_override`s by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1665](https://togithub.com/bazelbuild/bazel-gazelle/pull/1665)
- fix(bzlmod): fail on unused overrides by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1669](https://togithub.com/bazelbuild/bazel-gazelle/pull/1669)
- Annotate more globs with `allow_empty = True` by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1674](https://togithub.com/bazelbuild/bazel-gazelle/pull/1674)
- Generate BUILD files for grpc compiler by
[@&#8203;mering](https://togithub.com/mering) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1672](https://togithub.com/bazelbuild/bazel-gazelle/pull/1672)
- Disable lockfile check for BCR test module by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1673](https://togithub.com/bazelbuild/bazel-gazelle/pull/1673)
- Make isolated extensions usable for Go tools by
[@&#8203;fmeum](https://togithub.com/fmeum) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1678](https://togithub.com/bazelbuild/bazel-gazelle/pull/1678)
- bzlmod: support go.mod replace directives with a version qualifier on
the left by [@&#8203;andyscott](https://togithub.com/andyscott) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1679](https://togithub.com/bazelbuild/bazel-gazelle/pull/1679)
- fix CI by running both WORKSPACE and Bzlmod on select packages by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1690](https://togithub.com/bazelbuild/bazel-gazelle/pull/1690)
- disable lockfile by default by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1692](https://togithub.com/bazelbuild/bazel-gazelle/pull/1692)
- feat(resolve): optimize applying overrides to be efficient by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1687](https://togithub.com/bazelbuild/bazel-gazelle/pull/1687)
- feat(fix-update): allow user to profile commands with `pprof` by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1685](https://togithub.com/bazelbuild/bazel-gazelle/pull/1685)
- Fix partial execution with mapped kinds by
[@&#8203;HALtheWise](https://togithub.com/HALtheWise) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1680](https://togithub.com/bazelbuild/bazel-gazelle/pull/1680)
- prepare release 0.35.0 by
[@&#8203;tyler-french](https://togithub.com/tyler-french) in
[https://github.com/bazelbuild/bazel-gazelle/pull/1693](https://togithub.com/bazelbuild/bazel-gazelle/pull/1693)

#### New Contributors

- [@&#8203;mering](https://togithub.com/mering) made their first
contribution in
[https://github.com/bazelbuild/bazel-gazelle/pull/1672](https://togithub.com/bazelbuild/bazel-gazelle/pull/1672)

**Full Changelog**:
bazelbuild/bazel-gazelle@v0.34.0...v0.35.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).

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

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.

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

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/aspect-build/rules_py).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMjEuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEyMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jeromep-stripe pushed a commit to jeromep-stripe/bazel-gazelle that referenced this pull request Mar 22, 2024
* Generate BUILD files for grpc compiler

* Update Bazel module
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.

2 participants