Update dependency rules_img to v0.3.19 #17

Merged
prskr merged 1 commit from renovate/rules_img-0.x into main 2026-08-05 18:17:12 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
rules_img bazel_dep patch 0.3.180.3.19

Release Notes

bazel-contrib/rules_img (rules_img)

v0.3.19

Using Bzlmod

Add the following to your MODULE.bazel file:

bazel_dep(name = "rules_img", version = "0.3.19")

For further instructions, see the README.

Using WORKSPACE

Add the following to your WORKSPACE.bazel file:

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

http_archive(
    name = "rules_img",
    sha256 = "0f379d63a8856368656fbd363b6f0077114ea0f23ebce3b4afe40fd6514919c1",
    urls = ["https://github.com/bazel-contrib/rules_img/releases/download/v0.3.19/rules_img-v0.3.19.tar.gz"],
)

# Load dependencies
load("@​rules_img//img:dependencies.bzl", "rules_img_dependencies")
rules_img_dependencies()

# Initialize Bazel Features
load("@​bazel_features//:deps.bzl", "bazel_features_deps")

# Register prebuilt toolchains
load("@​rules_img//img:repositories.bzl", "img_register_prebuilt_toolchains")
img_register_prebuilt_toolchains()
register_toolchains("@​img_toolchain//:all")

# Register hermetic launcher toolchains
register_toolchains("@​hermetic_launcher//launcher/private/prebuilt:all")

# Example: Pull a base image
load("@​rules_img//img:pull.bzl", "pull")
pull(
    name = "alpine",
    digest = "sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1",
    registry = "index.docker.io",
    repository = "library/alpine",
    tag = "3.22",
)

For more examples, see the README.

What's Changed

  • fix(release): attest the signer plugin release archive by @​malt3 in #​660
  • fix(release): release signer plugins via the shared release workflow by @​malt3 in #​661
  • report OpenTelemetry metrics from oci-distribution-gateway by @​malt3 in #​662
  • fix(load): stop mangling image names that carry a registry port by @​malt3 in #​663
  • fix(bcr): fix signer plugin BCR presubmit.yml by @​malt3 in #​664
  • feat(push): configure push at build time per image by @​malt3 in #​665
  • gateway: add a forwarding mode so credentials live in one deployment by @​malt3 in #​666
  • feat(gateway): memoize blob existence checks in serving mode by @​malt3 in #​667
  • feat(deploy): add crane-style progress logs for non-interactive deploys by @​malt3 in #​668
  • docs: document IMG_DISK_CACHE env var by @​malt3 in #​669
  • fix(cosign): strip build-from-source deps from released MODULE.bazel by @​malt3 in #​670
  • feat(registry): add --insecure for plain-HTTP registries by @​malt3 in #​671
  • feat(push): make --jobs the cap on destination registry connections by @​malt3 in #​672
  • update Go rules and deps by @​malt3 in #​673
  • fix(signer): release the signer plugins as prebuilt-only modules by @​malt3 in #​674
  • feat(gateway): keep the blob existence cache current from reads, pushes and deletes by @​malt3 in #​675
  • feat(base): add rules for building bespoke base images by @​malt3 in #​676
  • feat(services): add service image module by @​malt3 in #​678
  • perf: use relative symlinks for directory layouts on Bazel >= 7.1 by @​malt3 in #​679
  • feat(gateway): replicate the blob existence cache between instances by @​malt3 in #​680
  • ci: add linux-only job to build modules/rules_img_services by @​malt3 in #​681
  • prepare 0.3.19 by @​malt3 in #​682

Full Changelog: https://github.com/bazel-contrib/rules_img/compare/v0.3.18...v0.3.19


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_img](https://github.com/bazel-contrib/rules_img) | bazel_dep | patch | `0.3.18` → `0.3.19` | --- ### Release Notes <details> <summary>bazel-contrib/rules_img (rules_img)</summary> ### [`v0.3.19`](https://github.com/bazel-contrib/rules_img/releases/tag/v0.3.19) #### Using Bzlmod Add the following to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_img", version = "0.3.19") ``` For further instructions, see the [README](https://github.com/bazel-contrib/rules_img#readme). #### Using WORKSPACE Add the following to your `WORKSPACE.bazel` file: ```starlark load("@&#8203;bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_img", sha256 = "0f379d63a8856368656fbd363b6f0077114ea0f23ebce3b4afe40fd6514919c1", urls = ["https://github.com/bazel-contrib/rules_img/releases/download/v0.3.19/rules_img-v0.3.19.tar.gz"], ) # Load dependencies load("@&#8203;rules_img//img:dependencies.bzl", "rules_img_dependencies") rules_img_dependencies() # Initialize Bazel Features load("@&#8203;bazel_features//:deps.bzl", "bazel_features_deps") # Register prebuilt toolchains load("@&#8203;rules_img//img:repositories.bzl", "img_register_prebuilt_toolchains") img_register_prebuilt_toolchains() register_toolchains("@&#8203;img_toolchain//:all") # Register hermetic launcher toolchains register_toolchains("@&#8203;hermetic_launcher//launcher/private/prebuilt:all") # Example: Pull a base image load("@&#8203;rules_img//img:pull.bzl", "pull") pull( name = "alpine", digest = "sha256:4bcff63911fcb4448bd4fdacec207030997caf25e9bea4045fa6c8c44de311d1", registry = "index.docker.io", repository = "library/alpine", tag = "3.22", ) ``` For more examples, see the [README](https://github.com/bazel-contrib/rules_img#readme). <!-- Release notes generated using configuration in .github/release.yml at v0.3.19 --> #### What's Changed - fix(release): attest the signer plugin release archive by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;660](https://github.com/bazel-contrib/rules_img/pull/660) - fix(release): release signer plugins via the shared release workflow by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;661](https://github.com/bazel-contrib/rules_img/pull/661) - report OpenTelemetry metrics from oci-distribution-gateway by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;662](https://github.com/bazel-contrib/rules_img/pull/662) - fix(load): stop mangling image names that carry a registry port by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;663](https://github.com/bazel-contrib/rules_img/pull/663) - fix(bcr): fix signer plugin BCR presubmit.yml by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;664](https://github.com/bazel-contrib/rules_img/pull/664) - feat(push): configure push at build time per image by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;665](https://github.com/bazel-contrib/rules_img/pull/665) - gateway: add a forwarding mode so credentials live in one deployment by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;666](https://github.com/bazel-contrib/rules_img/pull/666) - feat(gateway): memoize blob existence checks in serving mode by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;667](https://github.com/bazel-contrib/rules_img/pull/667) - feat(deploy): add crane-style progress logs for non-interactive deploys by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;668](https://github.com/bazel-contrib/rules_img/pull/668) - docs: document IMG\_DISK\_CACHE env var by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;669](https://github.com/bazel-contrib/rules_img/pull/669) - fix(cosign): strip build-from-source deps from released MODULE.bazel by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;670](https://github.com/bazel-contrib/rules_img/pull/670) - feat(registry): add --insecure for plain-HTTP registries by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;671](https://github.com/bazel-contrib/rules_img/pull/671) - feat(push): make --jobs the cap on destination registry connections by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;672](https://github.com/bazel-contrib/rules_img/pull/672) - update Go rules and deps by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;673](https://github.com/bazel-contrib/rules_img/pull/673) - fix(signer): release the signer plugins as prebuilt-only modules by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;674](https://github.com/bazel-contrib/rules_img/pull/674) - feat(gateway): keep the blob existence cache current from reads, pushes and deletes by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;675](https://github.com/bazel-contrib/rules_img/pull/675) - feat(base): add rules for building bespoke base images by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;676](https://github.com/bazel-contrib/rules_img/pull/676) - feat(services): add service image module by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;678](https://github.com/bazel-contrib/rules_img/pull/678) - perf: use relative symlinks for directory layouts on Bazel >= 7.1 by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;679](https://github.com/bazel-contrib/rules_img/pull/679) - feat(gateway): replicate the blob existence cache between instances by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;680](https://github.com/bazel-contrib/rules_img/pull/680) - ci: add linux-only job to build modules/rules\_img\_services by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;681](https://github.com/bazel-contrib/rules_img/pull/681) - prepare 0.3.19 by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;682](https://github.com/bazel-contrib/rules_img/pull/682) **Full Changelog**: <https://github.com/bazel-contrib/rules_img/compare/v0.3.18...v0.3.19> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMS4wIiwidXBkYXRlZEluVmVyIjoiNDMuMjEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
prskr force-pushed renovate/rules_img-0.x from 44f140ae56 to 5c63726945
Some checks failed
boredaem CI / build-and-lint (pull_request) Has been cancelled
2026-08-05 03:35:12 +00:00
Compare
prskr force-pushed renovate/rules_img-0.x from 5c63726945
Some checks failed
boredaem CI / build-and-lint (pull_request) Has been cancelled
to 818cf0051e
All checks were successful
boredaem CI / build-and-lint (pull_request) Successful in 32s
2026-08-05 18:13:30 +00:00
Compare
prskr merged commit 8b45283d57 into main 2026-08-05 18:17:12 +00:00
prskr deleted branch renovate/rules_img-0.x 2026-08-05 18:17:13 +00:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
prskr/tools!17
No description provided.