f0rmiga / gcc-toolchain

A fully-hermetic Bazel GCC toolchain for Linux.
Apache License 2.0
103 stars 24 forks source link

chore(deps): update dependency aspect_bazel_lib to v1.29.2 #128

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.28.0 -> v1.29.2

Release Notes

aspect-build/bazel-lib ### [`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 ### [`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 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

Configuration

📅 Schedule: Branch creation - "before 3am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.



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

renovate[bot] commented 1 year ago

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.