Skip to content

Commit

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

* Update changelog.
  • Loading branch information
rosalyntan authored Nov 12, 2024
1 parent 602f57a commit c92c59b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- Fix Task Queue Emulator error handling to display error message properly. (#7916)
- Fixed some misleading logs when using the Data Connect emulator with `FIREBASE_DATACONNECT_POSTGRESQL_STRING` set.
- Fixed some misleading logs when using the Data Connect emulator with `FIREBASE_DATACONNECT_POSTGRESQL_STRING` set. (#7882)
- Update the Firebase Data Connect local toolkit to v1.7.0, which includes support for `query` in mutations, `@check` for advanced authorization, and replaces `java.util.Date` with `com.google.firebase.dataconnect.LocalDate` for `Date` scalar fields and variables in Kotlin codegen. (#7936)
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.6.1",
expectedSize: 25309952,
expectedChecksum: "826692eb4ed9cf11becb595c386eb7bf",
version: "1.7.0",
expectedSize: 25350912,
expectedChecksum: "1479411a52b689a990179c7f674362b6",
}
: process.platform === "win32"
? {
version: "1.6.1",
expectedSize: 25737728,
expectedChecksum: "1e87a3a1f95d7b21cebf18f551619167",
version: "1.7.0",
expectedSize: 25783808,
expectedChecksum: "fef62bf25e816aa4ba250e80050f0125",
}
: {
version: "1.6.1",
expectedSize: 25223320,
expectedChecksum: "b13218419fcaaa3ad22005ce8378412d",
version: "1.7.0",
expectedSize: 25272472,
expectedChecksum: "24d873457787546ca6f2470fe9ec3edd",
},
};

Expand Down

0 comments on commit c92c59b

Please sign in to comment.