Skip to content

Commit c7a3d99

Browse files
chore(deps): update dependency bazel_features to v1.37.0 (#574)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [bazel_features](https://redirect.github.com/bazel-contrib/bazel_features) | http_archive | minor | `v1.36.0` -> `v1.37.0` | --- ### Release Notes <details> <summary>bazel-contrib/bazel_features (bazel_features)</summary> ### [`v1.37.0`](https://redirect.github.com/bazel-contrib/bazel_features/releases/tag/v1.37.0) [Compare Source](https://redirect.github.com/bazel-contrib/bazel_features/compare/v1.36.0...v1.37.0) #### Using Bzlmod with Bazel 6 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "bazel_features", version = "1.37.0") ``` #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "bazel_features", sha256 = "adc8ddf121917f197f75c5245dfa8d7b1619f10a1002e25062b093b7957f2798", strip_prefix = "bazel_features-1.37.0", url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.37.0/bazel_features-v1.37.0.tar.gz", ) load("@&#8203;bazel_features//:deps.bzl", "bazel_features_deps") bazel_features_deps() ``` #### What's Changed - Fix handling of globals that were newly introduced and then removed by [@&#8203;hvadehra](https://redirect.github.com/hvadehra) in [#&#8203;115](https://redirect.github.com/bazel-contrib/bazel_features/pull/115) **Full Changelog**: <bazel-contrib/bazel_features@v1.36.0...v1.37.0> </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/toolchains_llvm). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTYuMSIsInVwZGF0ZWRJblZlciI6IjQxLjE1Ni4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 151ed31 commit c7a3d99

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

toolchain/deps.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ def bazel_toolchain_dependencies():
3939
if not native.existing_rule("bazel_features"):
4040
http_archive(
4141
name = "bazel_features",
42-
sha256 = "9390b391a68d3b24aef7966bce8556d28003fe3f022a5008efc7807e8acaaf1a",
43-
strip_prefix = "bazel_features-1.36.0",
44-
url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.36.0/bazel_features-v1.36.0.tar.gz",
42+
sha256 = "adc8ddf121917f197f75c5245dfa8d7b1619f10a1002e25062b093b7957f2798",
43+
strip_prefix = "bazel_features-1.37.0",
44+
url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.37.0/bazel_features-v1.37.0.tar.gz",
4545
)
4646

4747
# Load helly25_bzl for version comparisons.

0 commit comments

Comments
 (0)