github octopusreview/octopus v1.2.0
1.2.0

latest release: v1.2.1
3 hours ago

Octopus Cloud can now connect to private LAN/VPN Forgejo through a local
connector. Choose your setup at https://octopus-review.ai/docs/integrations#forgejo.
The standalone connector image is
ghcr.io/octopusreview/octopus-selfhost:forgejo-connector-1.2.0.

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.2.0
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

  • feat: connect Octopus Cloud to private Forgejo networks by @cemoso in #867

Full Changelog: v1.1.1...v1.2.0

Don't miss a new octopus release

NewReleases is sending notifications on new releases.