fix(ops): drop `v` prefix in COSPAN_VERSION — GHCR tags are 0.29.0 not v0.29.0
Author: Aaron Steven White
Commit
bb0e8ef6e6e0076a060379862cc43c4c94e7fcb7Parent: d741509605
Structural diff unavailable
These commits were pushed via plain git push, so no pre-parsed
schemas are available. Install git-remote-cospan and re-push via panproto:// to
see scope-level changes, breaking change detection, and semantic diffs.
brew install panproto/tap/git-remote-cospan1 file changed +6 -6
@@ -1,7 +1,7 @@
11 #!/bin/bash 2-# Cospan v0.28.x → v0.29.0 migration. 2+# Cospan v0.28.x → 0.29.0 migration. 33 # 4-# v0.29.0 pins panproto to v0.39.0 which removes Object::Schema and 4+# 0.29.0 pins panproto to v0.39.0 which removes Object::Schema and 55 # stores per-file Merkle schema trees instead (panproto/panproto#49). 66 # Existing on-disk objects from earlier versions are unreadable by 77 # the new code, so the panproto-vcs store must be wiped before starting
@@ -43,13 +43,13 @@ docker volume rm "$NODE_VOLUME" || {
4343 } 4444 4545 # 3. Pull the new images. 46-echo "Pulling v0.29.0 images..." 47-COSPAN_VERSION=v0.29.0 \ 46+echo "Pulling 0.29.0 images..." 47+COSPAN_VERSION=0.29.0 \ 4848 docker compose -f docker-compose.prod.yml --env-file .env.production pull 4949 5050 # 4. Start the stack on the new images. 51-echo "Starting containers on v0.29.0..." 52-COSPAN_VERSION=v0.29.0 \ 51+echo "Starting containers on 0.29.0..." 52+COSPAN_VERSION=0.29.0 \ 5353 docker compose -f docker-compose.prod.yml --env-file .env.production up -d 5454 5555 echo