From a2201fb9c64b0759ad5149d5947e6dddba5ceeb3 Mon Sep 17 00:00:00 2001 From: joehan Date: Mon, 7 Oct 2024 19:55:33 -0400 Subject: [PATCH] Updated to Data connect emulator 1.5.0 (#7805) * Updated to Data connect emulator 1.5.0 * Typo --- CHANGELOG.md | 1 + src/emulator/downloadableEmulators.ts | 18 +++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f031671c3f5..9e67bfcd112 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,3 +4,4 @@ - Fixed various trigger handling issues in the Functions emualtor, including an issue where Eventarc functions would not be emulated correctly after a reload. - Added support for generating Dart SDKs for Data Connect connectors. - Commands now correctly default to 'default' alias when there is more than one alias listed. (#7624) +- Updated Data Connect emulator to v1.15.0, which includes bug fixes for `insertMany` and improved error handling. diff --git a/src/emulator/downloadableEmulators.ts b/src/emulator/downloadableEmulators.ts index 5d68e78c5b8..02da4ef0bc9 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.4.4", - expectedSize: 25142016, - expectedChecksum: "9b071275feaba21e04bbb0db842f945d", + version: "1.5.0", + expectedSize: 25215744, + expectedChecksum: "670ad771cf36b07c52a71f580df89994", } : process.platform === "win32" ? { - version: "1.4.4", - expectedSize: 25567744, - expectedChecksum: "d23bf88b04a09d666ae927a107317611", + version: "1.5.0", + expectedSize: 25643520, + expectedChecksum: "b565e4609f08eb2299b7bec7e0cac0dc", } : { - version: "1.4.4", - expectedSize: 25055384, - expectedChecksum: "9c04a6c4738088305eb1a7b2a5d34df4", + version: "1.5.0", + expectedSize: 25129112, + expectedChecksum: "9a08671b89f557d096c075f6a5ac87db", }, };