To upgrade a self-hosted instance, rebuild from the tagged source
(the GHCR image is private and the runtime image ships no migrations):
git pull # or: git fetch --tags && git checkout vX.Y.Z
docker compose build --build-arg NEXT_PUBLIC_OCTOPUS_SELF_HOSTED=true
# migrate FIRST (expand-only, safe under the still-running old version) ...
cd packages/db && DATABASE_URL=postgresql://octopus:octopus@localhost:43332/octopus bunx prisma migrate deploy && cd ../..
# ... then start the new version
docker compose up -dThen verify:
curl -fsS http://localhost:43300/api/health # expect {"status":"ok"}
curl -fsS http://localhost:43300/api/version # confirm the new versionThe in-app Updates page (Settings → System → Updates) shows when a new
release is available, along with this upgrade snippet.
What's Changed
- docs: roadmap section, contribution conventions, real semver, DPA download by @cemoso in #591
- test: ai-router end-to-end suite via mock providers by @cemoso in #595
- feat: catalog rows for ollama/claude-code/openrouter, daily release-cache job, audit legal-hold by @cemoso in #592
- feat(cli): /onboard chat command + RepoStep opens the install URL by @cemoso in #596
- fix(deps): bump nodemailer to ^9.0.1 (Dependabot high, alert #22) by @cemoso in #597
- feat(review): content-signature finding merge — triage survives re-reviews by @cemoso in #598
Full Changelog: v1.0.26...v1.0.27