Skip to content

Commit

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

* Update changelog.
  • Loading branch information
rosalyntan authored Oct 15, 2024
1 parent e4861d2 commit 04c2296
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 Flutter web apps that might require the --no-tree-shake-icons flag in order to build. (#7724)
- Removed outdated dependency on `rimraf`.
- Fixed an issue where the Extensions emulator would fail silently if started with a non-existant project without the `demo-` prefix. (#7779)
- Bumped the Firebase Data Connect local toolkit version to v1.5.1, which adds compatible mode schema migration support to the emulator and fixes an issue with the Timestamp type in Swift codegen. (#7837)
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.5.0",
expectedSize: 25215744,
expectedChecksum: "670ad771cf36b07c52a71f580df89994",
version: "1.5.1",
expectedSize: 25289472,
expectedChecksum: "92c425072db66c7e2cfa40b703ed807b",
}
: process.platform === "win32"
? {
version: "1.5.0",
expectedSize: 25643520,
expectedChecksum: "b565e4609f08eb2299b7bec7e0cac0dc",
version: "1.5.1",
expectedSize: 25720320,
expectedChecksum: "2a5c654770233b740980d5f98f24be73",
}
: {
version: "1.5.0",
expectedSize: 25129112,
expectedChecksum: "9a08671b89f557d096c075f6a5ac87db",
version: "1.5.1",
expectedSize: 25202840,
expectedChecksum: "f95156cbcac237268791638ea0eb10e7",
},
};

Expand Down

0 comments on commit 04c2296

Please sign in to comment.