Skip to content

v1.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Jul 20:48
· 209 commits to main since this release
d43a22e

🙈
This release was tagged one commit sooner than intended, so we recommend you jump to v1.2.0 instead.

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")

http_archive(
    name = "rules_oci",
    sha256 = "63d12d31a59cfe7e93d42b2b86f3d737e73c3b6ce79a205192e0c4c5e8a3cf6d",
    strip_prefix = "rules_oci-1.1.0",
    url = "https://github.com/bazel-contrib/rules_oci/releases/download/v1.1.0/rules_oci-v1.1.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

Full Changelog: v1.0.0...v1.1.0