Skip to content

v0.3.5

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 12 Mar 21:04
· 283 commits to main since this release
bc00c6e

WORKSPACE snippet:

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

http_archive(
    name = "rules_oci",
    sha256 = "9162dc8752504e5c5204851528f6a13739f8c9f5e761d1b0fc4a1b2f4c96d07e",
    strip_prefix = "rules_oci-0.3.5",
    url = "https://github.com/bazel-contrib/rules_oci/releases/download/v0.3.5/rules_oci-v0.3.5.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,
    zot_version = LATEST_ZOT_VERSION,
)

# Optional, for oci_tarball rule
load("@rules_pkg//:deps.bzl", "rules_pkg_dependencies")

rules_pkg_dependencies()

What's Changed

  • feat: support the driver argument of container-test by @alexeagle in #94
  • chore: don't use symlink for e2e bazelrc by @alexeagle in #95

Full Changelog: v0.3.4...v0.3.5