Skip to content

Commit

Permalink
emulator bump to v1.1.20 (#7254)
Browse files Browse the repository at this point in the history
* emulator bump

* changelog

* changelog
  • Loading branch information
hlshen committed Jun 3, 2024
1 parent 63fdf2c commit 4397fe4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
- Updated Pub/Sub emulator to v0.8.14 (#7197).
- Updates default resource names and template during `firebase init dataconnect`.
- Improved handling of 'fresh from Console' services during `init dataconnect`.
- Update to Firebase Data Connect Emulator v1.1.20 which adds support for Postgres 16
1 change: 0 additions & 1 deletion src/emulator/dataconnectEmulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export class DataConnectEmulator implements EmulatorInstance {
auto_download: this.args.auto_download,
listen: listenSpecsToString(this.args.listen),
config_dir: this.args.configDir,
local_connection_string: this.getLocalConectionString(),
project_id: this.args.projectId,
service_location: this.args.locationId,
});
Expand Down
19 changes: 9 additions & 10 deletions src/emulator/downloadableEmulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,20 @@ const EMULATOR_UPDATE_DETAILS: { [s in DownloadableEmulators]: EmulatorUpdateDet
dataconnect:
process.platform === "darwin"
? {
version: "1.1.19",
expectedSize: 25836864,
expectedChecksum: "b31ba00789b82a30f0dee1c03b8f74ce",
version: "1.1.20",
expectedSize: 23946048,
expectedChecksum: "af59c09968a00b0a0666cfc17d6883b2",
}
: process.platform === "win32"
? {
version: "1.1.19",
expectedSize: 23629824,
expectedChecksum: "bcbd7705b36cee72ff0587749d67bfc3",
version: "1.1.20",
expectedSize: 24355328,
expectedChecksum: "e56ca1467919c3566c04bd55c91e9524",
}
: {
version: "1.1.19",
expectedSize: 23247120,
expectedChecksum: "56d6cb2ad85474d3a67999e35d2916a1",
version: "1.1.20",
expectedSize: 23965956,
expectedChecksum: "3d2a1c0e9a883724bae9aa9aa60a4ec1",
},
};

Expand Down Expand Up @@ -292,7 +292,6 @@ const Commands: { [s in DownloadableEmulators]: DownloadableEmulatorCommand } =
optionalArgs: [
"listen",
"config_dir",
"local_connection_string",
"project_id",
"service_location",
"disable_sdk_generation",
Expand Down

0 comments on commit 4397fe4

Please sign in to comment.