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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- Switched Data Connect emulator to use an in memory PGLite database instead of requiring a separate Postgres installation. Deprecated 'dataconnectEmulator`in`.firebaserc`.
- Released version 1.4.0 of the Data Connect toolkit, which includes SDK support for `Any` scalar type and `OrderDirection`, support for `first` to lookup operations, and breaking changes for iOS generated SDKs. PLease see documentation for more details.
- Released version 1.4.2 of the Data Connect emulator, which includes SDK support for `Any` scalar type and `OrderDirection`, support for `first` to lookup operations, and breaking changes for iOS generated SDKs. PLease see documentation for more details (#7744).
- Revert the minimum Functions SDK version and add logging for extensions features using v5.1.0 (#7731).
- Added compatibility mode support for Firebase Data Connect schema migrations, where application schema updates are allowed if the database schema is in a compatible state. (#7746)
- Improved `firebase init dataconnect` to better support local-first onboarding. (#7733)
Expand Down
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.4.0",
expectedSize: 25105152,
expectedChecksum: "a1dc95f1ead2370d559b7df05b30e60e",
version: "1.4.2",
expectedSize: 25125632,
expectedChecksum: "25c7dfe5816f4bfba82f002bcab10340",
}
: process.platform === "win32"
? {
version: "1.4.0",
expectedSize: 25529344,
expectedChecksum: "92f7da686e00a36680460b0379863493",
version: "1.4.2",
expectedSize: 25548800,
expectedChecksum: "854ddf17fd9adeafd19531282ccc2a46",
}
: {
version: "1.4.0",
expectedSize: 25018520,
expectedChecksum: "dc7d26bf1be7ea2e1a40e1f8092d167a",
version: "1.4.2",
expectedSize: 25034904,
expectedChecksum: "ed21d946879647f24fade5cdd93c9eb3",
},
};

Expand Down