Skip to content

Commit 6c00567

Browse files
authored
Bump FDC local toolkit to v2.1.0. (#8400)
* Bump FDC local toolkit to v2.1.0. * Update changelog.
1 parent 0f10ae3 commit 6c00567

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
- Fixed issue with prompt when Data Connect prompts user for framework generation.
22
- Fixed a bug where the Admin SDK fails with ENOTFOUND when automatically connecting to the Data Connect emulator when run in the Functions emulator. (#8379)
3+
- Updated the Firebase Data Connect local toolkit to v2.1.0 which includes the following changes: (#8400)
4+
- Added support for update transforms.
5+
- Added support for server value expressions for Int, Int64, Float, String, Date, Timestamp, and UUID data types.
6+
- Fixed an issue where CommonJS modules don't reference ref functions properly.

src/emulator/downloadableEmulators.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,20 @@ const EMULATOR_UPDATE_DETAILS: { [s in DownloadableEmulators]: EmulatorUpdateDet
5959
dataconnect:
6060
process.platform === "darwin" // macos
6161
? {
62-
version: "2.0.0",
62+
version: "2.1.0",
6363
expectedSize: 26440448,
64-
expectedChecksum: "64fd9ad182e59a46b9462757db6d5aac",
64+
expectedChecksum: "92f70b6815e1f9e46facc241728b7255",
6565
}
6666
: process.platform === "win32" // windows
6767
? {
68-
version: "2.0.0",
68+
version: "2.1.0",
6969
expectedSize: 26884096,
70-
expectedChecksum: "92d654dfbb07fee4e1db2328ba6e00a7",
70+
expectedChecksum: "14964736145cc67764574a01e193b997",
7171
}
7272
: {
73-
version: "2.0.0", // linux
74-
expectedSize: 26353816,
75-
expectedChecksum: "29c7a57a00cb11f44f9b0ffb4710bbd2",
73+
version: "2.1.0", // linux
74+
expectedSize: 26357912,
75+
expectedChecksum: "0afb18767e56be16331be2b2b6d09ea1",
7676
},
7777
};
7878

0 commit comments

Comments
 (0)