Skip to content

Commit ae0d5fb

Browse files
authored
Upgrade to pg17 (#9617)
* Upgrade to pg17 * changelog
1 parent 18711d3 commit ae0d5fb

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
- Updated default Postgres version for Data Connect to 17.
12
- Update Data Connect Emulator to 3.0.1, which addresses some internal errors (#9627)

src/gcp/cloudsql/cloudsqladmin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function instanceConsoleLink(projectId: string, instanceId: string) {
6161
}
6262

6363
export type DataConnectLabel = "ft" | "nt";
64-
export const DEFAULT_DATABASE_VERSION = "POSTGRES_15";
64+
export const DEFAULT_DATABASE_VERSION = "POSTGRES_17";
6565

6666
export async function createInstance(args: {
6767
projectId: string;

src/throttler/throttler.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,6 @@ const throttlerTest = (ThrottlerConstructor: ThrottlerConstructorType): void =>
336336
expect(q.complete).to.equal(1);
337337
expect(q.success).to.equal(0);
338338
expect(q.errored).to.equal(1);
339-
expect(q.retried).to.be.at.least(2);
340339
expect(q.total).to.equal(1);
341340
});
342341

0 commit comments

Comments
 (0)