chore: bump api/ui submodule pointers to match pinned image tags#31
Merged
obrien-k merged 1 commit intoJul 13, 2026
Merged
Conversation
The submodule pointers were left at the source commits they were last bumped to (#97/#98), 181 (api) and 172 (ui) commits behind the actual released versions the images are pinned to in docker-compose.yml (api:0.7.0, ui:0.6.9). Anyone building locally via `build: ./api` / `build: ./ui` was getting source well out of sync with what's actually deployed. Bump both to their respective release tags. Also ignore docker-compose.override.yml — the standard Compose mechanism for local build-from-source overrides, so contributors don't need to hand-edit the tracked docker-compose.yml to develop against source. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Up to standards ✅🟢 Issues
|
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
apisubmodule pointer was at81c47bd, 181 commits behindv0.7.0— the tagdocker-compose.ymlpins the api image to.uisubmodule pointer was at1dec108, 172 commits behindv0.6.9— same story for ui.build: ./api/build: ./ui(the local-dev path documented in docker-compose.yml's comments) builds source that doesn't match what's actually deployed.Also
Adds
docker-compose.override.ymlto.gitignore— the standard Compose mechanism (auto-loaded, no-fflag needed) for local build-from-source dev overrides, so contributors don't need to hand-edit the trackeddocker-compose.yml(image tags, build vs. pull, volume type) to develop against source.Test plan
git submodule statusconfirms both pointers now matchv0.7.0/v0.6.9docker compose -f docker-compose.yml -f docker-compose.override.yml build🤖 Generated with Claude Code