Skip to content

Commit

Permalink
Updated to Data connect emulator 1.5.0 (#7805)
Browse files Browse the repository at this point in the history
* Updated to Data connect emulator 1.5.0

* Typo
  • Loading branch information
joehan authored Oct 7, 2024
1 parent bfc3fd4 commit a2201fb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.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",
},
};

Expand Down

0 comments on commit a2201fb

Please sign in to comment.