Skip to content

Commit 7178e83

Browse files
chore(deps): update dependency aspect_bazel_lib to v3.2.2 (#690)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [aspect_bazel_lib](https://redirect.github.com/aspect-build/bazel-lib) | http_archive | patch | `v3.2.1` → `v3.2.2` | --- ### Release Notes <details> <summary>aspect-build/bazel-lib (aspect_bazel_lib)</summary> ### [`v3.2.2`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v3.2.2) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v3.2.1...v3.2.2) #### Using Bzlmod Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "bazel_lib", version = "3.2.2") ``` #### Using WORKSPACE (deprecated) Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "bazel_lib", sha256 = "3d62bf30b95b71a566d9ebca50ee78d370b12522d244235b41166f65b142705d", strip_prefix = "bazel-lib-3.2.2", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.2.2/bazel-lib-v3.2.2.tar.gz", ) load("@&#8203;bazel_lib//lib:repositories.bzl", "bazel_lib_dependencies", "bazel_lib_register_toolchains") # Required bazel-lib dependencies bazel_lib_dependencies() # Required rules_shell dependencies load("@&#8203;rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains") rules_shell_dependencies() rules_shell_toolchains() # Register bazel-lib toolchains bazel_lib_register_toolchains() # Create the host platform repository transitively required by bazel-lib load("@&#8203;bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") load("@&#8203;platforms//host:extension.bzl", "host_platform_repo") maybe( host_platform_repo, name = "host_platform", ) ``` #### What's Changed - fix: Only enable path mapping if supported by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [bazel-contrib#1243](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1243) - fix: declare COREUTILS\_TOOLCHAIN as a Label() by [@&#8203;jbedard](https://redirect.github.com/jbedard) in [bazel-contrib#1244](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1244) **Full Changelog**: <bazel-contrib/bazel-lib@v3.2.1...v3.2.2> </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:eyJjcmVhdGVkSW5WZXIiOiI0My40OC4xIiwidXBkYXRlZEluVmVyIjoiNDMuNDguMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 52b9620 commit 7178e83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/WORKSPACE

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ bazel_features_deps()
3838

3939
http_archive(
4040
name = "aspect_bazel_lib",
41-
sha256 = "5c42b1547cd4fab56fb90f75295aaf6d9e4aed5b51bfcb2457e44b886204a6e2",
42-
strip_prefix = "bazel-lib-3.2.1",
43-
url = "https://github.com/aspect-build/bazel-lib/releases/download/v3.2.1/bazel-lib-v3.2.1.tar.gz",
41+
sha256 = "3d62bf30b95b71a566d9ebca50ee78d370b12522d244235b41166f65b142705d",
42+
strip_prefix = "bazel-lib-3.2.2",
43+
url = "https://github.com/aspect-build/bazel-lib/releases/download/v3.2.2/bazel-lib-v3.2.2.tar.gz",
4444
)
4545

4646
http_archive(

0 commit comments

Comments
 (0)