Skip to content

Commit 4c5477a

Browse files
authored
Revert database version from POSTGRES_17 to POSTGRES_15 (#9279)
* Change database version from POSTGRES_17 to POSTGRES_15 * changelog * m
1 parent be56dfc commit 4c5477a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Fix a bug where CloudSQL instances creation fails. Default to Postgres 15 until backend supports higher versions. (#9279)

src/gcp/cloudsql/cloudsqladmin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export async function createInstance(args: {
7474
await client.post<Partial<Instance>, Operation>(`projects/${args.projectId}/instances`, {
7575
name: args.instanceId,
7676
region: args.location,
77-
databaseVersion: "POSTGRES_17",
77+
databaseVersion: "POSTGRES_15",
7878
settings: {
7979
tier: "db-f1-micro",
8080
edition: "ENTERPRISE",

0 commit comments

Comments
 (0)