v1.29.0
Using WORKSPACE
Paste this snippet into your file:
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:
# 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 in #383
- chore: update to Aspect CLI 5.2.1 by @gregmagolan in #389
- Update link to example from angular by @garymm in #388
- fix: remove merkle tree caching by @kormide in #390
- chore: use coreutils hashsum by @thesayyn in #333
- chore: remove unnecessary call to register_coreutils_toolchains() in e2e/coreutils by @gregmagolan in #393
New Contributors
Full Changelog: v1.28.0...v1.29.0