v1.0.0-rc0
·
233 commits
to main
since this release
📰 This release is the first to offer a semver-stability guarantee, since we've graduated from a 0.x version.
There will be bug-fixes leading up to the final 1.0.0 release, but no breaking changes or new features.
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_oci",
sha256 = "08d73a9bec22642ee12c0a38c23596cbddaba7422eede74edba3bb1044d579be",
strip_prefix = "rules_oci-1.0.0-rc0",
url = "https://github.com/bazel-contrib/rules_oci/releases/download/v1.0.0-rc0/rules_oci-v1.0.0-rc0.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
- chore: remove registry flag now that container-structure-test is on BCR by @alexeagle in #223
- refactor: rename oci_push#repotags to remote_tags by @thesayyn in #222
- chore: rename repotags to repo_tags by @alexeagle in #224
Full Changelog: v0.6.2...v1.0.0-rc0