Skip to content

Commit e427b71

Browse files
chore(deps): update dependency aspect_bazel_lib to v3.5.0 (#800)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [aspect_bazel_lib](https://redirect.github.com/aspect-build/bazel-lib) | http_archive | minor | `v3.4.0` → `v3.5.0` | --- ### Release Notes <details> <summary>aspect-build/bazel-lib (aspect_bazel_lib)</summary> ### [`v3.5.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v3.5.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v3.4.0...v3.5.0) #### Using Bzlmod Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "bazel_lib", version = "3.5.0") ``` #### 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 = "77f4af7eb3b7573dafa8afab9058ee0d9696209a8b8096ac77646a42d12d0e48", strip_prefix = "bazel-lib-3.5.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.5.0/bazel-lib-v3.5.0.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(copy\_directory): avoid BSD diff directory loop by [@&#8203;keegancsmith](https://redirect.github.com/keegancsmith) in [bazel-contrib#1262](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1262) - fix: resolve copy helper toolchains as Labels by [@&#8203;keegancsmith](https://redirect.github.com/keegancsmith) in [bazel-contrib#1261](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1261) - feat: add stderr, exit\_code\_out, chdir, silent\_on\_success to run\_binary by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1260](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1260) - feat: add fail\_on to run\_binary by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1265](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1265) - chore(deps): update bazel-contrib/publish-to-bcr action to v1.4.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [bazel-contrib#1264](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1264) - chore(deps): update bazel-contrib/.github action to v7.7.0 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [bazel-contrib#1263](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1263) - fix: Allow generated files in platform\_transition\_filegroup by [@&#8203;philsc](https://redirect.github.com/philsc) in [bazel-contrib#1240](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1240) #### New Contributors - [@&#8203;keegancsmith](https://redirect.github.com/keegancsmith) made their first contribution in [bazel-contrib#1262](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1262) - [@&#8203;philsc](https://redirect.github.com/philsc) made their first contribution in [bazel-contrib#1240](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1240) **Full Changelog**: <bazel-contrib/bazel-lib@v3.4.0...v3.5.0> </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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:eyJjcmVhdGVkSW5WZXIiOiI0My4yNDIuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI0Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 034fb75 commit e427b71

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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 = "3f4abcf708b83ca040cb6b36fa5f8871d60f136b5f7d3c697b6da3343b9ec1da",
42-
strip_prefix = "bazel-lib-3.4.0",
43-
url = "https://github.com/aspect-build/bazel-lib/releases/download/v3.4.0/bazel-lib-v3.4.0.tar.gz",
41+
sha256 = "77f4af7eb3b7573dafa8afab9058ee0d9696209a8b8096ac77646a42d12d0e48",
42+
strip_prefix = "bazel-lib-3.5.0",
43+
url = "https://github.com/aspect-build/bazel-lib/releases/download/v3.5.0/bazel-lib-v3.5.0.tar.gz",
4444
)
4545

4646
http_archive(

0 commit comments

Comments
 (0)