Skip to content

v0.12.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@alexeagle alexeagle released this 03 Jun 07:43
· 551 commits to main since this release
128f7c6

WORKSPACE snippet:

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

http_archive(
    name = "aspect_bazel_lib",
    sha256 = "91aa7356b22ecdb87dcf5f1cc8a6a147e23a1ef425221bab75e5f857cd6b2716",
    strip_prefix = "bazel-lib-0.12.1",
    url = "https://github.com/aspect-build/bazel-lib/archive/refs/tags/v0.12.1.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

  • fix: fix yq windows issues by bumping version by @kormide in #123
  • chore: nit on error message by @alexeagle in #125
  • fix: buildifier lint errors by @kormide in #126
  • fix: improve error message when an invalid label or a file that is not a directory is passed to directory_path by @gregmagolan in #127

Full Changelog: v0.12.0...v0.12.1