chore: upgrade template subtree to v0.10.0-rc2#28
Merged
ycpss91255 merged 5 commits intomainfrom Apr 24, 2026
Merged
Conversation
7b260c4f chore: release v0.10.0-rc2 (#127) ef0883ab fix: remove ARG TARGETARCH default in Dockerfile.test-tools (#126) 76aab349 chore: release v0.10.0-rc1 (#123) 4a3a2636 feat: runtime compose service + run.sh cmd passthrough (#108, #118) (#122) daa81cf6 chore: release v0.9.13 (#121) 6bb8a5ec fix(ci): release-test-tools Dockerfile path (drop subtree prefix) (#120) 16af321d feat: migrate test-tools to pre-built GHCR image (closes #106) (#119) 526337d0 chore: release v0.9.12 (#117) bf34361b fix(ci): build-worker.yaml test-tools build must use load:true (#116) 846b6f00 feat: add dependabot.yml + document upgrade.sh automation (#110) git-subtree-dir: template git-subtree-split: 7b260c4fe56b88077567c9e1775ef1047c8ab5aa
- main.yaml: workflow @tag updated to v0.10.0-rc2
template/script/docker/upgrade.sh's main.yaml @tag sed uses `[0-9.]*` character class which stops at the first `-`, so upgrading to `v0.10.0-rc2` leaves the existing `-rc2` suffix untouched and prepends a new one → ends up as `@v0.10.0-rc2-rc2`. Fixed manually in this branch. Template-side fix tracked separately (upgrade.sh regex should accept semver pre-release suffixes like `[0-9A-Za-z.-]*` or a grouped `\d+\.\d+\.\d+(-[0-9A-Za-z.-]+)?` capture).
Reflects the intermediate rc2 landing: runtime compose service, run.sh arg realignment (BREAKING — `-t target` flag + cmd passthrough), and the arm64 test-tools binary hotfix. Calls out that v0.9.11 / v0.9.12 / v0.9.13 / v0.10.0-rc1 are superseded and this PR skips straight to @v0.10.0-rc2.
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
Straight jump from
@v0.9.13to@v0.10.0-rc2. Bundles all intermediate template releases:load: trueattempt (latent bug, superseded)build-worker.yamlGHCR pullruntimecompose service auto-emission (#108);run.sharg realignment (#118, BREAKING)Dockerfile.test-toolsARG TARGETARCHdefault fix — arm64 variants now ship real aarch64 binariesChanges
template/subtree squashed pull → v0.10.0-rc2 (auto via./template/upgrade.sh v0.10.0-rc2).main.yaml@v0.9.13→@v0.10.0-rc2(one workaround commit fixes a latentupgrade.shsed regex bug —-rc2-rc2double-suffix, details in commit body).Validation (local, amd64)
./build.sh --no-env test— 28/28 smoke tests pass, lint green.compose.yamlcontainsdevel/runtime/testservices (auto-emitted by v0.10.0-rc2 setup.sh after it sawFROM devel AS runtimein Dockerfile)../run.sh --dry-run→compose up -d devel && compose exec devel bash(unchanged UX)../run.sh --dry-run -t runtime bash→compose run --rm runtime bash(cmd override)../run.sh --dry-run -d ls→exit 2with actionable error pointing at./exec.sh.Pending (next PRs, not this one)
upgrade.shsed regex bug fix so future RC upgrades stop producing-rcN-rcN(this PR contains a one-line workaround; template fix will close the hole and ship in v0.10.0 stable).Test plan
call-docker-build / build (linux/amd64, ubuntu-latest, x86_64)greencall-docker-build / build (linux/arm64, ubuntu-24.04-arm, aarch64)green — this is the first time arm64 exercises the v0.10.0-rc2 test-tools + runtime compose service.