v0.3.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 = "d11b6e5646c4897fde03e7704ab97305691d871fb8d9e09443384122582e70ff",
strip_prefix = "rules_oci-0.3.0",
url = "https://github.com/bazel-contrib/rules_oci/releases/download/v0.3.0/rules_oci-v0.3.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
- fix: url to download bazel-skylib by @tetsuok in #64
- release: publish release artifact by @alexeagle in #62
- chore: rename example to examples by @alexeagle in #66
- oci_pull repo rule: fetch base layers with bazel downloader by @alexeagle in #67
- fix hard-coded mediaType by @alexeagle in #75
- Add labels to oci_image by @psalaberria002 in #76
- chore: add an example for custom registry by @thesayyn in #71
- feat: demonstrate a replacement for go_image by @alexeagle in #77
- chore: add structure_test for custom registry example by @alexeagle in #78
New Contributors
- @psalaberria002 made their first contribution in #76
Full Changelog: v0.2.1...v0.3.0