Skip to content

Commit 23022dd

Browse files
chore(deps): update dependency aspect_bazel_lib to v2.21.2 (#578)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [aspect_bazel_lib](https://redirect.github.com/aspect-build/bazel-lib) | http_archive | minor | `v2.0.0` -> `v2.21.2` | --- ### Release Notes <details> <summary>aspect-build/bazel-lib (aspect_bazel_lib)</summary> ### [`v2.21.2`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.21.2) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.21.1...v2.21.2) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.21.2") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "53cadea9109e646a93ed4dc90c9bbcaa8073c7c3df745b92f6a5000daf7aa3da", strip_prefix = "bazel-lib-2.21.2", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.2/bazel-lib-v2.21.2.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_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 aspect_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 - chore: be explicit that we require bazel 6.5.0 by [@&#8203;peakschris](https://redirect.github.com/peakschris) in [bazel-contrib#1160](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1160) - chore(deps): update bazel-contrib/publish-to-bcr action to v0.2.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [bazel-contrib#1162](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1162) - fix: expand\_template propagate runfiles by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1171](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1171) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.21.1...v2.21.2> ### [`v2.21.1`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.21.1) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.21.0...v2.21.1) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.21.1") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "f525668442e4b19ae10d77e0b5ad15de5807025f321954dfb7065c0fe2429ec1", strip_prefix = "bazel-lib-2.21.1", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.1/bazel-lib-v2.21.1.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_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 aspect_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: don't use version 0.0.0 by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1151](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1151) - fix(tar): don't expose the toolchain type with [@&#8203;tar](https://redirect.github.com/tar).bzl name by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1153](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1153) - fix: use bsdtar 3.8.1-fix1 on windows for CRLF fixes by [@&#8203;peakschris](https://redirect.github.com/peakschris) in [bazel-contrib#1152](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1152) - chore(deps): update bazel-contrib/.github action to v7.2.3 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [bazel-contrib#1127](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1127) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.21.0...v2.21.1> ### [`v2.21.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.21.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.20.0...v2.21.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 = "aspect_bazel_lib", version = "2.21.0") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "6d636cfdecc7f5c1a5d82b9790fb5d5d5e8aa6ea8b53a71a75f1ba53c8d29f61", strip_prefix = "bazel-lib-2.21.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.0/bazel-lib-v2.21.0.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_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 aspect_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 - chore: add windows\_arm64 support to yq by [@&#8203;dennisameling](https://redirect.github.com/dennisameling) in [bazel-contrib#1125](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1125) - chore(deps): update bazel-contrib/publish-to-bcr action to v0.2.2 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [bazel-contrib#1116](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1116) - chore(deps): update dependency bazel to v8.3.1 by [@&#8203;renovate](https://redirect.github.com/renovate)\[bot] in [bazel-contrib#1117](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1117) - chore(docs): expose filegroup target with proto docs for bzl\_library by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1131](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1131) - chore(deps): update coreutils to v0.1.0 by [@&#8203;gzm0](https://redirect.github.com/gzm0) in [bazel-contrib#1136](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1136) - feat: fix zstd\_toolchain and enable root tests on Windows by [@&#8203;peakschris](https://redirect.github.com/peakschris) in [bazel-contrib#1137](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1137) - chore: Update Go to 1.24.6 by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [bazel-contrib#1147](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1147) #### New Contributors - [@&#8203;dennisameling](https://redirect.github.com/dennisameling) made their first contribution in [bazel-contrib#1125](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1125) - [@&#8203;peakschris](https://redirect.github.com/peakschris) made their first contribution in [bazel-contrib#1137](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1137) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.20.0...v2.21.0> ### [`v2.20.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.20.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.19.4...v2.20.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 = "aspect_bazel_lib", version = "2.20.0") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "3522895fa13b97e8b27e3b642045682aa4233ae1a6b278aad6a3b483501dc9f2", strip_prefix = "bazel-lib-2.20.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.20.0/bazel-lib-v2.20.0.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_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 aspect_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: write\_source\_file on Windows when workspace is on different drive than the bazel user folder by [@&#8203;malkia](https://redirect.github.com/malkia) in [bazel-contrib#1121](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1121) - fix: Wrap reference to [@&#8203;platforms](https://redirect.github.com/platforms) in Label() by [@&#8203;EdSchouten](https://redirect.github.com/EdSchouten) in [bazel-contrib#1120](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1120) - feat: support $< in expand\_variables by [@&#8203;longlho](https://redirect.github.com/longlho) in [bazel-contrib#1122](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1122) - chore(deps): upgrade bsdtar to 3.8.1 by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1126](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1126) #### New Contributors - [@&#8203;malkia](https://redirect.github.com/malkia) made their first contribution in [bazel-contrib#1121](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1121) - [@&#8203;EdSchouten](https://redirect.github.com/EdSchouten) made their first contribution in [bazel-contrib#1120](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1120) - [@&#8203;longlho](https://redirect.github.com/longlho) made their first contribution in [bazel-contrib#1122](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1122) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.19.4...v2.20.0> ### [`v2.19.4`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.19.4) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.19.3...v2.19.4) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.19.4") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "9a44f457810ce64ec36a244cc7c807607541ab88f2535e07e0bf2976ef4b73fe", strip_prefix = "bazel-lib-2.19.4", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.4/bazel-lib-v2.19.4.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_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 aspect_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: fix ci for bazelrc preset docs by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1112](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1112) - fix: --build\_runfile\_links only for coverage by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1111](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1111) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.19.3...v2.19.4> ### [`v2.19.3`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.19.3) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.19.2...v2.19.3) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.19.3") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "db7da732db4dece80cd6d368220930950c9306ff356ebba46498fe64e65a3945", strip_prefix = "bazel-lib-2.19.3", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.3/bazel-lib-v2.19.3.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_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 aspect_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 - chore: verify that our bzl\_library targets declare their deps by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1110](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1110) - feat: Use default value of 5 for repository downloader by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1108](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1108) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.19.2...v2.19.3> ### [`v2.19.2`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.19.2) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.19.1...v2.19.2) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.19.2") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "8eb77bd902814bb1a0feb26f5ba5f7444ac18c55359845f5aee30f82f1599a6e", strip_prefix = "bazel-lib-2.19.2", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.2/bazel-lib-v2.19.2.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_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 aspect_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: remove references to incompatible\_use\_toolchain\_transition by [@&#8203;benjaminp](https://redirect.github.com/benjaminp) in [bazel-contrib#1109](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1109) #### New Contributors - [@&#8203;benjaminp](https://redirect.github.com/benjaminp) made their first contribution in [bazel-contrib#1109](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1109) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.19.1...v2.19.2> ### [`v2.19.1`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.19.1) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.17.1...v2.19.1) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.19.1") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "63ae96db9b9ea3821320e4274352980387dc3218baeea0387f7cf738755d0f16", strip_prefix = "bazel-lib-2.19.1", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.19.1/bazel-lib-v2.19.1.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_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 aspect_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 - refactor: Bazelrc presets: Almost always use common by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1095](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1095) - chore: pre-commit config update && autoupdate by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1096](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1096) - chore: Exclude prettier hook from renovate by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1097](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1097) - fix: Remove references to `@local_config_platform` by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [bazel-contrib#1098](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1098) - refactor: Make all bazelrc presets common by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1099](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1099) - feat: apply rules\_shell fixes to WORKSPACE by [@&#8203;novas0x2a](https://redirect.github.com/novas0x2a) in [bazel-contrib#1101](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1101) - feat: add `windows_arm64` binaries for built-in toolchains by [@&#8203;albertocavalcante](https://redirect.github.com/albertocavalcante) in [bazel-contrib#1102](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1102) - chore(release): allow creating a tag from GH UI by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1104](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1104) - chore: allow release workflow to be called from tag.yaml by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1105](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1105) - chore: add back doc redirects by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1100](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1100) - feat: Propose experimental\_remote\_cache\_eviction\_retries=5 for bazel 7 by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1106](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1106) - fix(release): another spot tag\_name wasn't wired through by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1107](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1107) #### New Contributors - [@&#8203;albertocavalcante](https://redirect.github.com/albertocavalcante) made their first contribution in [bazel-contrib#1102](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1102) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.17.1...v2.19.1> ### [`v2.17.1`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.17.1) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.17.0...v2.17.1) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.17.1") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "e5131e44db23459bd1ed04635f2ae5436bc83f5e38629e07b75c0bf206f09245", strip_prefix = "bazel-lib-2.17.1", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.17.1/bazel-lib-v2.17.1.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - fix(release): missed a public API symbol that requires re-export by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1094](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1094) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.17.0...v2.17.1> ### [`v2.17.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.17.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.16.0...v2.17.0) ### Do not use, inadvertent breaking change rules\_js fails with a missing public API symbol: ``` ERROR: Traceback (most recent call last): File "/home/runner/.bazel/external/aspect_rules_js+/js/private/js_image_layer.bzl", line 16, column 41, in <toplevel> load("@&#8203;aspect_bazel_lib//lib:tar.bzl", "tar_lib") Error: file '@&#8203;aspect_bazel_lib//lib:tar.bzl' does not contain symbol 'tar_lib' ``` ### [`v2.16.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.16.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.15.3...v2.16.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 = "aspect_bazel_lib", version = "2.16.0") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "fc8fe1be58ae39f84a8613d554534760c7f0819d407afcc98bbcbd990523bfed", strip_prefix = "bazel-lib-2.16.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.16.0/bazel-lib-v2.16.0.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - chore: update bsdtar to latest by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1080](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1080) - feat(mtree\_mutate): Adding Support for Group / GID to mtree\_mutate by [@&#8203;ajrpeggio](https://redirect.github.com/ajrpeggio) in [bazel-contrib#1082](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1082) #### New Contributors - [@&#8203;ajrpeggio](https://redirect.github.com/ajrpeggio) made their first contribution in [bazel-contrib#1082](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1082) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.15.3...v2.16.0> ### [`v2.15.3`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.15.3) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.15.2...v2.15.3) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.15.3") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "2be8a5df0b20b0ed37604b050da01dbf7ad45ad44768c0d478b64779b9f58412", strip_prefix = "bazel-lib-2.15.3", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.15.3/bazel-lib-v2.15.3.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - feat: Add option to control verbosity of `write_source_files`. by [@&#8203;r0bobo](https://redirect.github.com/r0bobo) in [bazel-contrib#1033](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1033) - feat(mtree-spec): add include\_runfiles flag by [@&#8203;skeggse](https://redirect.github.com/skeggse) in [bazel-contrib#1068](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1068) - chore: docs without compiling protoc by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1063](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1063) - feat: publish release attestations by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1069](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1069) - fix(release): override test command, corresponding to ci.yaml by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1070](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1070) - chore: make root workspace buildable by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1071](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1071) - fix(release): upgrade release workflow by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1073](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1073) - fix(release): name of folder containing binaries by [@&#8203;kormide](https://redirect.github.com/kormide) in [bazel-contrib#1075](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1075) - fix(release): missed a spot in last commit by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1074](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1074) - fix(release): yet another spot that's wrong by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1077](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1077) #### New Contributors - [@&#8203;skeggse](https://redirect.github.com/skeggse) made their first contribution in [bazel-contrib#1068](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1068) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.14.0...v2.15.3> ### [`v2.15.2`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.15.2) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.15.1...v2.15.2) Broken release; do not use ### [`v2.15.1`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.15.1) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.15.0...v2.15.1) Broken release; do not use ### [`v2.15.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.15.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.14.0...v2.15.0) Broken release; do not use ### [`v2.14.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.14.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.13.0...v2.14.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 = "aspect_bazel_lib", version = "2.14.0") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "40ba9d0f62deac87195723f0f891a9803a7b720d7b89206981ca5570ef9df15b", strip_prefix = "bazel-lib-2.14.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.14.0/bazel-lib-v2.14.0.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - feat: add Support for Symlinks in tar Rule's Runfiles Handling by [@&#8203;ewianda](https://redirect.github.com/ewianda) in [bazel-contrib#1036](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1036) - chore(deps): update pre-commit hooks by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1035](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1035) - docs: explain that using pre-release exposes Go dependency by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1042](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1042) - fix: expose LC\_ALL variable in tar toolchain by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1053](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1053) - chore(deps): update dependency rules\_go to v0.53.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1049](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1049) - fix(deps): update module github.com/bazelbuild/rules\_go to v0.53.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1050](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1050) - feat: add s390x/linux support by [@&#8203;rickystewart](https://redirect.github.com/rickystewart) in [bazel-contrib#1047](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1047) - chore(deps): update dependency bazel to v8.1.1 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1034](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1034) - chore(deps): update pre-commit hook crate-ci/typos to v1.30.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1051](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1051) - fix(deps): update module golang.org/x/sys to v0.30.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1043](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1043) - chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.4.1 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1045](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1045) - feat: Add option to pass diff\_args in write\_source\_files macro by [@&#8203;r0bobo](https://redirect.github.com/r0bobo) in [bazel-contrib#1041](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1041) #### New Contributors - [@&#8203;ewianda](https://redirect.github.com/ewianda) made their first contribution in [bazel-contrib#1036](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1036) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.13.0...v2.14.0> ### [`v2.13.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.13.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.12.0...v2.13.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 = "aspect_bazel_lib", version = "2.13.0") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "57a777c5d4d0b79ad675995ee20fc1d6d2514a1ef3000d98f5c70cf0c09458a3", strip_prefix = "bazel-lib-2.13.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.13.0/bazel-lib-v2.13.0.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - fix(tar): be more clear that we only support create mode by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1038](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1038) - feat: Add diff\_test\_failure\_message attribute to write\_source\_file\* by [@&#8203;jameskuszmaul-brt](https://redirect.github.com/jameskuszmaul-brt) in [bazel-contrib#1030](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1030) - chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.1.1 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1039](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1039) - feat: Add option to pass args to `diff` command in `diff_test` on Linux/MacOS by [@&#8203;r0bobo](https://redirect.github.com/r0bobo) in [bazel-contrib#1032](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1032) #### New Contributors - [@&#8203;jameskuszmaul-brt](https://redirect.github.com/jameskuszmaul-brt) made their first contribution in [bazel-contrib#1030](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1030) - [@&#8203;r0bobo](https://redirect.github.com/r0bobo) made their first contribution in [bazel-contrib#1032](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1032) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.12.0...v2.13.0> ### [`v2.12.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.12.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.11.0...v2.12.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 = "aspect_bazel_lib", version = "2.12.0") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "73bbffa96b4470692e74800c1c8b09d2ed2a9015fe78246efab8f7614c933250", strip_prefix = "bazel-lib-2.12.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.12.0/bazel-lib-v2.12.0.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - chore: update bcr maintainer info by [@&#8203;kormide](https://redirect.github.com/kormide) in [bazel-contrib#1029](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1029) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.11.0...v2.12.0> ### [`v2.11.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.11.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.10.0...v2.11.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 = "aspect_bazel_lib", version = "2.11.0") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "c96db69dd2714a37f3298338a1a42b27e3a2696c3b36dd4441b9bf7a1a12bee0", strip_prefix = "bazel-lib-2.11.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.11.0/bazel-lib-v2.11.0.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - chore(tar): update to latest bsdtar-prebuilt by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#1009](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1009) - feat(run\_binary): add resource\_set attribute by [@&#8203;jbedard](https://redirect.github.com/jbedard) in [bazel-contrib#1024](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1024) - fix: Rename targets to work with symbolic macros by [@&#8203;dzbarsky](https://redirect.github.com/dzbarsky) in [bazel-contrib#1020](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1020) - chore(deps): update dependency rules\_go to v0.51.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1012](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1012) - chore(deps): update dependency io\_bazel\_rules\_go to v0.52.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1011](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1011) - fix(deps): update module github.com/bazelbuild/rules\_go to v0.52.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1013](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1013) - chore(deps): update dependency rules\_go to v0.52.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1026](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1026) - chore: Move `--nolegacy_external_runfiles` to version specific rc files by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1017](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1017) - fix(deps): update module golang.org/x/sys to v0.29.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1023](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1023) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.10.0...v2.11.0> ### [`v2.10.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.10.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.9.4...v2.10.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 = "aspect_bazel_lib", version = "2.10.0") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "7b39d9f38b82260a8151b18dd4a6219d2d7fc4a0ac313d4f5a630ae6907d205d", strip_prefix = "bazel-lib-2.10.0", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.10.0/bazel-lib-v2.10.0.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - fix(tar): handle directories with spaces in name by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#984](https://redirect.github.com/bazel-contrib/bazel-lib/pull/984) - feat: bats\_test: add junit report to test results by [@&#8203;pjjw](https://redirect.github.com/pjjw) in [bazel-contrib#982](https://redirect.github.com/bazel-contrib/bazel-lib/pull/982) - docs: Update jq docs to show correct escaping by [@&#8203;ChrisChinchilla](https://redirect.github.com/ChrisChinchilla) in [bazel-contrib#983](https://redirect.github.com/bazel-contrib/bazel-lib/pull/983) - refactor: Fix no-else-after-return by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#988](https://redirect.github.com/bazel-contrib/bazel-lib/pull/988) - fix: honor umask in write\_source\_file by [@&#8203;sitaktif](https://redirect.github.com/sitaktif) in [bazel-contrib#986](https://redirect.github.com/bazel-contrib/bazel-lib/pull/986) - fix: Disable the non-deterministic time header when using gzip compression by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#989](https://redirect.github.com/bazel-contrib/bazel-lib/pull/989) - fix(deps): update module golang.org/x/sys to v0.28.0 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#981](https://redirect.github.com/bazel-contrib/bazel-lib/pull/981) - chore(deps): update dependency bazel to v7.4.1 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#971](https://redirect.github.com/bazel-contrib/bazel-lib/pull/971) - fix(bats\_test): use env var rather than symbolic link by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#991](https://redirect.github.com/bazel-contrib/bazel-lib/pull/991) - chore(deps): Enable renovate for pre-commit by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#994](https://redirect.github.com/bazel-contrib/bazel-lib/pull/994) - chore: start testing on Bazel 8 by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#972](https://redirect.github.com/bazel-contrib/bazel-lib/pull/972) - chore(deps): update pre-commit hook keith/pre-commit-buildifier to v7 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1000](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1000) - chore(deps): update pre-commit hook pre-commit/pre-commit-hooks to v5 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1001](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1001) - chore(deps): update pre-commit hook commitizen-tools/commitizen to v4 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#999](https://redirect.github.com/bazel-contrib/bazel-lib/pull/999) - chore(deps): update pre-commit hook crate-ci/typos to v1.28.2 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#997](https://redirect.github.com/bazel-contrib/bazel-lib/pull/997) - feat(bzlmod): mark toolchains extension as reproducible by [@&#8203;cerisier](https://redirect.github.com/cerisier) in [bazel-contrib#970](https://redirect.github.com/bazel-contrib/bazel-lib/pull/970) - feat: Forward RunEnvironmentInfo if present by [@&#8203;molar](https://redirect.github.com/molar) in [bazel-contrib#1008](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1008) - ci(pre-commit): Add pre-commit CI job by [@&#8203;hofbi](https://redirect.github.com/hofbi) in [bazel-contrib#1002](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1002) - chore(deps): update dependency bazel to v8 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#1004](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1004) - fix(tar): handle strip\_prefix of root directory in mtree\_mutate by [@&#8203;j-eid](https://redirect.github.com/j-eid) in [bazel-contrib#995](https://redirect.github.com/bazel-contrib/bazel-lib/pull/995) #### New Contributors - [@&#8203;ChrisChinchilla](https://redirect.github.com/ChrisChinchilla) made their first contribution in [bazel-contrib#983](https://redirect.github.com/bazel-contrib/bazel-lib/pull/983) - [@&#8203;sitaktif](https://redirect.github.com/sitaktif) made their first contribution in [bazel-contrib#986](https://redirect.github.com/bazel-contrib/bazel-lib/pull/986) - [@&#8203;cerisier](https://redirect.github.com/cerisier) made their first contribution in [bazel-contrib#970](https://redirect.github.com/bazel-contrib/bazel-lib/pull/970) - [@&#8203;molar](https://redirect.github.com/molar) made their first contribution in [bazel-contrib#1008](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1008) - [@&#8203;j-eid](https://redirect.github.com/j-eid) made their first contribution in [bazel-contrib#995](https://redirect.github.com/bazel-contrib/bazel-lib/pull/995) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.9.4...v2.10.0> ### [`v2.9.4`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.9.4) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.9.3...v2.9.4) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.9.4") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "349aabd3c2b96caeda6181eb0ae1f14f2a1d9f3cd3c8b05d57f709ceb12e9fb3", strip_prefix = "bazel-lib-2.9.4", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.4/bazel-lib-v2.9.4.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - fix: allow\_tags\_propagation defaults true in 7 by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#973](https://redirect.github.com/bazel-contrib/bazel-lib/pull/973) - docs: warn about gzip timestamps by [@&#8203;thesayyn](https://redirect.github.com/thesayyn) in [bazel-contrib#979](https://redirect.github.com/bazel-contrib/bazel-lib/pull/979) - fix: access FilesToRunProvider.repo\_mapping\_manifest indirectly by [@&#8203;plobsing](https://redirect.github.com/plobsing) in [bazel-contrib#976](https://redirect.github.com/bazel-contrib/bazel-lib/pull/976) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.9.3...v2.9.4> ### [`v2.9.3`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.9.3) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.9.2...v2.9.3) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.9.3") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "a272d79bb0ac6b6965aa199b1f84333413452e87f043b53eca7f347a23a478e8", strip_prefix = "bazel-lib-2.9.3", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.3/bazel-lib-v2.9.3.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - fix: go back to bsdtar-prebuilt 3.7.4 but with a release with a working windows binary by [@&#8203;gregmagolan](https://redirect.github.com/gregmagolan) in [bazel-contrib#969](https://redirect.github.com/bazel-contrib/bazel-lib/pull/969) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.9.2...v2.9.3> ### [`v2.9.2`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.9.2) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.9.1...v2.9.2) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.9.2") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "0e31778f1fd574d2c05d238bfc4c785fa4b7e50a5ef38b506e01cfd8ec2fccb3", strip_prefix = "bazel-lib-2.9.2", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.2/bazel-lib-v2.9.2.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - fix: update metadata.template.json for LF donation by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#950](https://redirect.github.com/bazel-contrib/bazel-lib/pull/950) - feat: support bzlmod runfiles lookups by [@&#8203;plobsing](https://redirect.github.com/plobsing) in [bazel-contrib#953](https://redirect.github.com/bazel-contrib/bazel-lib/pull/953) - chore(deps): update dependency bazel to v7.3.2 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#955](https://redirect.github.com/bazel-contrib/bazel-lib/pull/955) - feat(presets): java bazelrc options by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#947](https://redirect.github.com/bazel-contrib/bazel-lib/pull/947) - fix: unknown repo error with mtree\_mutate and Bzlmod by [@&#8203;mering](https://redirect.github.com/mering) in [bazel-contrib#948](https://redirect.github.com/bazel-contrib/bazel-lib/pull/948) - fix(bazelrc): move flag to bazel6.bazelrc by [@&#8203;ajwerner](https://redirect.github.com/ajwerner) in [bazel-contrib#959](https://redirect.github.com/bazel-contrib/bazel-lib/pull/959) - chore(docs): add tar to API listing by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#960](https://redirect.github.com/bazel-contrib/bazel-lib/pull/960) - chore: update old reference to aspect-build/bazel-lib by [@&#8203;gregmagolan](https://redirect.github.com/gregmagolan) in [bazel-contrib#962](https://redirect.github.com/bazel-contrib/bazel-lib/pull/962) - perf: report unused inputs for the tar rule by [@&#8203;plobsing](https://redirect.github.com/plobsing) in [bazel-contrib#951](https://redirect.github.com/bazel-contrib/bazel-lib/pull/951) - fix(deps): update module github.com/bmatcuk/doublestar/v4 to v4.7.1 by [@&#8203;renovate](https://redirect.github.com/renovate) in [bazel-contrib#961](https://redirect.github.com/bazel-contrib/bazel-lib/pull/961) - fix: Use transitioned target platform for `platform_transition_test` by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [bazel-contrib#965](https://redirect.github.com/bazel-contrib/bazel-lib/pull/965) - fix: Make build pass with --incompatible\_auto\_exec\_groups by [@&#8203;dzbarsky](https://redirect.github.com/dzbarsky) in [bazel-contrib#963](https://redirect.github.com/bazel-contrib/bazel-lib/pull/963) #### New Contributors - [@&#8203;mering](https://redirect.github.com/mering) made their first contribution in [bazel-contrib#948](https://redirect.github.com/bazel-contrib/bazel-lib/pull/948) - [@&#8203;ajwerner](https://redirect.github.com/ajwerner) made their first contribution in [bazel-contrib#959](https://redirect.github.com/bazel-contrib/bazel-lib/pull/959) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.9.1...v2.9.2> ### [`v2.9.1`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.9.1) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.9.0...v2.9.1) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "aspect_bazel_lib", version = "2.9.1") ``` > Read more about bzlmod: <https://blog.aspect.dev/bzlmod> #### Using WORKSPACE Paste this snippet into your `WORKSPACE` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "f93d386d8d0b0149031175e81df42a488be4267c3ca2249ba5321c23c60bc1f0", strip_prefix = "bazel-lib-2.9.1", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.9.1/bazel-lib-v2.9.1.tar.gz", ) load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains") ### Required bazel-lib dependencies aspect_bazel_lib_dependencies() ### Register bazel-lib toolchains aspect_bazel_lib_register_toolchains() ``` #### What's Changed - fix: declare host\_platform as non-dev dep by [@&#8203;jbedard](https://redirect.github.com/jbedard) in [bazel-contrib#945](https://redirect.github.com/bazel-contrib/bazel-lib/pull/945) - fix(presets): restore build runfile links for the 'coverage' command by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [bazel-contrib#943](https://redirect.github.com/bazel-contrib/bazel-lib/pull/943) **Full Changelog**: <https://github.com/bazel-contrib/bazel-lib/compare/v2.9.0...v2.9.1> ### [`v2.9.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.9.0) [Compare Source](https://redirect.github.com/aspect-build/bazel-lib/compare/v2.8.1.. </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 d6e0f1a commit 23022dd

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
@@ -23,9 +23,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
2323

2424
http_archive(
2525
name = "aspect_bazel_lib",
26-
sha256 = "c4f36285ceed51f75da44ffcf8fa393794d0dc2e273a2e03be50462e347740cd",
27-
strip_prefix = "bazel-lib-2.0.0",
28-
url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.0.0/bazel-lib-v2.0.0.tar.gz",
26+
sha256 = "53cadea9109e646a93ed4dc90c9bbcaa8073c7c3df745b92f6a5000daf7aa3da",
27+
strip_prefix = "bazel-lib-2.21.2",
28+
url = "https://github.com/aspect-build/bazel-lib/releases/download/v2.21.2/bazel-lib-v2.21.2.tar.gz",
2929
)
3030

3131
http_archive(

0 commit comments

Comments
 (0)