github octopusreview/octopus v1.0.125
1.0.125

3 hours ago

To upgrade a self-hosted instance, pull the new public image and
apply migrations (the runtime image ships no migrations, so run them
from a checkout of this tag):

git fetch --tags && git checkout vX.Y.Z    # for the compose file + migrations
export OCTOPUS_VERSION=1.0.125
docker compose -f docker-compose.selfhost.yml pull
# 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 roll to the new version
docker compose -f docker-compose.selfhost.yml up -d

Then verify:

curl -fsS http://localhost:43300/api/health    # expect {"status":"ok"}
curl -fsS http://localhost:43300/api/version   # confirm the new version

The in-app Updates page (Settings → System → Updates) shows when a new
release is available, along with this upgrade snippet.

What's Changed

  • fix(indexer): apply MAX_FILE_SIZE and .octopusignore in incremental (merged-PR) indexing by @cemoso in #771
  • fix(cli-chat): inject reranked review chunks as <review_context> instead of discarding them by @cemoso in #772
  • content(blog): Claude Fable 5.1 launch post by @cemoso in #774
  • fix(indexer): count only blobs in totalFiles for the GitHub-tree path by @cemoso in #773

Full Changelog: v1.0.124...v1.0.125

Don't miss a new octopus release

NewReleases is sending notifications on new releases.