Releases: bazel-contrib/jq.bzl
v0.6.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.6.0")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "d12aafaf39224d9d0642d62add75ad65b98aa20de82bead2b4ae9498452d5020",
strip_prefix = "jq.bzl-0.6.0",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.6.0/jq.bzl-v0.6.0.tar.gz",
)What's Changed
- chore(deps): upgrade to Bazel 9, drop testing of 6 (LTS ended) by @alexeagle in #68
- refactor: extract a jq_action by @alexeagle in #69
Full Changelog: v0.5.1...v0.6.0
v0.5.1
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.5.1")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "ec80ea87132eada066fe6efe838b68feebc578626ba8fef7d620a8fc5a1279be",
strip_prefix = "jq.bzl-0.5.1",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.5.1/jq.bzl-v0.5.1.tar.gz",
)What's Changed
- chore(deps): update bazel-contrib/.github action to v7.2.4 by @renovate[bot] in #59
- chore(deps): update bazel-contrib/publish-to-bcr action to v1.1.0 by @renovate[bot] in #56
- chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.10.1 by @renovate[bot] in #54
- chore(deps): update dependency bazel to v8.5.0 by @renovate[bot] in #55
- build: Add host alias repo by @mering in #57
- docs: change jq filter to greet with a dynamic name by @alexeagle in #63
New Contributors
Full Changelog: v0.5.0...v0.5.1
v0.5.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.5.0")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "d642668f79bc0c9ccdc0b8c89964f71e6bb3cd564013ca642f8f544732a97f8c",
strip_prefix = "jq.bzl-0.5.0",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.5.0/jq.bzl-v0.5.0.tar.gz",
)What's Changed
- test: Use JQ_BIN in sh_test by @hofbi in #37
- chore(deps): update dependency bazel to v8.4.2 by @renovate[bot] in #33
- chore(deps): update pre-commit hook crate-ci/typos to v1.38.1 by @renovate[bot] in #34
- docs: update README.md by @alexeagle in #44
- chore(deps): update pre-commit hook crate-ci/typos to v1.39.0 by @renovate[bot] in #43
- chore(deps): update pre-commit hook google/yamlfmt to v0.20.0 by @renovate[bot] in #39
- chore: adopt bazelrc presets by @alexeagle in #29
- chore: Bump BCR presubmit OS versions by @hofbi in #49
- chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.10.0 by @renovate[bot] in #45
- chore(deps): update actions/checkout action to v6 by @renovate[bot] in #48
- chore(deps): update pre-commit hook crate-ci/typos to v1.40.0 by @renovate[bot] in #46
- feat: add riscv64 support by @ffgan in #51
- chore: remove aspect_bazel_lib by @alexeagle in #52
New Contributors
Full Changelog: v0.4.0...v0.5.0
v0.4.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.4.0")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "21617eb71fb775a748ef5639131ab943ef39946bd2a4ce96ea60b03f985db0c5",
strip_prefix = "jq.bzl-0.4.0",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.4.0/jq.bzl-v0.4.0.tar.gz",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
######################
# jq.bzl setup #
######################
http_archive(
name = "aspect_bazel_lib",
sha256 = "53cadea9109e646a93ed4dc90c9bbcaa8073c7c3df745b92f6a5000daf7aa3da",
strip_prefix = "bazel-lib-2.21.2",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.2/bazel-lib-v2.21.2.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
# Required bazel-lib dependencies
aspect_bazel_lib_dependencies()
# Register bazel-lib toolchains
aspect_bazel_lib_register_toolchains()What's Changed
- feat: Mark extension as reproducible by @hofbi in #35
- fix: stray reference to bazel_lib jq_toolchains.bzl by @alexeagle in #36
New Contributors
Full Changelog: v0.3.0...v0.4.0
v0.3.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.3.0")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "ca9ff09247d8b5fc56978b165c95306956c0d3b9659d4926c8da9c2ba2f6a5e6",
strip_prefix = "jq.bzl-0.3.0",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.3.0/jq.bzl-v0.3.0.tar.gz",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
######################
# jq.bzl setup #
######################
http_archive(
name = "aspect_bazel_lib",
sha256 = "53cadea9109e646a93ed4dc90c9bbcaa8073c7c3df745b92f6a5000daf7aa3da",
strip_prefix = "bazel-lib-2.21.2",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.21.2/bazel-lib-v2.21.2.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
# Required bazel-lib dependencies
aspect_bazel_lib_dependencies()
# Register bazel-lib toolchains
aspect_bazel_lib_register_toolchains()What's Changed
- feat: jq_test macro by @alexeagle in #30
- feat: port toolchain definition from bazel-lib by @alexeagle in #31
- chore(deps): update bazel-contrib/publish-to-bcr action to v1 by @renovate[bot] in #27
- chore(deps): update amannn/action-semantic-pull-request action to v6 by @renovate[bot] in #22
- chore(deps): update dependency aspect_bazel_lib to v2.21.2 by @renovate[bot] in #19
- chore(deps): update pre-commit hook keith/pre-commit-buildifier to v8.2.1 by @renovate[bot] in #25
- chore(deps): update actions/checkout action to v5 by @renovate[bot] in #17
- chore(deps): update pre-commit hook crate-ci/typos to v1.37.0 by @renovate[bot] in #18
- chore(deps): update dependency bazel to v8.4.1 by @renovate[bot] in #26
- chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.9.1 by @renovate[bot] in #28
- chore(deps): update pre-commit hook pre-commit/pre-commit-hooks to v6 by @renovate[bot] in #16
Full Changelog: v0.2.4...v0.3.0
v0.2.4
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.2.4")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "510064590ace252cffb56cb25b1613d14bfec818251980039acdba682fcf99b9",
strip_prefix = "jq.bzl-0.2.4",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.2.4/jq.bzl-v0.2.4.tar.gz",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
######################
# jq.bzl setup #
######################
http_archive(
name = "aspect_bazel_lib",
sha256 = "3522895fa13b97e8b27e3b642045682aa4233ae1a6b278aad6a3b483501dc9f2",
strip_prefix = "bazel-lib-2.20.0",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.20.0/bazel-lib-v2.20.0.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
# Required bazel-lib dependencies
aspect_bazel_lib_dependencies()
# Register bazel-lib toolchains
aspect_bazel_lib_register_toolchains()Full Changelog: v0.2.3...v0.2.4
v0.2.3
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.2.3")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "df758bb7d5f5ed9297d401eef94e6ba9ec105714db3a94e022c3c0ec62c457a4",
strip_prefix = "jq.bzl-0.2.3",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.2.3/jq.bzl-v0.2.3.tar.gz",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
######################
# jq.bzl setup #
######################
http_archive(
name = "aspect_bazel_lib",
sha256 = "3522895fa13b97e8b27e3b642045682aa4233ae1a6b278aad6a3b483501dc9f2",
strip_prefix = "bazel-lib-2.20.0",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.20.0/bazel-lib-v2.20.0.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
# Required bazel-lib dependencies
aspect_bazel_lib_dependencies()
# Register bazel-lib toolchains
aspect_bazel_lib_register_toolchains()Full Changelog: v0.2.2...v0.2.3
v0.2.2
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.2.2")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "6dd9eeb5a53bbe5e116cd679c65e3caa9917af83d05f318539dbb46d417b0b28",
strip_prefix = "jq.bzl-0.2.2",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.2.2/jq.bzl-v0.2.2.tar.gz",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
######################
# jq.bzl setup #
######################
http_archive(
name = "aspect_bazel_lib",
sha256 = "3522895fa13b97e8b27e3b642045682aa4233ae1a6b278aad6a3b483501dc9f2",
strip_prefix = "bazel-lib-2.20.0",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.20.0/bazel-lib-v2.20.0.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
# Required bazel-lib dependencies
aspect_bazel_lib_dependencies()
# Register bazel-lib toolchains
aspect_bazel_lib_register_toolchains()What's Changed
- fix: propagation of tag name by @alexeagle in #24
Full Changelog: v0.2.1...v0.2.2
v0.2.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.2.0")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "710ee87a6269fc78387fb55e998afc2ab30246d37e8e89bcf0774f7a75ffc733",
strip_prefix = "jq.bzl-0.2.0",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.2.0/jq.bzl-v0.2.0.tar.gz",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
######################
# jq.bzl setup #
######################
http_archive(
name = "aspect_bazel_lib",
sha256 = "3522895fa13b97e8b27e3b642045682aa4233ae1a6b278aad6a3b483501dc9f2",
strip_prefix = "bazel-lib-2.20.0",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.20.0/bazel-lib-v2.20.0.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
# Required bazel-lib dependencies
aspect_bazel_lib_dependencies()
# Register bazel-lib toolchains
aspect_bazel_lib_register_toolchains()What's Changed
- chore: fix windows CI by @alexeagle in #2
- chore(deps): update bazel-contrib/.github action to v7.2.3 by @renovate[bot] in #8
- chore(deps): update dependency rules_java to v8.15.1 by @renovate[bot] in #6
- chore(deps): update bazel-contrib/publish-to-bcr action to v0.2.2 by @renovate[bot] in #3
- chore(deps): update dependency aspect_bazel_lib to v2.20.0 by @renovate[bot] in #4
- chore(deps): update pre-commit hook keith/pre-commit-buildifier to v8 by @renovate[bot] in #13
- chore: remove docgen by @alexeagle in #14
- chore(deps): update pre-commit hook commitizen-tools/commitizen to v4.8.3 by @renovate[bot] in #7
- chore(ci): setup aspect workflows by @alexeagle in #15
- chore(deps): update dependency bazel to v8 by @renovate[bot] in #11
- chore(deps): update pre-commit hook crate-ci/typos to v1.35.3 by @renovate[bot] in #9
- chore(deps): update pre-commit hook google/yamlfmt to v0.17.2 by @renovate[bot] in #10
- fix: don't use version 0.0.0 by @alexeagle in #20
New Contributors
Full Changelog: v0.1.0...v0.2.0
v0.1.0
Using Bzlmod with Bazel 6 or greater
- (Bazel 6 only) Enable with
common --enable_bzlmodin.bazelrc. - Add to your
MODULE.bazelfile:
bazel_dep(name = "jq.bzl", version = "0.1.0")Using WORKSPACE
Paste this snippet into your WORKSPACE.bazel file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "jq.bzl",
sha256 = "7b63435aa19cc6a0cfd1a82fbdf2c7a2f0a94db1a79ff7a4469ffa94286261ab",
strip_prefix = "jq.bzl-0.1.0",
url = "https://github.com/bazel-contrib/jq.bzl/releases/download/v0.1.0/jq.bzl-v0.1.0.tar.gz",
)
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
######################
# jq.bzl setup #
######################
http_archive(
name = "aspect_bazel_lib",
sha256 = "2be8a5df0b20b0ed37604b050da01dbf7ad45ad44768c0d478b64779b9f58412",
strip_prefix = "bazel-lib-2.15.3",
url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v2.15.3/bazel-lib-v2.15.3.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "aspect_bazel_lib_register_toolchains")
# Required bazel-lib dependencies
aspect_bazel_lib_dependencies()
# Register bazel-lib toolchains
aspect_bazel_lib_register_toolchains()What's Changed
- feat: port from bazel-lib by @alexeagle in #1
New Contributors
- @alexeagle made their first contribution in #1
Full Changelog: https://github.com/bazel-contrib/jq.bzl/commits/v0.1.0