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.165 AS pg
FROM supabase/postgres:17.6.1.166 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 catalog with the PostgreSQL bump

When the TypeScript stack starts an unlinked project or otherwise has no PostgreSQL version override, fillServiceVersionManifest and StackConfigResolver still select packages/stack/src/ServiceCatalog.ts:131, which remains 17.6.1.165. This change therefore upgrades only the embedded Go Docker manifest while the main stack runtime continues pulling the old image, and packages/stack/scripts/sync-versions-from-dockerfile.ts --check reports the manifests as out of sync; update the catalog to 17.6.1.166 as part of 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/ServiceCatalog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const SERVICE_CATALOG = {
postgres: {
name: "postgres",
configKey: "postgres",
defaultVersion: "17.6.1.165",
defaultVersion: "17.6.1.166",
runtimeSupport: "native-preferred",
artifact: {
docker: { repository: "postgres" },
Expand Down
Loading