Skip to content

Commit 9ccb610

Browse files
authored
Bump FDC local toolkit to v1.8.4. (#8290)
* Bump FDC local toolkit to v1.8.4. * Update changelog.
1 parent 3cc65e7 commit 9ccb610

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
- Fixed issue where `apps:init` fails to detect the output directory when it was run in a directory where `app` was the only module.
22
- Set `LOG_EXECUTION_ID=true` by default for Cloud Functions (2nd gen) to improve debugging by displaying execution IDs in logs. (#8276)
3+
- Updated the Firebase Data Connect local toolkit to v1.8.4 which includes the following changes: (#8290)
4+
- React hooks for mutations without args no longer require `undefined` to be passed when calling `mutate`.
5+
- Fixed import resolution when `moduleResolution` is set to `bundler`.
6+
- React code generation will now generate a README explaining how to use generated query and mutation hook functions.
7+
- Fixed an issue where React developers have to pass in an empty object even when all fields are optional.
8+
- Fixed an issue where `FirebaseError` wasn't being passed into `UseMutationOptions`.

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: "1.8.3",
63-
expectedSize: 25535232,
64-
expectedChecksum: "53fb0bf52f21a84b1d6afa70371dd00c",
62+
version: "1.8.4",
63+
expectedSize: 25588480,
64+
expectedChecksum: "421f6226a0433b824642c03eb0b6862d",
6565
}
6666
: process.platform === "win32" // windows
6767
? {
68-
version: "1.8.3",
69-
expectedSize: 25965568,
70-
expectedChecksum: "d717235f244e5bbbc00158eae3aa97f0",
68+
version: "1.8.4",
69+
expectedSize: 26020352,
70+
expectedChecksum: "b78c95a7f071f127acda3a76cdcc8c48",
7171
}
7272
: {
73-
version: "1.8.3", // linux
74-
expectedSize: 25448600,
75-
expectedChecksum: "cd381e329a27ff0c81c41d7e635d6733",
73+
version: "1.8.4", // linux
74+
expectedSize: 25501848,
75+
expectedChecksum: "0aabd622b1a99b2a0d9c9dec4c7404fc",
7676
},
7777
};
7878

0 commit comments

Comments
 (0)