Skip to content

Commit a98f7bf

Browse files
authored
Update FDC local toolkit to v2.2.0. (#8434)
* Update FDC local toolkit to v2.2.0. * Update changelog.
1 parent 7aeab08 commit a98f7bf

File tree

2 files changed

+15
-10
lines changed

2 files changed

+15
-10
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
- Fixed an issue in the extensions emulator where parameter default values would not be substitued into resource definitions.
2-
- Keep artifact registry dry run off for policy changes #8419
2+
- Keep artifact registry dry run off for policy changes (#8419)
33
- Allowed users to create paid Cloud SQL instances for Data Connect when the free trial has already been used.
4+
- Updated the Firebase Data Connect local toolkit to v2.2.0, which contains the following changes: (#8434)
5+
- Added support for aggregate functions on singular fields.
6+
- Added the ability to get an operation name without calling the `ref` function in generated web SDK.
7+
- Properly enforced one-of validation on `inc`, `dec`, `append`, and `prepend` update transforms. Existing deployed connectors that violate this constraint will still work, but will need to be fixed to use list syntax before being re-deployed.
8+
- Fixed an issue so that when using mutations with no variables, correct types are passed in.

src/emulator/downloadableEmulators.ts

Lines changed: 9 additions & 9 deletions
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.1.0",
63-
expectedSize: 26440448,
64-
expectedChecksum: "92f70b6815e1f9e46facc241728b7255",
62+
version: "2.2.0",
63+
expectedSize: 26538752,
64+
expectedChecksum: "15304de22f04e51db155b1c76229e3f3",
6565
}
6666
: process.platform === "win32" // windows
6767
? {
68-
version: "2.1.0",
69-
expectedSize: 26884096,
70-
expectedChecksum: "14964736145cc67764574a01e193b997",
68+
version: "2.2.0",
69+
expectedSize: 26982912,
70+
expectedChecksum: "a7677c4dfe78275eab7320b1ff777e9e",
7171
}
7272
: {
73-
version: "2.1.0", // linux
74-
expectedSize: 26357912,
75-
expectedChecksum: "0afb18767e56be16331be2b2b6d09ea1",
73+
version: "2.2.0", // linux
74+
expectedSize: 26452120,
75+
expectedChecksum: "ef332cc135bc05e43121020e5c1fef09",
7676
},
7777
};
7878

0 commit comments

Comments
 (0)