From 0d64d8360d15cc95ae76436080dc406fba62ffbf Mon Sep 17 00:00:00 2001 From: Joe Hanley Date: Fri, 12 Dec 2025 13:16:23 -0800 Subject: [PATCH 1/3] Upgrade to pg17 --- src/gcp/cloudsql/cloudsqladmin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gcp/cloudsql/cloudsqladmin.ts b/src/gcp/cloudsql/cloudsqladmin.ts index 1984010f4dd..ff05039961b 100755 --- a/src/gcp/cloudsql/cloudsqladmin.ts +++ b/src/gcp/cloudsql/cloudsqladmin.ts @@ -61,7 +61,7 @@ export function instanceConsoleLink(projectId: string, instanceId: string) { } export type DataConnectLabel = "ft" | "nt"; -export const DEFAULT_DATABASE_VERSION = "POSTGRES_15"; +export const DEFAULT_DATABASE_VERSION = "POSTGRES_17"; export async function createInstance(args: { projectId: string; From 6c91847d878a4bad23d2f85254cec6c21ccfe526 Mon Sep 17 00:00:00 2001 From: Joe Hanley Date: Fri, 12 Dec 2025 13:18:30 -0800 Subject: [PATCH 2/3] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29bb2d..8ecad290b71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1 @@ +- Updated default Postgres version for Data Connect to 17. From 2eb9e38c76ea301e1aa5e6e0ed11d3e4a70ec344 Mon Sep 17 00:00:00 2001 From: Joe Hanley Date: Thu, 18 Dec 2025 10:26:48 -0800 Subject: [PATCH 3/3] Remove flaky assertion --- src/throttler/throttler.spec.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/throttler/throttler.spec.ts b/src/throttler/throttler.spec.ts index b67a2cfd71a..27eb59189a6 100644 --- a/src/throttler/throttler.spec.ts +++ b/src/throttler/throttler.spec.ts @@ -336,7 +336,6 @@ const throttlerTest = (ThrottlerConstructor: ThrottlerConstructorType): void => expect(q.complete).to.equal(1); expect(q.success).to.equal(0); expect(q.errored).to.equal(1); - expect(q.retried).to.be.at.least(2); expect(q.total).to.equal(1); });