| commit | 206625fc34db8844d089ce1ac4a24e2e481b4aac | [log] [tgz] |
|---|---|---|
| author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | Fri Jan 30 10:33:00 2026 +0100 |
| committer | GitHub <noreply@github.com> | Fri Jan 30 10:33:00 2026 +0100 |
| tree | bf5bbc5cbe50d93996eebe728b86b6b62e5626f1 | |
| parent | b24b3c3182c6de3a79d637a492164591eb14a51a [diff] |
chore(deps): update dependency protobuf to v33.5 (#127) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [protobuf](https://redirect.github.com/protocolbuffers/protobuf) | bazel_dep | minor | `33.4` → `33.5` | --- ### Release Notes <details> <summary>protocolbuffers/protobuf (protobuf)</summary> ### [`v33.5`](https://redirect.github.com/protocolbuffers/protobuf/releases/tag/v33.5): Protocol Buffers v33.5 ##### Announcements - [Protobuf News](https://protobuf.dev/news/) may include additional announcements or pre-announcements for upcoming changes. ##### Python - Fix Any recursion depth bypass in Python json\_format.ParseDict ([#​25239](https://redirect.github.com/protocolbuffers/protobuf/issues/25239)) ([#​25586](https://redirect.github.com/protocolbuffers/protobuf/issues/25586)) ([`c4eda3e`](https://redirect.github.com/protocolbuffers/protobuf/commit/c4eda3e58680528147a4cc7e2b3c9044f795c9c9)) ##### Other - Update release\_bazel\_module.yaml ([#​25509](https://redirect.github.com/protocolbuffers/protobuf/issues/25509)) ([`c3ca6a3`](https://redirect.github.com/protocolbuffers/protobuf/commit/c3ca6a37c9ba60d2b0275029f6afe809ab3124cc)) - Make BCR PRs non-draft by default. ([`9db25c1`](https://redirect.github.com/protocolbuffers/protobuf/commit/9db25c1fdfe737c00201873ef8afe4cd96d56661)) - Fix(publish-to-bcr): disable attestations ([#​24018](https://redirect.github.com/protocolbuffers/protobuf/issues/24018)) ([`c07bc2f`](https://redirect.github.com/protocolbuffers/protobuf/commit/c07bc2ff906464287c6ee140a57e5511adf901f6)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/bazel-contrib/bazel_features). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi45Mi4xIiwidXBkYXRlZEluVmVyIjoiNDIuOTIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Use this to determine the availability of a Bazel feature in your ruleset. It works under the hood by comparing the Bazel version against a known range in which the feature is available. Example usage:
load("@bazel_features//:features.bzl", "bazel_features") if bazel_features.toolchains.has_optional_toolchains: # Do something
The features.bzl file contains the list of features.
References to global Starlark symbols that do not exist cause load time errors, which means that their availability in Bazel cannot be tested via a regular feature. Instead, use bazel_features.globals.<symbol>, which is <symbol> if the symbol is available and None else.
See globals.bzl for the list of symbols that can be checked for in this way.