Skip to content

Commit

Permalink
Revert "emulator bump to v1.1.20 (#7254)"
Browse files Browse the repository at this point in the history
This reverts commit 4397fe4.
  • Loading branch information
hlshen committed Jun 3, 2024
1 parent 4397fe4 commit b280e5d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@
- 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: 1 addition & 0 deletions src/emulator/dataconnectEmulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ 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: 10 additions & 9 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.20",
expectedSize: 23946048,
expectedChecksum: "af59c09968a00b0a0666cfc17d6883b2",
version: "1.1.19",
expectedSize: 25836864,
expectedChecksum: "b31ba00789b82a30f0dee1c03b8f74ce",
}
: process.platform === "win32"
? {
version: "1.1.20",
expectedSize: 24355328,
expectedChecksum: "e56ca1467919c3566c04bd55c91e9524",
version: "1.1.19",
expectedSize: 23629824,
expectedChecksum: "bcbd7705b36cee72ff0587749d67bfc3",
}
: {
version: "1.1.20",
expectedSize: 23965956,
expectedChecksum: "3d2a1c0e9a883724bae9aa9aa60a4ec1",
version: "1.1.19",
expectedSize: 23247120,
expectedChecksum: "56d6cb2ad85474d3a67999e35d2916a1",
},
};

Expand Down Expand Up @@ -292,6 +292,7 @@ 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 b280e5d

Please sign in to comment.