You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
`bazel_dep` declarations altogether and rely on
`deps/latest/MODULE.bazel`.
---
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.
0 commit comments