v1.0.0-rc1
github-actions
released this
12 May 22:23
·
222 commits
to main
since this release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_oci",
sha256 = "7824dcb6c9f9f87786d65592da006d9f1e2bea826d7560d96745e54cdecb5d47",
strip_prefix = "rules_oci-1.0.0-rc1",
url = "https://github.com/bazel-contrib/rules_oci/releases/download/v1.0.0-rc1/rules_oci-v1.0.0-rc1.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
- refactor: replace print statements with warning by @thesayyn in #226
- fix: single image with tag is handled incorrectly by @thesayyn in #231
- add latest cosign releases by @bobcallaway in #232
- chore: remove bzlmod workaround by @alexeagle in #227
- fix: implement per registry credential helpers by @tstromberg in #237
- test: add test for per registry credential helpers by @thesayyn in #242
- docs: add load site by @alexeagle in #243
New Contributors
- @bobcallaway made their first contribution in #232
- @tstromberg made their first contribution in #237
Full Changelog: v1.0.0-rc0...v1.0.0-rc1