Skip to content

Commit

Permalink
chore(deps): update dependency rules_shell to v0.4.0 (#442)
Browse files Browse the repository at this point in the history
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.4.0` |

---

### Release Notes

<details>
<summary>bazelbuild/rules_shell (rules_shell)</summary>

###
[`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
[https://github.com/bazelbuild/rules_shell/pull/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
[https://github.com/bazelbuild/rules_shell/pull/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
[https://github.com/bazelbuild/rules_shell/pull/20](https://redirect.github.com/bazelbuild/rules_shell/pull/20)

**Full Changelog**:
bazelbuild/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 because a matching PR was automerged
previously.

♻ **Rebasing**: Whenever PR is behind base branch, 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_bazel_integration_test).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNDUuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE0NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Feb 4, 2025
1 parent 67fe18f commit 7f5fb06
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ module(
version = "0.0.0",
)

bazel_dep(name = "rules_shell", version = "0.3.0")
bazel_dep(name = "rules_shell", version = "0.4.0")
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bazel_dep(name = "rules_shell", version = "0.3.0")
bazel_dep(name = "rules_shell", version = "0.4.0")
2 changes: 1 addition & 1 deletion tests/e2e_tests/workspace/child_workspace/MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ module(
version = "0.0.0",
)

bazel_dep(name = "rules_shell", version = "0.3.0")
bazel_dep(name = "rules_shell", version = "0.4.0")
2 changes: 1 addition & 1 deletion tests/params_tests/workspace/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bazel_dep(name = "rules_shell", version = "0.3.0")
bazel_dep(name = "rules_shell", version = "0.4.0")

0 comments on commit 7f5fb06

Please sign in to comment.