Commit e618b75
authored
chore(deps): update dependency aspect_bazel_lib to v2.10.0 (#482)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
|
[aspect_bazel_lib](https://redirect.github.com/bazel-contrib/bazel-lib)
| http_archive | minor | `v2.9.4` -> `v2.10.0` |
---
### Release Notes
<details>
<summary>bazel-contrib/bazel-lib (aspect_bazel_lib)</summary>
###
[`v2.10.0`](https://redirect.github.com/bazel-contrib/bazel-lib/releases/tag/v2.10.0)
[Compare
Source](https://redirect.github.com/bazel-contrib/bazel-lib/compare/v2.9.4...v2.10.0)
#### Using Bzlmod with Bazel 6:
1. Enable with `common --enable_bzlmod` in `.bazelrc`.
2. Add to your `MODULE.bazel` file:
```starlark
bazel_dep(name = "aspect_bazel_lib", version = "2.10.0")
```
> Read more about bzlmod: <https://blog.aspect.dev/bzlmod>
#### Using WORKSPACE
Paste this snippet into your `WORKSPACE` file:
```starlark
load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_bazel_lib",
sha256 = "7b39d9f38b82260a8151b18dd4a6219d2d7fc4a0ac313d4f5a630ae6907d205d",
strip_prefix = "bazel-lib-2.10.0",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.10.0/bazel-lib-v2.10.0.tar.gz",
)
load("@​aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
### Required bazel-lib dependencies
aspect_bazel_lib_dependencies()
### Register bazel-lib toolchains
aspect_bazel_lib_register_toolchains()
```
#### What's Changed
- fix(tar): handle directories with spaces in name by
[@​alexeagle](https://redirect.github.com/alexeagle) in
[https://github.com/bazel-contrib/bazel-lib/pull/984](https://redirect.github.com/bazel-contrib/bazel-lib/pull/984)
- feat: bats_test: add junit report to test results by
[@​pjjw](https://redirect.github.com/pjjw) in
[https://github.com/bazel-contrib/bazel-lib/pull/982](https://redirect.github.com/bazel-contrib/bazel-lib/pull/982)
- docs: Update jq docs to show correct escaping by
[@​ChrisChinchilla](https://redirect.github.com/ChrisChinchilla)
in
[https://github.com/bazel-contrib/bazel-lib/pull/983](https://redirect.github.com/bazel-contrib/bazel-lib/pull/983)
- refactor: Fix no-else-after-return by
[@​hofbi](https://redirect.github.com/hofbi) in
[https://github.com/bazel-contrib/bazel-lib/pull/988](https://redirect.github.com/bazel-contrib/bazel-lib/pull/988)
- fix: honor umask in write_source_file by
[@​sitaktif](https://redirect.github.com/sitaktif) in
[https://github.com/bazel-contrib/bazel-lib/pull/986](https://redirect.github.com/bazel-contrib/bazel-lib/pull/986)
- fix: Disable the non-deterministic time header when using gzip
compression by [@​hofbi](https://redirect.github.com/hofbi) in
[https://github.com/bazel-contrib/bazel-lib/pull/989](https://redirect.github.com/bazel-contrib/bazel-lib/pull/989)
- fix(deps): update module golang.org/x/sys to v0.28.0 by
[@​renovate](https://redirect.github.com/renovate) in
[https://github.com/bazel-contrib/bazel-lib/pull/981](https://redirect.github.com/bazel-contrib/bazel-lib/pull/981)
- chore(deps): update dependency bazel to v7.4.1 by
[@​renovate](https://redirect.github.com/renovate) in
[https://github.com/bazel-contrib/bazel-lib/pull/971](https://redirect.github.com/bazel-contrib/bazel-lib/pull/971)
- fix(bats_test): use env var rather than symbolic link by
[@​alexeagle](https://redirect.github.com/alexeagle) in
[https://github.com/bazel-contrib/bazel-lib/pull/991](https://redirect.github.com/bazel-contrib/bazel-lib/pull/991)
- chore(deps): Enable renovate for pre-commit by
[@​hofbi](https://redirect.github.com/hofbi) in
[https://github.com/bazel-contrib/bazel-lib/pull/994](https://redirect.github.com/bazel-contrib/bazel-lib/pull/994)
- chore: start testing on Bazel 8 by
[@​alexeagle](https://redirect.github.com/alexeagle) in
[https://github.com/bazel-contrib/bazel-lib/pull/972](https://redirect.github.com/bazel-contrib/bazel-lib/pull/972)
- chore(deps): update pre-commit hook keith/pre-commit-buildifier to v7
by [@​renovate](https://redirect.github.com/renovate) in
[https://github.com/bazel-contrib/bazel-lib/pull/1000](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1000)
- chore(deps): update pre-commit hook pre-commit/pre-commit-hooks to v5
by [@​renovate](https://redirect.github.com/renovate) in
[https://github.com/bazel-contrib/bazel-lib/pull/1001](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1001)
- chore(deps): update pre-commit hook commitizen-tools/commitizen to v4
by [@​renovate](https://redirect.github.com/renovate) in
[https://github.com/bazel-contrib/bazel-lib/pull/999](https://redirect.github.com/bazel-contrib/bazel-lib/pull/999)
- chore(deps): update pre-commit hook crate-ci/typos to v1.28.2 by
[@​renovate](https://redirect.github.com/renovate) in
[https://github.com/bazel-contrib/bazel-lib/pull/997](https://redirect.github.com/bazel-contrib/bazel-lib/pull/997)
- feat(bzlmod): mark toolchains extension as reproducible by
[@​cerisier](https://redirect.github.com/cerisier) in
[https://github.com/bazel-contrib/bazel-lib/pull/970](https://redirect.github.com/bazel-contrib/bazel-lib/pull/970)
- feat: Forward RunEnvironmentInfo if present by
[@​molar](https://redirect.github.com/molar) in
[https://github.com/bazel-contrib/bazel-lib/pull/1008](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1008)
- ci(pre-commit): Add pre-commit CI job by
[@​hofbi](https://redirect.github.com/hofbi) in
[https://github.com/bazel-contrib/bazel-lib/pull/1002](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1002)
- chore(deps): update dependency bazel to v8 by
[@​renovate](https://redirect.github.com/renovate) in
[https://github.com/bazel-contrib/bazel-lib/pull/1004](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1004)
- fix(tar): handle strip_prefix of root directory in mtree_mutate by
[@​j-eid](https://redirect.github.com/j-eid) in
[https://github.com/bazel-contrib/bazel-lib/pull/995](https://redirect.github.com/bazel-contrib/bazel-lib/pull/995)
#### New Contributors
- [@​ChrisChinchilla](https://redirect.github.com/ChrisChinchilla)
made their first contribution in
[https://github.com/bazel-contrib/bazel-lib/pull/983](https://redirect.github.com/bazel-contrib/bazel-lib/pull/983)
- [@​sitaktif](https://redirect.github.com/sitaktif) made their
first contribution in
[https://github.com/bazel-contrib/bazel-lib/pull/986](https://redirect.github.com/bazel-contrib/bazel-lib/pull/986)
- [@​cerisier](https://redirect.github.com/cerisier) made their
first contribution in
[https://github.com/bazel-contrib/bazel-lib/pull/970](https://redirect.github.com/bazel-contrib/bazel-lib/pull/970)
- [@​molar](https://redirect.github.com/molar) made their first
contribution in
[https://github.com/bazel-contrib/bazel-lib/pull/1008](https://redirect.github.com/bazel-contrib/bazel-lib/pull/1008)
- [@​j-eid](https://redirect.github.com/j-eid) made their first
contribution in
[https://github.com/bazel-contrib/bazel-lib/pull/995](https://redirect.github.com/bazel-contrib/bazel-lib/pull/995)
**Full Changelog**:
bazel-contrib/bazel-lib@v2.9.4...v2.10.0
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At
any time (no schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Never, 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/aspect-build/rules_py).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS41OC4xIiwidXBkYXRlZEluVmVyIjoiMzkuNTguMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwcyJdfQ==-->
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>1 parent 5e07460 commit e618b75
File tree
0 file changed
+0
-0
lines changed0 file changed
+0
-0
lines changed
0 commit comments