v0.6.0
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_oci",
sha256 = "8aa36ae6c8067ff5a837ecb05aeb6396e5a469194b14bf98ff2ddf956ae817ec",
strip_prefix = "rules_oci-0.6.0",
url = "https://github.com/bazel-contrib/rules_oci/releases/download/v0.6.0/rules_oci-v0.6.0.tar.gz",
)
load("@rules_oci//oci:dependencies.bzl", "rules_oci_dependencies")
rules_oci_dependencies()
load("@rules_oci//oci:repositories.bzl", "LATEST_CRANE_VERSION", "LATEST_ZOT_VERSION", "oci_register_toolchains")
oci_register_toolchains(
name = "oci",
crane_version = LATEST_CRANE_VERSION,
# Uncommenting the zot toolchain will cause it to be used instead of crane for some tasks.
# Note that it does not support docker-format images.
# zot_version = LATEST_ZOT_VERSION,
)
What's Changed
- fix: downgrade rules_pkg to 0.7.0 by @thesayyn in #195
- ci: disable macos ci by @thesayyn in #194
- docs: be more clear that you load a tarball target by @alexeagle in #197
- fix: remove duplicate debian target by @thesayyn in #192
- ci: remove upterm action by @thesayyn in #201
- fix: pinning is broken by @thesayyn in #200
- chore: remove structure test by @alexeagle in #182
- docs: add build instruction for rust by @vucong2409 in #173
- fix: take variant into account by @thesayyn in #174
- chore: re-use release automation workflow by @alexeagle in #204
- chore: test on Bazel 6 and Bazel 5 by @alexeagle in #203
- fix: disallow os, arch and variant to be specified with base by @thesayyn in #172
- Fix bug with formatting of repotags in tarball manifest.json [re-do] by @AttilaTheFun in #205
- refactor: make pinning a warning by @thesayyn in #206
- fix: extract image digest raw from yq by @steeve in #208
- Revert "fix: extract image digest raw from yq" by @thesayyn in #210
- Revert "refactor: merge repository into repotags (#169)" by @alexeagle in #213
- test: add missing test case for oci_tarball#repotags by @thesayyn in #209
- fix: port number should be allowed in push by @thesayyn in #215
- refactor: drop rules_pkg dependency by @thesayyn in #207
- test: assert oci_* rules are reproducible by @thesayyn in #214
New Contributors
- @vucong2409 made their first contribution in #173
- @AttilaTheFun made their first contribution in #205
- @steeve made their first contribution in #208
Full Changelog: v0.5.0...v0.6.0