Bump dependency versions for rules_scala v7.1.2#1772
Merged
mbland merged 1 commit intobazel-contrib:masterfrom Sep 15, 2025
Merged
Bump dependency versions for rules_scala v7.1.2#1772mbland merged 1 commit intobazel-contrib:masterfrom
rules_scala v7.1.2#1772mbland merged 1 commit intobazel-contrib:masterfrom
Conversation
Updates the following dependencies:
- Go: 1.25.0 => 1.25.1
- `bazel-contrib/.github:release_ruleset.yaml`: 7.2.2 => 7.2.3
- `bazel-contrib/publish-to-bcr:publish.yaml`: 0.1.0 => 1.0.0
- `golang.org/x/tools`: 0.36.0 => 0.37.0
- `google-common-protos`: 2.61.0 => 2.61.1
- `jline`: 3.30.5 => 3.30.6
- `protobuf-java`: 4.32.0 => 4.32.1
- `protobuf`: 32.0 => 32.1
- `rules_cc`: 0.2.3 => 0.2.8
- `rules_python`: 1.6.0 => 1.6.1
- `rules_shell`: 0.6.0 => 0.6.1
- `util-interface`: 1.11.5 => 1.11.6
Also changes all the `bazel_dep` declarations for `protobuf` to remove
the curently unnecessary `version` parameter from:
```py
bazel_dep(
name = "protobuf",
version = "32.0",
repo_name = "com_google_protobuf",
)
```
to:
```py
bazel_dep(name = "protobuf", repo_name = "com_google_protobuf")
```
If protocolbuffers/protobuf#19679 ever lands, we'll remove the
`single_version_override` statements and restore `version` to these
`bazel_dep` declarations.
---
This is mostly a routine version bump before a new release.
The changes to the `bazel_dep` statements for `protobuf` aim to make the
diffs smaller when increasing the `protobuf` version in the future.
Collaborator
Author
|
@simuons @WojciechMazur Let me know if you're cool with releasing v7.1.2 after this lands. I don't mind if you merge it and release it, or if you'd prefer I do it. And if you prefer this be v7.2.0 instead, I'm happy to update it accordingly. |
WojciechMazur
approved these changes
Sep 15, 2025
Collaborator
WojciechMazur
left a comment
There was a problem hiding this comment.
I'm fine with cutting of a new release, it would also be good to test out release procedure with the new maintenance role.
Collaborator
Author
|
OK, I just finished running |
Collaborator
|
Hi, @mbland, glad to see that you have released a new version! Sorry for unresponsiveness. |
Collaborator
Author
|
@simuons No apologies necessary. 🙂 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Updates the following dependencies:
bazel-contrib/.github:release_ruleset.yaml: 7.2.2 => 7.2.3bazel-contrib/publish-to-bcr:publish.yaml: 0.1.0 => 1.0.0golang.org/x/tools: 0.36.0 => 0.37.0google-common-protos: 2.61.0 => 2.61.1jline: 3.30.5 => 3.30.6protobuf-java: 4.32.0 => 4.32.1protobuf: 32.0 => 32.1rules_cc: 0.2.3 => 0.2.8rules_python: 1.6.0 => 1.6.1rules_shell: 0.6.0 => 0.6.1util-interface: 1.11.5 => 1.11.6Also changes all the
bazel_depdeclarations forprotobufto remove the curently unnecessaryversionparameter from:to:
If protocolbuffers/protobuf#19679 ever lands, we'll remove the
single_version_overridestatements and restoreversionto thesebazel_depdeclarations altogether and rely ondeps/latest/MODULE.bazel.Motivation
This is mostly a routine version bump before a new release.
The changes to the
bazel_depstatements forprotobufaim to make the diffs smaller when increasing theprotobufversion in the future.