Update to rules_minidock_tools v0.0.77 and Bazel 9.2.0 compat fixes#32
Merged
Conversation
adam-singer
marked this pull request as ready for review
July 15, 2026 21:38
bboe
approved these changes
Jul 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrades this repo to build under Bazel 9.2.0 and pins the prebuilt
rules_minidock_toolsbinaries (merge-app,puller-app,pusher-app) to the latest release, v0.0.77.Changes
minidock/container_binary.bzlnow explicitly loadsjava_commonfrom@rules_java//java/common:java_common.bzlinstead of relying on the native global.minidock/container_data_tools/BUILDnow explicitly loadspy_binaryfrom@rules_python//python:defs.bzl.rules_javaandrules_pythonare declared as regular (non-dev)bazel_deps inMODULE.bazelsince the above loads are needed outside of tests.MODULE.bazel.lockregenerated for the dependency graph changes.multitool.lock.jsonbump:merge-app/puller-app/pusher-apppinned from v0.0.75 to v0.0.77 across all platforms (linux-x86_64, macos-aarch64, macos-x86_64), URLs and sha256 hashes updated to match the v0.0.77 release assets.puller-appbug where pulling from gcr.io failed withInvalid auth header— gcr.io returns itsWWW-Authenticatechallenge with an unquotedservicevalue, which the old header parser didn't handle.Test plan
./bazel clean --expunge && ./bazel build //tests/simple_flow:test_simple_imagensucceeds from a cold cache, confirming Bazel 9.2.0 resolves the new deps and fetches/uses the v0.0.77 binaries (verified the fetchedpuller-appsha256 matches the pinned lockfile entry via the content-addressable repo cache).