From 65388b228e5cfa5e88840a95a776d26913a1e3e0 Mon Sep 17 00:00:00 2001 From: Rosalyn Tan Date: Wed, 29 Jan 2025 23:07:03 -0800 Subject: [PATCH 1/2] Bump FDC local toolkit to v1.7.7. --- src/emulator/downloadableEmulators.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/emulator/downloadableEmulators.ts b/src/emulator/downloadableEmulators.ts index 4fd10a5a770..07c558c5602 100755 --- a/src/emulator/downloadableEmulators.ts +++ b/src/emulator/downloadableEmulators.ts @@ -59,20 +59,20 @@ const EMULATOR_UPDATE_DETAILS: { [s in DownloadableEmulators]: EmulatorUpdateDet dataconnect: process.platform === "darwin" ? { - version: "1.7.6", - expectedSize: 25322240, - expectedChecksum: "2dda7394330fd1aba37605466941eef0", + version: "1.7.7", + expectedSize: 25359104, + expectedChecksum: "c5481addc04e14d10538add7aabda183", } : process.platform === "win32" ? { - version: "1.7.6", - expectedSize: 25752064, - expectedChecksum: "283c11e28a0072b596531b79462a8e94", + version: "1.7.7", + expectedSize: 25788416, + expectedChecksum: "9f7e5b9bcbca47de509fbc26cc1e0fa8", } : { - version: "1.7.6", - expectedSize: 25235608, - expectedChecksum: "f66e24b3726df57cd1f1685a64a87904", + version: "1.7.7", + expectedSize: 25268376, + expectedChecksum: "fb239ecf5dcbf87b762d12a3e9dee012", }, }; From a75caaf5c6ccfb9827e01329c1c05aed4086b6db Mon Sep 17 00:00:00 2001 From: Rosalyn Tan Date: Wed, 29 Jan 2025 23:11:37 -0800 Subject: [PATCH 2/2] Update changelog. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96f5aecf1de..aa8cef4dd51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,4 @@ - Fixed a Data Connect emulator issue where prepared statements would be persisted after terminated connections. - Added a warning when deploying a Genkit function without a secret as this is likely a bug (#8138) - Fixed `.env.*` files for web frameworks in Windows (#8086) +- Updated the Firebase Data Connect local toolkit to v1.7.7, which includes fixes in Dart code generation around required argument typing, and changes the emulator to always serve local connector sources and surface errors if they're invalid or schema migration fails. (#8153)