Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
- Improved errors when an incorrect service ID is passed to `firebase deploy --only dataconnect:serviceId`.
- Fixed display of errors in Firestore commands when using JSON or noninteractive modes. (#7482)
- Fixed an issue where Firestore backup schedule commands had invalid short option names. (#7481)
- Bumps the Firebase Data Connect local toolkit to v1.3.0, which adds Swift SDK, @index, @unique, and batch insert support. (#7486)
18 changes: 9 additions & 9 deletions src/emulator/downloadableEmulators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,20 +57,20 @@ const EMULATOR_UPDATE_DETAILS: { [s in DownloadableEmulators]: EmulatorUpdateDet
dataconnect:
process.platform === "darwin"
? {
version: "1.2.4",
expectedSize: 24097600,
expectedChecksum: "e0a344620b71d64b79d99b2c358e7646",
version: "1.3.0",
expectedSize: 24175424,
expectedChecksum: "e0aefd484499308434a0405a5a55574c",
}
: process.platform === "win32"
? {
version: "1.2.4",
expectedSize: 24509440,
expectedChecksum: "44ebc07e481a85bd735fe8007fab3efe",
version: "1.3.0",
expectedSize: 24585728,
expectedChecksum: "c7f9fad2025d9f2c9d2dff44a3edebbe",
}
: {
version: "1.2.4",
expectedSize: 24010904,
expectedChecksum: "bf10e866f4c4e132bf8115460508e6e2",
version: "1.3.0",
expectedSize: 24084632,
expectedChecksum: "f332b33b67680a32ea76bea866540656",
},
};

Expand Down