Skip to content

Commit 48dde2e

Browse files
chore(deps): update dependency rules_shell to v0.6.1 (#25)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_shell](https://redirect.github.com/bazelbuild/rules_shell) | bazel_dep | minor | `0.3.0` → `0.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) #### 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**: <bazel-contrib/rules_shell@v0.6.0...v0.6.1> ### [`v0.6.0`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/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**: <bazel-contrib/rules_shell@v0.5.1...v0.6.0> ### [`v0.5.1`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/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**: <bazel-contrib/rules_shell@v0.5.0...v0.5.1> ### [`v0.5.0`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/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**: <bazel-contrib/rules_shell@v0.4.1...v0.5.0> ### [`v0.4.1`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.4.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.4.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 = "bc61ef94facc78e20a645726f64756e5e285a045037c7a61f65af2941f4c25e1", strip_prefix = "rules_shell-0.4.1", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.4.1/rules_shell-v0.4.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 - Test with Bazel 8 by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;23](https://redirect.github.com/bazelbuild/rules_shell/pull/23) - Configure coverage helpers for test exec group by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;26](https://redirect.github.com/bazelbuild/rules_shell/pull/26) **Full Changelog**: <bazel-contrib/rules_shell@v0.4.0...v0.4.1> ### [`v0.4.0`](https://redirect.github.com/bazelbuild/rules_shell/releases/tag/v0.4.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.4.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 = "3e114424a5c7e4fd43e0133cc6ecdfe54e45ae8affa14fadd839f29901424043", strip_prefix = "rules_shell-0.4.0", url = "https://github.com/bazelbuild/rules_shell/releases/download/v0.4.0/rules_shell-v0.4.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 - sh\_config: Add BAZEL\_SH by [@&#8203;meteorcloudy](https://redirect.github.com/meteorcloudy) in [#&#8203;18](https://redirect.github.com/bazelbuild/rules_shell/pull/18) - sh\_configure: change local = True to configure = True by [@&#8203;meteorcloudy](https://redirect.github.com/meteorcloudy) in [#&#8203;19](https://redirect.github.com/bazelbuild/rules_shell/pull/19) - Fix printing of toolchain type label in error message by [@&#8203;fmeum](https://redirect.github.com/fmeum) in [#&#8203;20](https://redirect.github.com/bazelbuild/rules_shell/pull/20) **Full Changelog**: <bazel-contrib/rules_shell@v0.3.0...v0.4.0> </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/formatjs/rules_formatjs). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42OS4xIiwidXBkYXRlZEluVmVyIjoiNDIuNjkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
1 parent fc7de2b commit 48dde2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/custom_version/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FORMATJS_CLI_VERSIONS dictionary. This is useful for:
1010
module(name = "custom_version_example")
1111

1212
bazel_dep(name = "rules_formatjs", version = "")
13-
bazel_dep(name = "rules_shell", version = "0.3.0")
13+
bazel_dep(name = "rules_shell", version = "0.6.1")
1414

1515
# Use local override since we're developing rules_formatjs
1616
local_path_override(

0 commit comments

Comments
 (0)