Skip to content

Commit ab66d44

Browse files
chore(deps): update dependency bazel_features to v1.44.0 (#701)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [bazel_features](https://redirect.github.com/bazel-contrib/bazel_features) | http_archive | minor | `v1.43.0` → `v1.44.0` | --- ### Release Notes <details> <summary>bazel-contrib/bazel_features (bazel_features)</summary> ### [`v1.44.0`](https://redirect.github.com/bazel-contrib/bazel_features/releases/tag/v1.44.0) [Compare Source](https://redirect.github.com/bazel-contrib/bazel_features/compare/v1.43.0...v1.44.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.44.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 = "ccf85bbf0613d12bf6df2c8470ecec544a6fe8ceab684e970e8ed4dde4cb24ec", strip_prefix = "bazel_features-1.44.0", url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.44.0/bazel_features-v1.44.0.tar.gz", ) load("@&#8203;bazel_features//:deps.bzl", "bazel_features_deps") bazel_features_deps() ``` #### What's Changed - chore(deps): update dependency bazel to v9.0.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;134](https://redirect.github.com/bazel-contrib/bazel_features/pull/134) - chore(deps): update dependency protobuf to v33.6 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [#&#8203;135](https://redirect.github.com/bazel-contrib/bazel_features/pull/135) - Add feature for cc.compile\_is\_starlark by [@&#8203;pzembrod](https://redirect.github.com/pzembrod) in [#&#8203;136](https://redirect.github.com/bazel-contrib/bazel_features/pull/136) #### New Contributors - [@&#8203;pzembrod](https://redirect.github.com/pzembrod) made their first contribution in [#&#8203;136](https://redirect.github.com/bazel-contrib/bazel_features/pull/136) **Full Changelog**: <bazel-contrib/bazel_features@v1.43.0...v1.44.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:eyJjcmVhdGVkSW5WZXIiOiI0My42Ni40IiwidXBkYXRlZEluVmVyIjoiNDMuNjYuNCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 378a826 commit ab66d44

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

tests/WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
2727

2828
http_archive(
2929
name = "bazel_features",
30-
sha256 = "c26b4e69cf02fea24511a108d158188b9d8174426311aac59ce803a78d107648",
31-
strip_prefix = "bazel_features-1.43.0",
32-
url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.43.0/bazel_features-v1.43.0.tar.gz",
30+
sha256 = "ccf85bbf0613d12bf6df2c8470ecec544a6fe8ceab684e970e8ed4dde4cb24ec",
31+
strip_prefix = "bazel_features-1.44.0",
32+
url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.44.0/bazel_features-v1.44.0.tar.gz",
3333
)
3434

3535
load("@bazel_features//:deps.bzl", "bazel_features_deps")

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 = "c26b4e69cf02fea24511a108d158188b9d8174426311aac59ce803a78d107648",
43-
strip_prefix = "bazel_features-1.43.0",
44-
url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.43.0/bazel_features-v1.43.0.tar.gz",
42+
sha256 = "ccf85bbf0613d12bf6df2c8470ecec544a6fe8ceab684e970e8ed4dde4cb24ec",
43+
strip_prefix = "bazel_features-1.44.0",
44+
url = "https://github.com/bazel-contrib/bazel_features/releases/download/v1.44.0/bazel_features-v1.44.0.tar.gz",
4545
)
4646

4747
# Load helly25_bzl for version comparisons.

0 commit comments

Comments
 (0)