Skip to content

Commit

Permalink
Bump FDC local toolkit to v1.7.7. (#8153)
Browse files Browse the repository at this point in the history
* Bump FDC local toolkit to v1.7.7.

* Update changelog.
  • Loading branch information
rosalyntan authored Jan 30, 2025
1 parent 58c383c commit c0226eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
18 changes: 9 additions & 9 deletions src/emulator/downloadableEmulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
};

Expand Down

0 comments on commit c0226eb

Please sign in to comment.