Skip to content

Commit e59bf17

Browse files
chore: update dependency bazel_lib to v3.1.1 (#3893)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [bazel_lib](https://redirect.github.com/bazel-contrib/bazel-lib) | http_archive | patch | `v3.1.0` → `v3.1.1` | --- ### Release Notes <details> <summary>bazel-contrib/bazel-lib (bazel_lib)</summary> ### [`v3.1.1`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v3.1.1) [Compare Source](https://redirect.github.com/bazel-contrib/bazel-lib/compare/v3.1.0...v3.1.1) #### Using Bzlmod Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "bazel_lib", version = "3.1.1") ``` #### 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 = "06cbcd5b98af3f530d20b505a89fb6761f09950b780cdd7726df42ee84b49d04", strip_prefix = "bazel-lib-3.1.1", url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.1.1/bazel-lib-v3.1.1.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 - refactor: shorter patch for release by [@&#8203;alexeagle](https://redirect.github.com/alexeagle) in [#&#8203;1226](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1226) - fix: Using "current\_working\_dir" instead of "runfiles\_dir" at write\_source\_files by [@&#8203;tokup](https://redirect.github.com/tokup) in [#&#8203;1232](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1232) - fix: Windows batch file line endings to avoid cmd parsing bug by [@&#8203;rdesgroppes](https://redirect.github.com/rdesgroppes) in [#&#8203;1222](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1222) #### New Contributors - [@&#8203;tokup](https://redirect.github.com/tokup) made their first contribution in [#&#8203;1232](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1232) - [@&#8203;rdesgroppes](https://redirect.github.com/rdesgroppes) made their first contribution in [#&#8203;1222](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1222) **Full Changelog**: <bazel-contrib/bazel-lib@v3.1.0...v3.1.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 becomes conflicted, 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/rules_nodejs). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43NC41IiwidXBkYXRlZEluVmVyIjoiNDIuNzQuNSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent ca0cbb6 commit e59bf17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ def rules_nodejs_dev_dependencies():
3939

4040
http_archive(
4141
name = "bazel_lib",
42-
sha256 = "fd0fe4df9b6b7837d5fd765c04ffcea462530a08b3d98627fb6be62a693f4e12",
43-
strip_prefix = "bazel-lib-3.1.0",
44-
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.1.0/bazel-lib-v3.1.0.tar.gz",
42+
sha256 = "06cbcd5b98af3f530d20b505a89fb6761f09950b780cdd7726df42ee84b49d04",
43+
strip_prefix = "bazel-lib-3.1.1",
44+
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v3.1.1/bazel-lib-v3.1.1.tar.gz",
4545
)
4646

4747
http_archive(

0 commit comments

Comments
 (0)