Skip to content

v0.11.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 29 Apr 00:00
· 663 commits to main since this release

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "14e84b21189d857539c083df223c8ae2eb58f56beb3da3ec746db1265f689c7a",
    strip_prefix = "bazel-lib-0.11.0",
    url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v0.11.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(version = "1.6")

# Register the following toolchain to use yq

load("@aspect_bazel_lib//lib:repositories.bzl", "register_yq_toolchains")

register_yq_toolchains(version = "4.24.5")

What's Changed

  • feat: support bzlmod usage of jq/yq by @alexeagle in #88
  • feat: add @aspect_bazel_lib_host repository and normalize function names in repo_utils by @gregmagolan in #90
  • feat: make it easier to resolve jq/yq toolchains from a repository rule by @kormide in #89

Full Changelog: v0.10.0...v0.11.0