v0.2.0
Pre-release
Pre-release
WORKSPACE snippet:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "contrib_rules_oci",
sha256 = "4ba3022f6475df4dbd1b21142f7bcb9bfaf2689a74687536837e1827b6aaddbf",
strip_prefix = "rules_oci-0.2.0",
url = "https://github.com/bazel-contrib/rules_oci/archive/v0.2.0.tar.gz",
)
# Fetches the rules_oci dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@contrib_rules_oci//oci:repositories.bzl", "rules_oci_dependencies")
rules_oci_dependencies()
What's Changed
- chore: rename container -> oci by @alexeagle in #12
- refactor: convert oci_toolchain to crane_toolchain by @thesayyn in #25
- Fix paths to caches for Bazel in CI by @tetsuok in #27
- feat: add zot as the registry by @thesayyn in #26
- feat: implement oci_tarball by @thesayyn in #30
- feat: implement structure_test by @thesayyn in #31
- feat: implement oci_image by @thesayyn in #33
- feat: implement oci_image_index by @thesayyn in #34
- feat: implement oci_cosign by @thesayyn in #36
- feat: implement oci_push by @thesayyn in #38
New Contributors
Full Changelog: v0.1.0...v0.2.0