Commit 48dde2e
authored
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("@​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("@​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 [@​fmeum](https://redirect.github.com/fmeum) in [#​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("@​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("@​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 [@​fmeum](https://redirect.github.com/fmeum) in [#​35](https://redirect.github.com/bazelbuild/rules_shell/pull/35)
- Use launcher wrapper to initialize runfiles by [@​mering](https://redirect.github.com/mering) in [#​38](https://redirect.github.com/bazelbuild/rules_shell/pull/38)
#### New Contributors
- [@​mering](https://redirect.github.com/mering) made their first contribution in [#​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("@​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("@​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 [@​fmeum](https://redirect.github.com/fmeum) in [#​33](https://redirect.github.com/bazelbuild/rules_shell/pull/33)
- fix: do not allow GREP\_XXX env vars from breaking `rlocation` by [@​cgrindel](https://redirect.github.com/cgrindel) in [#​36](https://redirect.github.com/bazelbuild/rules_shell/pull/36)
#### New Contributors
- [@​cgrindel](https://redirect.github.com/cgrindel) made their first contribution in [#​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("@​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("@​rules_shell//shell:repositories.bzl", "rules_shell_dependencies", "rules_shell_toolchains")
rules_shell_dependencies()
rules_shell_toolchains()
```
#### What's Changed
- Fix shellcheck findings by [@​fmeum](https://redirect.github.com/fmeum) in [#​30](https://redirect.github.com/bazelbuild/rules_shell/pull/30)
- Fix inconsistencies in runfiles.bash by [@​fmeum](https://redirect.github.com/fmeum) in [#​31](https://redirect.github.com/bazelbuild/rules_shell/pull/31)
- Add support for `--incompatible_compact_repo_mapping_manifest` by [@​fmeum](https://redirect.github.com/fmeum) in [#​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("@​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("@​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 [@​fmeum](https://redirect.github.com/fmeum) in [#​23](https://redirect.github.com/bazelbuild/rules_shell/pull/23)
- Configure coverage helpers for test exec group by [@​fmeum](https://redirect.github.com/fmeum) in [#​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("@​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("@​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 [@​meteorcloudy](https://redirect.github.com/meteorcloudy) in [#​18](https://redirect.github.com/bazelbuild/rules_shell/pull/18)
- sh\_configure: change local = True to configure = True by [@​meteorcloudy](https://redirect.github.com/meteorcloudy) in [#​19](https://redirect.github.com/bazelbuild/rules_shell/pull/19)
- Fix printing of toolchain type label in error message by [@​fmeum](https://redirect.github.com/fmeum) in [#​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
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
| |||
0 commit comments