-
-
Notifications
You must be signed in to change notification settings - Fork 112
Commit 03a4189
authored
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("@​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**:
<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("@​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**:
<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("@​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**:
<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("@​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**:
<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 03a4189Copy full SHA for 03a4189
File tree
Expand file treeCollapse file tree
1 file changed
+3
-3
lines changedOpen diff view settings
Filter options
- lib
Expand file treeCollapse file tree
1 file changed
+3
-3
lines changedOpen diff view settings
Collapse file
+3-3Lines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
35 | | - | |
36 | | - | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| |||
0 commit comments