diff --git a/CHANGELOG.md b/CHANGELOG.md index bbbb5c2ba30..865b9c9d8ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/emulator/downloadableEmulators.ts b/src/emulator/downloadableEmulators.ts index fc30fdfb191..fdbb71ba5b0 100755 --- a/src/emulator/downloadableEmulators.ts +++ b/src/emulator/downloadableEmulators.ts @@ -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", }, };