Skip to content

Releases: bazel-contrib/rules_oci

v0.3.0

25 Feb 21:49
0da3922
Compare
Choose a tag to compare
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

New Contributors

Full Changelog: v0.2.1...v0.3.0

v0.2.1

27 Jan 18:49
b900a63
Compare
Choose a tag to compare
v0.2.1 Pre-release
Pre-release

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "contrib_rules_oci",
    sha256 = "85197657c25b5769664c6413988b415a14d35b6dab1754b00d8ae60019936777",
    strip_prefix = "rules_oci-0.2.1",
    url = "https://github.com/bazel-contrib/rules_oci/archive/v0.2.1.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

Full Changelog: v0.2.0...v0.2.1

v0.2.0

04 Jan 21:17
202890e
Compare
Choose a tag to compare
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

New Contributors

Full Changelog: v0.1.0...v0.2.0

v0.1.0

01 Feb 18:39
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release

WORKSPACE snippet:

load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
    name = "aspect_rules_container",
    sha256 = "96057db9d73096aab7fb84e5d27bbd1feac8a39b0ca488da9c5727830dac7b8e",
    strip_prefix = "rules_container-0.1.0",
    url = "https://github.com/aspect-build/rules_container/archive/v0.1.0.tar.gz",
)

# Fetches the rules_container 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("@aspect_rules_container//container:repositories.bzl", "rules_container_dependencies")
rules_container_dependencies()

What's Changed

  • Mirror release info into versions file by @alexeagle in #1
  • chore: clean docs and fix release mirror script by @thesayyn in #2
  • wip: collect runfiles by @thesayyn in #3
  • build: fix ci build caching by @kormide in #5
  • fix: move cache flags out of ci bazelrc by @kormide in #6
  • build: move ci cache flags to bazelrc by @kormide in #7
  • chore: update to latest changes from template by @alexeagle in #8

New Contributors

Full Changelog: https://github.com/aspect-build/rules_container/commits/v0.1.0