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 @@ -3,3 +3,4 @@
- Fixed (Angular 17+) temporary change the PORT in Angular server.ts (#6651)
- Switched Data Connect API from `v1alpha` to `v1beta`. (#7589)
- Improved handling of Spark projects in `firebase init dataconnect`. (#7666)
- Updated Firebase Data Connect local toolkit version to v1.3.7, which adds support for `v1beta` gRPC APIs and the `OrderDirection` enum in Swift, and makes transactional queries and mutations opt-in with the `@transaction` directive. (#7679)
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.3.6",
expectedSize: 24867584,
expectedChecksum: "b924d31e3620d7ed4486a95e22629fc8",
version: "1.3.7",
expectedSize: 25019136,
expectedChecksum: "648ca3e289db8209c2d555bb381e5e5e",
}
: process.platform === "win32"
? {
version: "1.3.6",
expectedSize: 25292288,
expectedChecksum: "45025491b43b55a94f4e4db8df903250",
version: "1.3.7",
expectedSize: 25441792,
expectedChecksum: "16081147aa94f1b8691329d5b9430b69",
}
: {
version: "1.3.6",
expectedSize: 24785048,
expectedChecksum: "6ae5820c0470c5a954540ad97838ec01",
version: "1.3.7",
expectedSize: 24928408,
expectedChecksum: "8749930f3a43f616e3ae231af8c787a8",
},
};

Expand Down