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.30.2 - autoclosed #54

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.29.0 -> v1.30.2

Release Notes

aspect-build/bazel-lib ### [`v1.30.2`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.30.2) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.30.1...v1.30.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.30.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 = "97fa63d95cc9af006c4c7b2123ddd2a91fb8d273012f17648e6423bae2c69470", strip_prefix = "bazel-lib-1.30.2", url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.30.2/bazel-lib-v1.30.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 - feat: detect bzlmod automatically rather than requiring the user sets… by [@​alexeagle](https://togithub.com/alexeagle) in [https://github.com/aspect-build/bazel-lib/pull/397](https://togithub.com/aspect-build/bazel-lib/pull/397) **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.30.1...v1.30.2 ### [`v1.30.1`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.30.1) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.30.0...v1.30.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.30.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 = "965c64e7eed12b208fb49cd731d8c0dae2b3b3a64917437c899a0f5c5f292dcc", strip_prefix = "bazel-lib-1.30.1", url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.30.1/bazel-lib-v1.30.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 - fix: windows CI by [@​gregmagolan](https://togithub.com/gregmagolan) in [https://github.com/aspect-build/bazel-lib/pull/395](https://togithub.com/aspect-build/bazel-lib/pull/395) **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.29.2...v1.30.1 ### [`v1.30.0`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.30.0) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.29.2...v1.30.0) #### Using Bzlmod with Bazel 6: 1. Enable with `common --enable_bzlmod` in `.bazelrc`. 2. Add to your `MODULE.bazel` file: ```starlark ### Due to a publishing problem, workaround BCR for this release: bazel_dep(name = "aspect_bazel_lib", version = "1.29.2") archive_override( module_name = "aspect_bazel_lib", integrity = "sha256-5Qv2bboZb/HKzSFoZ+E2FBA0PScs4Menexyo8WlVu4o=", strip_prefix = "bazel-lib-1.30.0", urls = ["https://github.com/aspect-build/bazel-lib/releases/download/v1.30.0/bazel-lib-v1.30.0.tar.gz"], ) ``` > 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 = "e50bf66dba196ff1cacd216867e1361410343d272ce0c7a77b1ca8f16955bb8a", strip_prefix = "bazel-lib-1.30.0", url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.30.0/bazel-lib-v1.30.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: windows CI by [@​gregmagolan](https://togithub.com/gregmagolan) in [https://github.com/aspect-build/bazel-lib/pull/395](https://togithub.com/aspect-build/bazel-lib/pull/395) - feat: detect bzlmod automatically rather than requiring the user sets… by [@​alexeagle](https://togithub.com/alexeagle) in [https://github.com/aspect-build/bazel-lib/pull/397](https://togithub.com/aspect-build/bazel-lib/pull/397) **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.29.2...v1.30.0 ### [`v1.29.2`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.29.2) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.29.1...v1.29.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.29.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 = "ee95bbc80f9ca219b93a8cc49fa19a2d4aa8649ddc9024f46abcdd33935753ca", strip_prefix = "bazel-lib-1.29.2", url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.29.2/bazel-lib-v1.29.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() ``` **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.29.1...v1.29.2 ### [`v1.29.1`](https://togithub.com/aspect-build/bazel-lib/releases/tag/v1.29.1) [Compare Source](https://togithub.com/aspect-build/bazel-lib/compare/v1.29.0...v1.29.1) #### 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 = "087f347a1725b299915f8ab81887c61e1911ed482a56c5d8985a0e190f080326", strip_prefix = "bazel-lib-1.29.1", url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.29.1/bazel-lib-v1.29.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 - fix: disable stardoc under bzlmod and windows by default by [@​alexeagle](https://togithub.com/alexeagle) in [https://github.com/aspect-build/bazel-lib/pull/394](https://togithub.com/aspect-build/bazel-lib/pull/394) **Full Changelog**: https://github.com/aspect-build/bazel-lib/compare/v1.29.0...v1.29.1

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.