Releases: bazel-contrib/bazel-lib
Releases · bazel-contrib/bazel-lib
v0.4.2
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_bazel_lib",
sha256 = "534c9c61b72c257c95302d544984fd8ee63953c233292c5b6952ca5b33cd225e",
strip_prefix = "bazel-lib-0.4.2",
url = "https://github.com/aspect-build/bazel-lib/archive/v0.4.2.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories", "aspect_bazel_lib_dependencies")
aspect_bazel_lib_dependencies()
# Optional: register the following toolchain to use jq
load("@aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains")
register_jq_toolchains(version = "1.6")
What's Changed
- fix: expose bare jq/jq.exe binary by @alexeagle in #20
- feat: load jq filter from file by @kormide in #21
- fix: add windows implementation of copy_to_directory by @gregmagolan in #22
- license under apache 2 by @alexeagle in #23
Full Changelog: v0.4.1...v0.4.2
v0.4.1
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_bazel_lib",
sha256 = "c3d259bf275a8666b38f9aa796eb8200310e7294d77aa690ef5ba516da50250a",
strip_prefix = "bazel-lib-0.4.1",
url = "https://github.com/aspect-build/bazel-lib/archive/v0.4.1.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories", "aspect_bazel_lib_dependencies")
aspect_bazel_lib_dependencies()
# Optional: register the following toolchain to use jq
load("@aspect_bazel_lib//lib:repositories.bzl", "register_jq_toolchains")
register_jq_toolchains(version = "1.6")
What's Changed
- docs: add jq usage examples by @kormide in #16
- feat: add include_external_repositories and exclude_prefixes attributes to copy_to_directory by @gregmagolan in #17
- fix: allow tags/visibility on jq rule by @alexeagle in #19
Full Changelog: v0.4.0...v0.4.1
v0.4.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_bazel_lib",
sha256 = "a28dbee79b1382a170d4b93ba676a9e31cea48f1985dbdd4ee500211d2a005e9",
strip_prefix = "bazel-lib-0.4.0",
url = "https://github.com/aspect-build/bazel-lib/archive/v0.4.0.tar.gz",
)
load("@aspect_bazel_lib", "aspect_bazel_lib_dependencies")
aspect_bazel_lib_dependencies()
# Optional: register the following toolchain to use jq
load("@aspect_bazel_lib", "register_jq_toolchains")
register_jq_toolchains(version = "1.6")
What's Changed
- fix: release archive needs a strip_prefix by @alexeagle in #14
- Add jq toolchain and rule by @kormide in #11
- docs: update workspace snippet with jq instructions by @kormide in #15
New Contributors
Full Changelog: v0.3.0...v0.4.0
v0.3.0
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "aspect_bazel_lib",
sha256 = "e834c368f36cb336b5b42cd1dd9cd4b6bafa0ad3ed7f92f54a47e5ab436e4f59",
strip_prefix = "bazel-lib-0.3.0",
url = "https://github.com/aspect-build/bazel-lib/archive/v0.3.0.tar.gz",
)
What's Changed
- refactor: simplify release by @alexeagle in #13
Full Changelog: v0.2.7...v0.3.0
v0.2.7
WORKSPACE snippet:
http_archive(
name = "aspect_bazel_lib",
sha256 = "5b80d60e00a7ea2d9d540c594e5ec41c946c163e272056c626026fcbb7918de2",
url = "https://github.com/aspect-build/bazel-lib/releases/download/v0.2.7/bazel_lib-0.2.7.tar.gz",
)
v0.2.6
WORKSPACE snippet:
http_archive(
name = "aspect_bazel_lib",
sha256 = "8c8cf0554376746e2451de85c4a7670cc8d7400c1f091574c1c1ed2a65021a4c",
url = "https://github.com/aspect-build/bazel-lib/releases/download/v0.2.6/bazel_lib-0.2.6.tar.gz",
)
v0.2.5
WORKSPACE snippet:
http_archive(
name = "aspect_bazel_lib",
sha256 = "b1bb3575ec16e7e11ee0fcf57802b82435144cc25bb97861b77e07894543cc8a",
url = "https://github.com/aspect-build/bazel-lib/releases/download/v0.2.5/bazel_lib-0.2.5.tar.gz",
)
v0.2.3
release
v0.2.2
release
v0.2.1
chore: run gazelle to add missing bzl_library