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.28.0 #127

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

Release Notes

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