Skip to content

Commit 03a4189

Browse files
chore(deps): update dependency rules_shell to v0.6.1 (#1191)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_shell](https://redirect.github.com/bazelbuild/rules_shell) | http_archive | minor | `v0.4.1` -> `v0.6.1` | --- ### Release Notes <details> <summary>bazelbuild/rules_shell (rules_shell)</summary> ### [`v0.6.1`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.6.1) [Compare Source](https://redirect.github.com/bazelbuild/rules_shell/compare/v0.6.0...v0.6.1) #### Using Bzlmod with Bazel 6 or greater 1. (Bazel 6 only) Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_shell", version = "0.6.1") ``` #### Using WORKSPACE Paste this snippet into your `WORKSPACE.bazel` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_shell", sha256 = "e6b87c89bd0b27039e3af2c5da01147452f240f75d505f5b6880874f31036307", strip_prefix = "rules_shell-0.6.1", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.6.1/rules_shell-v0.6.1.tar.gz", ) load("@&#8203;rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains") rules_shell_dependencies() rules_shell_toolchains() ``` #### What's Changed - Fix docs for `sh_test` and `sh_binary` by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;40](https://redirect.github.com/bazelbuild/rules_shell/pull/40) **Full Changelog**: <bazelbuild/rules_shell@v0.6.0...v0.6.1> ### [`v0.6.0`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.6.0) [Compare Source](https://redirect.github.com/bazelbuild/rules_shell/compare/v0.5.1...v0.6.0) #### Using Bzlmod with Bazel 6 or greater 1. (Bazel 6 only) Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_shell", version = "0.6.0") ``` #### Using WORKSPACE Paste this snippet into your `WORKSPACE.bazel` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_shell", sha256 = "fce2a7a974aa70e9367068122e19c39a6a27a5aca30698bcf9030beb529612b6", strip_prefix = "rules_shell-0.6.0", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.6.0/rules_shell-v0.6.0.tar.gz", ) load("@&#8203;rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains") rules_shell_dependencies() rules_shell_toolchains() ``` #### What's Changed - Update runfiles library label in setup instructions by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;35](https://redirect.github.com/bazelbuild/rules_shell/pull/35) - Use launcher wrapper to initialize runfiles by [@&#8203;mering](https://redirect.github.com/mering) in [#&#8203;38](https://redirect.github.com/bazelbuild/rules_shell/pull/38) #### New Contributors - [@&#8203;mering](https://redirect.github.com/mering) made their first contribution in [#&#8203;38](https://redirect.github.com/bazelbuild/rules_shell/pull/38) **Full Changelog**: <bazelbuild/rules_shell@v0.5.1...v0.6.0> ### [`v0.5.1`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.5.1) [Compare Source](https://redirect.github.com/bazelbuild/rules_shell/compare/v0.5.0...v0.5.1) #### Using Bzlmod with Bazel 6 or greater 1. (Bazel 6 only) Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_shell", version = "0.5.1") ``` #### Using WORKSPACE Paste this snippet into your `WORKSPACE.bazel` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_shell", sha256 = "99bfc7aaefd1ed69613bbd25e24bf7871d68aeafca3a6b79f5f85c0996a41355", strip_prefix = "rules_shell-0.5.1", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.5.1/rules_shell-v0.5.1.tar.gz", ) load("@&#8203;rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains") rules_shell_dependencies() rules_shell_toolchains() ``` #### What's Changed - Use rockylinux8 instead of centos7 in BCR presubmit by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;33](https://redirect.github.com/bazelbuild/rules_shell/pull/33) - fix: do not allow GREP\_XXX env vars from breaking `rlocation` by [@&#8203;cgrindel](https://redirect.github.com/cgrindel) in [#&#8203;36](https://redirect.github.com/bazelbuild/rules_shell/pull/36) #### New Contributors - [@&#8203;cgrindel](https://redirect.github.com/cgrindel) made their first contribution in [#&#8203;36](https://redirect.github.com/bazelbuild/rules_shell/pull/36) **Full Changelog**: <bazelbuild/rules_shell@v0.5.0...v0.5.1> ### [`v0.5.0`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.5.0) [Compare Source](https://redirect.github.com/bazelbuild/rules_shell/compare/v0.4.1...v0.5.0) #### Using Bzlmod with Bazel 6 or greater 1. (Bazel 6 only) Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_shell", version = "0.5.0") ``` #### Using WORKSPACE Paste this snippet into your `WORKSPACE.bazel` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_shell", sha256 = "b15cc2e698a3c553d773ff4af35eb4b3ce2983c319163707dddd9e70faaa062d", strip_prefix = "rules_shell-0.5.0", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.5.0/rules_shell-v0.5.0.tar.gz", ) load("@&#8203;rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains") rules_shell_dependencies() rules_shell_toolchains() ``` #### What's Changed - Fix shellcheck findings by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;30](https://redirect.github.com/bazelbuild/rules_shell/pull/30) - Fix inconsistencies in runfiles.bash by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;31](https://redirect.github.com/bazelbuild/rules_shell/pull/31) - Add support for `--incompatible_compact_repo_mapping_manifest` by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;32](https://redirect.github.com/bazelbuild/rules_shell/pull/32) **Full Changelog**: <bazelbuild/rules_shell@v0.4.1...v0.5.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on monday" (UTC), 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/bazel-lib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xMzEuOSIsInVwZGF0ZWRJblZlciI6IjQxLjEzMS45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 165451f commit 03a4189

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ def bazel_lib_dependencies():
3131
)
3232
http_archive(
3333
name = "rules_shell",
34-
sha256 = "bc61ef94facc78e20a645726f64756e5e285a045037c7a61f65af2941f4c25e1",
35-
strip_prefix = "rules_shell-0.4.1",
36-
url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.4.1/rules_shell-v0.4.1.tar.gz",
34+
sha256 = "e6b87c89bd0b27039e3af2c5da01147452f240f75d505f5b6880874f31036307",
35+
strip_prefix = "rules_shell-0.6.1",
36+
url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.6.1/rules_shell-v0.6.1.tar.gz",
3737
)
3838

3939
DEFAULT_ZSTD_REPOSITORY = "zstd"

0 commit comments

Comments
 (0)