chore(deps): update dependency rules_img to v0.3.17 #60

Open
prskr wants to merge 1 commit from renovate/rules_img-0.x into main
Owner

This PR contains the following updates:

Package Type Update Change
rules_img bazel_dep patch 0.3.150.3.17

Release Notes

bazel-contrib/rules_img (rules_img)

v0.3.17

Using Bzlmod

Add the following to your MODULE.bazel file:

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

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 = "27aea4150761bd742e89c15856ee5e2d0696871488257482597edfa1321a17f9",
    urls = ["https://github.com/bazel-contrib/rules_img/releases/download/v0.3.17/rules_img-v0.3.17.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

Full Changelog: https://github.com/bazel-contrib/rules_img/compare/v0.3.16...v0.3.17

v0.3.16

Using Bzlmod

Add the following to your MODULE.bazel file:

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

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 = "340c9ff589cbda8cb3a2149f143a494268d6a769cf08b2adfc822e5c9ee720f1",
    urls = ["https://github.com/bazel-contrib/rules_img/releases/download/v0.3.16/rules_img-v0.3.16.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")

# 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

Full Changelog: https://github.com/bazel-contrib/rules_img/compare/v0.3.15...v0.3.16


Configuration

📅 Schedule: (UTC)

  • 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 Mend Renovate.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rules_img](https://github.com/bazel-contrib/rules_img) | bazel_dep | patch | `0.3.15` → `0.3.17` | --- ### Release Notes <details> <summary>bazel-contrib/rules_img (rules_img)</summary> ### [`v0.3.17`](https://github.com/bazel-contrib/rules_img/releases/tag/v0.3.17) #### Using Bzlmod Add the following to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_img", version = "0.3.17") ``` 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 = "27aea4150761bd742e89c15856ee5e2d0696871488257482597edfa1321a17f9", urls = ["https://github.com/bazel-contrib/rules_img/releases/download/v0.3.17/rules_img-v0.3.17.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.17 --> #### What's Changed - fix: write pull\_manifest\_blob manifest.json as a regular file ([#&#8203;625](https://github.com/bazel-contrib/rules_img/issues/625)) by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;626](https://github.com/bazel-contrib/rules_img/pull/626) - org.opencontainers.image.ref.name value backwards compatibility by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;627](https://github.com/bazel-contrib/rules_img/pull/627) - pull: add 'final' target without platform constraints by [@&#8203;rafikk](https://github.com/rafikk) in [#&#8203;628](https://github.com/bazel-contrib/rules_img/pull/628) - Add oci-distribution-gateway forwarding registry by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;631](https://github.com/bazel-contrib/rules_img/pull/631) - oras: set additional attribute defaults by [@&#8203;rafikk](https://github.com/rafikk) in [#&#8203;630](https://github.com/bazel-contrib/rules_img/pull/630) - pull: add 'load' target for final images by [@&#8203;rafikk](https://github.com/rafikk) in [#&#8203;629](https://github.com/bazel-contrib/rules_img/pull/629) - prepare 0.3.17 by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;632](https://github.com/bazel-contrib/rules_img/pull/632) **Full Changelog**: <https://github.com/bazel-contrib/rules_img/compare/v0.3.16...v0.3.17> ### [`v0.3.16`](https://github.com/bazel-contrib/rules_img/releases/tag/v0.3.16) #### Using Bzlmod Add the following to your `MODULE.bazel` file: ```starlark bazel_dep(name = "rules_img", version = "0.3.16") ``` 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 = "340c9ff589cbda8cb3a2149f143a494268d6a769cf08b2adfc822e5c9ee720f1", urls = ["https://github.com/bazel-contrib/rules_img/releases/download/v0.3.16/rules_img-v0.3.16.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") # 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.16 --> #### What's Changed - image\_manifest: add INHERIT\_FROM\_BASE sentinel for config inheritance by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;604](https://github.com/bazel-contrib/rules_img/pull/604) - deploy: search OCI layouts for compact streams before runfiles by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;607](https://github.com/bazel-contrib/rules_img/pull/607) - Track blob sources per layer by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;608](https://github.com/bazel-contrib/rules_img/pull/608) - mtree: add layer and image `mtree` output groups and `img mtree` merge tool by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;603](https://github.com/bazel-contrib/rules_img/pull/603) - Remove layer metadata "name" field; track history via --history flag by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;609](https://github.com/bazel-contrib/rules_img/pull/609) - simplify developer setup by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;610](https://github.com/bazel-contrib/rules_img/pull/610) - fix: add TTL eviction to registry caches by [@&#8203;Harshal96](https://github.com/Harshal96) in [#&#8203;611](https://github.com/bazel-contrib/rules_img/pull/611) - Identify rules\_img as the calling tool in REAPI requests by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;613](https://github.com/bazel-contrib/rules_img/pull/613) - feat: add image\_structure\_test rule by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;614](https://github.com/bazel-contrib/rules_img/pull/614) - fix: preserve bearer credential helper tokens by [@&#8203;Harshal96](https://github.com/Harshal96) in [#&#8203;612](https://github.com/bazel-contrib/rules_img/pull/612) - feat: prefetch layer contents ahead of slow consumers by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;618](https://github.com/bazel-contrib/rules_img/pull/618) - fix(layer): map empty runfiles through the same namespace transform a… by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;619](https://github.com/bazel-contrib/rules_img/pull/619) - fix: compute include\_layers per-operation in multi\_deploy by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;620](https://github.com/bazel-contrib/rules_img/pull/620) - feat(push): restore progress bar for image push by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;621](https://github.com/bazel-contrib/rules_img/pull/621) - fix: survive RST\_STREAM during slow CAS reads by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;622](https://github.com/bazel-contrib/rules_img/pull/622) - feat: pool gRPC connections for remote CAS reads by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;623](https://github.com/bazel-contrib/rules_img/pull/623) - prepare 0.3.16 by [@&#8203;malt3](https://github.com/malt3) in [#&#8203;624](https://github.com/bazel-contrib/rules_img/pull/624) **Full Changelog**: <https://github.com/bazel-contrib/rules_img/compare/v0.3.15...v0.3.16> </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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 [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMS4wIiwidXBkYXRlZEluVmVyIjoiNDMuMjY0LjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
Update dependency rules_img to v0.3.16
Some checks failed
renovate/artifacts Artifact file update failure
Go / release (pull_request) Has been cancelled
513d9d32ae
Author
Owner

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: MODULE.bazel
Command failed: bazel run //:go -- mod tidy
INFO: Repo rules_cc++cc_configure_extension+local_config_cc defined by rule cc_autoconf in @@rules_cc+//cc/private/toolchain:cc_configure.bzl
ERROR: /var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/lib_cc_configure.bzl:112:9: An error occurred during the fetch of repository 'rules_cc++cc_configure_extension+local_config_cc':
   Traceback (most recent call last):
	File "/var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/cc_configure.bzl", line 97, column 33, in cc_autoconf_impl
		configure_unix_toolchain(repository_ctx, cpu_value, overriden_tools)
	File "/var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/unix_cc_configure.bzl", line 359, column 23, in configure_unix_toolchain
		cc = _find_generic(repository_ctx, "gcc", "CC", overridden_tools)
	File "/var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/unix_cc_configure.bzl", line 322, column 32, in _find_generic
		auto_configure_fail(msg)
	File "/var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/lib_cc_configure.bzl", line 112, column 9, in auto_configure_fail
		fail("\n%sAuto-Configuration Error:%s %s\n" % (red, no_color, msg))
Error in fail: 
Auto-Configuration Error: Cannot find gcc or CC; either correct your path or set the CC environment variable
ERROR: no such package '@@rules_cc++cc_configure_extension+local_config_cc//': 
Auto-Configuration Error: Cannot find gcc or CC; either correct your path or set the CC environment variable
ERROR: /var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_go+/go/tools/go_bin_runner/BUILD.bazel:25:10: @@rules_go+//go/tools/go_bin_runner:go_bin_runner depends on @@rules_cc++cc_configure_extension+local_config_cc//:cc-compiler-k8 in repository @@rules_cc++cc_configure_extension+local_config_cc which failed to fetch. no such package '@@rules_cc++cc_configure_extension+local_config_cc//': 
Auto-Configuration Error: Cannot find gcc or CC; either correct your path or set the CC environment variable
ERROR: Analysis of target '//:go' failed; build aborted: Analysis failed
INFO: Elapsed time: 8.309s, Critical Path: 0.01s
INFO: 1 process: 1 internal.
ERROR: Build did NOT complete successfully
ERROR: Build failed. Not running target

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: MODULE.bazel ``` Command failed: bazel run //:go -- mod tidy INFO: Repo rules_cc++cc_configure_extension+local_config_cc defined by rule cc_autoconf in @@rules_cc+//cc/private/toolchain:cc_configure.bzl ERROR: /var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/lib_cc_configure.bzl:112:9: An error occurred during the fetch of repository 'rules_cc++cc_configure_extension+local_config_cc': Traceback (most recent call last): File "/var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/cc_configure.bzl", line 97, column 33, in cc_autoconf_impl configure_unix_toolchain(repository_ctx, cpu_value, overriden_tools) File "/var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/unix_cc_configure.bzl", line 359, column 23, in configure_unix_toolchain cc = _find_generic(repository_ctx, "gcc", "CC", overridden_tools) File "/var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/unix_cc_configure.bzl", line 322, column 32, in _find_generic auto_configure_fail(msg) File "/var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_cc+/cc/private/toolchain/lib_cc_configure.bzl", line 112, column 9, in auto_configure_fail fail("\n%sAuto-Configuration Error:%s %s\n" % (red, no_color, msg)) Error in fail: Auto-Configuration Error: Cannot find gcc or CC; either correct your path or set the CC environment variable ERROR: no such package '@@rules_cc++cc_configure_extension+local_config_cc//': Auto-Configuration Error: Cannot find gcc or CC; either correct your path or set the CC environment variable ERROR: /var/lib/forgejo/runner/.cache/bazel/_bazel_runner/34480a03541f25bd2c700ce481575ffc/external/rules_go+/go/tools/go_bin_runner/BUILD.bazel:25:10: @@rules_go+//go/tools/go_bin_runner:go_bin_runner depends on @@rules_cc++cc_configure_extension+local_config_cc//:cc-compiler-k8 in repository @@rules_cc++cc_configure_extension+local_config_cc which failed to fetch. no such package '@@rules_cc++cc_configure_extension+local_config_cc//': Auto-Configuration Error: Cannot find gcc or CC; either correct your path or set the CC environment variable ERROR: Analysis of target '//:go' failed; build aborted: Analysis failed INFO: Elapsed time: 8.309s, Critical Path: 0.01s INFO: 1 process: 1 internal. ERROR: Build did NOT complete successfully ERROR: Build failed. Not running target ```
prskr force-pushed renovate/rules_img-0.x from 513d9d32ae
Some checks failed
renovate/artifacts Artifact file update failure
Go / release (pull_request) Has been cancelled
to 429d3107c5
Some checks failed
renovate/artifacts Artifact file update failure
Go / release (pull_request) Has been cancelled
2026-07-18 03:36:03 +00:00
Compare
prskr changed title from Update dependency rules_img to v0.3.16 to Update dependency rules_img to v0.3.17 2026-07-18 03:36:03 +00:00
prskr changed title from Update dependency rules_img to v0.3.17 to chore(deps): update dependency rules_img to v0.3.17 2026-07-21 03:36:54 +00:00
prskr changed title from chore(deps): update dependency rules_img to v0.3.17 to Update dependency rules_img to v0.3.17 2026-07-22 03:37:38 +00:00
prskr changed title from Update dependency rules_img to v0.3.17 to chore(deps): update dependency rules_img to v0.3.17 2026-07-23 03:35:39 +00:00
Some checks failed
renovate/artifacts Artifact file update failure
Go / release (pull_request) Has been cancelled
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/rules_img-0.x:renovate/rules_img-0.x
git switch renovate/rules_img-0.x

Merge

Merge the changes and update on Forgejo.
git switch main
git merge --no-ff renovate/rules_img-0.x
git switch renovate/rules_img-0.x
git rebase main
git switch main
git merge --ff-only renovate/rules_img-0.x
git switch renovate/rules_img-0.x
git rebase main
git switch main
git merge --no-ff renovate/rules_img-0.x
git switch main
git merge --squash renovate/rules_img-0.x
git switch main
git merge --ff-only renovate/rules_img-0.x
git switch main
git merge renovate/rules_img-0.x
git push origin main
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/meilisearch-operator!60
No description provided.