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.143 AS pg
FROM supabase/postgres:17.6.1.149 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 Keep stack defaults synced with the Dockerfile bump

For the TypeScript stack path, createStack falls back to DEFAULT_VERSIONS.postgres (packages/stack/src/createStack.ts:561), but that manifest is still pinned to 17.6.1.143 in packages/stack/src/versions.ts:49. With only this Dockerfile line changed, users of @supabase/stack / next supabase start continue pulling the old Postgres image instead of 17.6.1.149; please run the stack version sync and commit the updated manifest with this 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 @@ -46,7 +46,7 @@ export interface VersionManifest {
}

export const DEFAULT_VERSIONS: VersionManifest = {
postgres: "17.6.1.143",
postgres: "17.6.1.149",
postgrest: "14.15",
auth: "2.193.0",
"edge-runtime": "1.74.2",
Expand Down
Loading