Skip to content

Releases: bazel-contrib/bazel-lib

v0.4.2

22 Dec 00:58
Compare
Choose a tag to compare
v0.4.2 Pre-release
Pre-release

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

Full Changelog: v0.4.1...v0.4.2

v0.4.1

18 Dec 00:57
87cecb5
Compare
Choose a tag to compare
v0.4.1 Pre-release
Pre-release

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

15 Dec 19:53
4c2620c
Compare
Choose a tag to compare
v0.4.0 Pre-release
Pre-release

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

11 Dec 19:42
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release

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

Full Changelog: v0.2.7...v0.3.0

v0.2.7

02 Dec 02:12
48b0a77
Compare
Choose a tag to compare
v0.2.7 Pre-release
Pre-release

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

17 Nov 05:50
Compare
Choose a tag to compare
v0.2.6 Pre-release
Pre-release

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

11 Nov 15:06
Compare
Choose a tag to compare
v0.2.5 Pre-release
Pre-release

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

10 Nov 18:41
Compare
Choose a tag to compare
v0.2.3 Pre-release
Pre-release
release

v0.2.2

10 Nov 17:14
Compare
Choose a tag to compare
v0.2.2 Pre-release
Pre-release
release

v0.2.1

10 Nov 14:45
Compare
Choose a tag to compare
v0.2.1 Pre-release
Pre-release
chore: run gazelle to add missing bzl_library