bazel-contrib / rules-template

A template for creating a new Bazel ruleset
Apache License 2.0
78 stars 20 forks source link

chore(deps): update dependency aspect_bazel_lib to v1.29.0 #51

Closed renovate[bot] closed 1 year ago

renovate[bot] commented 1 year ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
aspect_bazel_lib http_archive minor v1.26.2 -> v1.29.0

Release Notes

aspect-build/bazel-lib ### [`v1.29.0`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.29.0) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.28.0...v1.29.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.29.0") ``` > Read more about bzlmod: #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "0aed9a6e7612b2968b5aa1ac0f801f5ec956ec2c04810da2c1445cac34938596", strip_prefix = "bazel-lib-1.29.0", url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.29.0/bazel-lib-v1.29.0.tar.gz", ) load("@​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("@​aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains") register_jq_toolchains() ### Register the following toolchain to use yq load("@​aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains") register_yq_toolchains() ``` #### What's Changed - fix(bazelrc-presets): restore 60s progress rate on CI by [@​alexeagle](https://togithub.com/alexeagle) in [https://github.com/aspect-build/bazel-lib/pull/383](https://togithub.com/aspect-build/bazel-lib/pull/383) - chore: update to Aspect CLI 5.2.1 by [@​gregmagolan](https://togithub.com/gregmagolan) in [https://github.com/aspect-build/bazel-lib/pull/389](https://togithub.com/aspect-build/bazel-lib/pull/389) - Update link to example from angular by [@​garymm](https://togithub.com/garymm) in [https://github.com/aspect-build/bazel-lib/pull/388](https://togithub.com/aspect-build/bazel-lib/pull/388) - fix: remove merkle tree caching by [@​kormide](https://togithub.com/kormide) in [https://github.com/aspect-build/bazel-lib/pull/390](https://togithub.com/aspect-build/bazel-lib/pull/390) - chore: use coreutils hashsum by [@​thesayyn](https://togithub.com/thesayyn) in [https://github.com/aspect-build/bazel-lib/pull/333](https://togithub.com/aspect-build/bazel-lib/pull/333) - chore: remove unnecessary call to register_coreutils_toolchains() in e2e/coreutils by [@​gregmagolan](https://togithub.com/gregmagolan) in [https://github.com/aspect-build/bazel-lib/pull/393](https://togithub.com/aspect-build/bazel-lib/pull/393) #### New Contributors - [@​garymm](https://togithub.com/garymm) made their first contribution in [https://github.com/aspect-build/bazel-lib/pull/388](https://togithub.com/aspect-build/bazel-lib/pull/388) **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.28.0...v1.29.0 ### [`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: #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@​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("@​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("@​aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains") register_jq_toolchains() ### Register the following toolchain to use yq load("@​aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains") register_yq_toolchains() ``` #### What's Changed - docs: include from-HEAD install by [@​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 [@​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 [@​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 [@​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 [@​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**: https://github.com/aspect-build/bazel-lib/compare/v1.27.2...v1.28.0 ### [`v1.27.2`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.27.2) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.27.1...v1.27.2) #### 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.27.2") ``` > Read more about bzlmod: #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") 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", ) load("@​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("@​aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains") register_jq_toolchains() ### Register the following toolchain to use yq load("@​aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains") register_yq_toolchains() ``` #### What's Changed - fix: remove --experimental_guard_against_concurrent_changes from recommended correctness settings by [@​gregmagolan](https://togithub.com/gregmagolan) in [https://github.com/aspect-build/bazel-lib/pull/380](https://togithub.com/aspect-build/bazel-lib/pull/380) **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.27.1...v1.27.2 ### [`v1.27.1`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.27.1) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.27.0...v1.27.1) #### 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.27.1") ``` > Read more about bzlmod: #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "80897b673c2b506d21f861ae316689aa8abcc3e56947580a41bf9e68ff13af58", strip_prefix = "bazel-lib-1.27.1", url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.27.1/bazel-lib-v1.27.1.tar.gz", ) load("@​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("@​aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains") register_jq_toolchains() ### Register the following toolchain to use yq load("@​aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains") register_yq_toolchains() ``` #### What's Changed - chore: declare extension repos on single line by [@​kormide](https://togithub.com/kormide) in [https://github.com/aspect-build/bazel-lib/pull/377](https://togithub.com/aspect-build/bazel-lib/pull/377) - fix: add missing \*\*kwargs to write_aspect_bazelrc_presets by [@​gregmagolan](https://togithub.com/gregmagolan) in [https://github.com/aspect-build/bazel-lib/pull/379](https://togithub.com/aspect-build/bazel-lib/pull/379) - fix: update recommend CI flags from Workflows by [@​mattem](https://togithub.com/mattem) in [https://github.com/aspect-build/bazel-lib/pull/378](https://togithub.com/aspect-build/bazel-lib/pull/378) **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.27.0...v1.27.1 ### [`v1.27.0`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.27.0) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.26.2...v1.27.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.27.0") ``` > Read more about bzlmod: #### Using WORKSPACE Paste this snippet into your file: ```starlark load("@​bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "aspect_bazel_lib", sha256 = "f8fa3193009232ca989de21964ea860c8b3279ec73ba6eff456d8bf61fb3ab1f", strip_prefix = "bazel-lib-1.27.0", url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.27.0/bazel-lib-v1.27.0.tar.gz", ) load("@​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("@​aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains") register_jq_toolchains() ### Register the following toolchain to use yq load("@​aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains") register_yq_toolchains() ``` #### What's Changed - chore: depend on skylib release artifact by [@​kormide](https://togithub.com/kormide) in [https://github.com/aspect-build/bazel-lib/pull/376](https://togithub.com/aspect-build/bazel-lib/pull/376) - Changes needed for rules_js bzlmod support by [@​kormide](https://togithub.com/kormide) in [https://github.com/aspect-build/bazel-lib/pull/375](https://togithub.com/aspect-build/bazel-lib/pull/375) **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.26.2...v1.27.0

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.



This PR has been generated by Mend Renovate. View repository job log here.