Skip to content

Commit

Permalink
chore(deps): update dependency aspect_bazel_lib to v1.28.0 (#1590)
Browse files Browse the repository at this point in the history
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [aspect_bazel_lib](https://togithub.com/aspect-build/bazel-lib) |
http_archive | minor | `v1.27.2` -> `v1.28.0` |

---

### ⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the
Dependency Dashboard for more information.

---

### Release Notes

<details>
<summary>aspect-build/bazel-lib</summary>

###
[`v1.28.0`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.28.0)

[Compare
Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.27.2...v1.28.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 = "1.28.0")
```

> Read more about bzlmod: <https://blog.aspect.dev/bzlmod>

#### Using WORKSPACE

Paste this snippet into your  file:

```starlark
load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "2518c757715d4f5fc7cc7e0a68742dd1155eaafc78fb9196b8a18e13a738cea2",
    strip_prefix = "bazel-lib-1.28.0",
    url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.28.0/bazel-lib-v1.28.0.tar.gz",
)

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

aspect_bazel_lib_dependencies()

```

Optional toolchains:

```starlark

### Register the following toolchain to use jq

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains")

register_jq_toolchains()

### Register the following toolchain to use yq

load("@&#8203;aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains")

register_yq_toolchains()
```

#### What's Changed

- docs: include from-HEAD install by
[@&#8203;alexeagle](https://togithub.com/alexeagle) in
[https://github.com/aspect-build/bazel-lib/pull/382](https://togithub.com/aspect-build/bazel-lib/pull/382)
- Presets cleanup by [@&#8203;kormide](https://togithub.com/kormide) in
[https://github.com/aspect-build/bazel-lib/pull/384](https://togithub.com/aspect-build/bazel-lib/pull/384)
- chore: set --heap_dump_on_oom preset to apply to all commands by
[@&#8203;kormide](https://togithub.com/kormide) in
[https://github.com/aspect-build/bazel-lib/pull/385](https://togithub.com/aspect-build/bazel-lib/pull/385)
- feat: add consistent_label_str utility to generate consistent label
strings for all Bazel versions by
[@&#8203;gregmagolan](https://togithub.com/gregmagolan) in
[https://github.com/aspect-build/bazel-lib/pull/386](https://togithub.com/aspect-build/bazel-lib/pull/386)
- chore: update to Aspect CLI 5.2.0-rc0 by
[@&#8203;gregmagolan](https://togithub.com/gregmagolan) in
[https://github.com/aspect-build/bazel-lib/pull/387](https://togithub.com/aspect-build/bazel-lib/pull/387)

**Full Changelog**:
bazel-contrib/bazel-lib@v1.27.2...v1.28.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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/aspect-build/silo).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTQuNyIsInVwZGF0ZWRJblZlciI6IjM0LjE1NC43In0=-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Greg Magolan <gmagolan@gmail.com>
  • Loading branch information
renovate[bot] and gregmagolan authored Mar 5, 2023
1 parent 2109b54 commit eea6117
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ def talkie_dependencies():
maybe(
http_archive,
name = "aspect_bazel_lib",
sha256 = "b4cd1114874ab15f794134eefbc254eb89d3e1de640bf4a11f2f402e886ad29e",
strip_prefix = "bazel-lib-1.27.2",
url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.27.2/bazel-lib-v1.27.2.tar.gz",
sha256 = "2518c757715d4f5fc7cc7e0a68742dd1155eaafc78fb9196b8a18e13a738cea2",
strip_prefix = "bazel-lib-1.28.0",
url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.28.0/bazel-lib-v1.28.0.tar.gz",
)
maybe(
http_archive,
Expand Down

0 comments on commit eea6117

Please sign in to comment.