Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/cli-go/pkg/config/templates/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Exposed for updates by .github/dependabot.yml
FROM supabase/postgres:17.6.1.158 AS pg
FROM supabase/postgres:17.6.1.159 AS pg

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Sync the stack default Postgres version

This bump only updates the Go Dockerfile manifest; the TypeScript stack still has DEFAULT_VERSIONS.postgres pinned to 17.6.1.158 in packages/stack/src/versions.ts:55, and createStack / StackPreparation use that default when no override is provided. As a result, next/stack users continue pulling the old Postgres image while the Go CLI uses 17.6.1.159; include the synced packages/stack/src/versions.ts change from pnpm sync:versions with this image bump.

Useful? React with 👍 / 👎.

# Append to ServiceImages when adding new dependencies below
FROM library/kong:2.8.1 AS kong
FROM axllent/mailpit:v1.30.2 AS mailpit
Expand Down
2 changes: 1 addition & 1 deletion packages/stack/src/versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export interface VersionManifest {
}

export const DEFAULT_VERSIONS: VersionManifest = {
postgres: "17.6.1.158",
postgres: "17.6.1.159",
postgrest: "14.16",
auth: "2.195.0",
"edge-runtime": "1.74.3",
Expand Down
Loading