diff --git a/CHANGELOG.md b/CHANGELOG.md index 62ad3ae..6412c1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Unreleased + +### Dependencies + +- Bump CLI from v2.21.2 to v2.22.3 ([#180](https://github.com/getsentry/sentry-dart-plugin/pull/180)) + - [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2223) + - [diff](https://github.com/getsentry/sentry-cli/compare/2.21.2...2.22.3) + ## 1.6.3 ### Fixes diff --git a/lib/src/cli/_sources.dart b/lib/src/cli/_sources.dart index 636949f..ad60aed 100644 --- a/lib/src/cli/_sources.dart +++ b/lib/src/cli/_sources.dart @@ -4,23 +4,23 @@ import 'package:sentry_dart_plugin/src/cli/sources.dart'; import 'host_platform.dart'; -const _version = '2.21.2'; +const _version = '2.22.3'; const _urlPrefix = 'https://downloads.sentry-cdn.com/sentry-cli/$_version'; final currentCLISources = { HostPlatform.darwinUniversal: CLISource( '$_urlPrefix/sentry-cli-Darwin-universal', - '805faf6e05247e5d6e8c755321eeaadac37686a54d4cf2fdde7d62fc54ab33df'), + 'e27a32541fb11c37e20b8c83407786e80a3593d332101c5c31be9eb80589cf31'), HostPlatform.linuxAarch64: CLISource('$_urlPrefix/sentry-cli-Linux-aarch64', - 'aa6085a9b24e349dbcef301127aebc6e8c3adfa8389964df5e91d96b3fb92e08'), + 'ef5d6fcb95a14714bbf401b2685c296efb192b5761ad2dedff2af06fd732cc5d'), HostPlatform.linuxArmv7: CLISource('$_urlPrefix/sentry-cli-Linux-armv7', - 'c208f78196cb14a6b3758d934e0d8ade32d784fe6d3b6ad32996976a5ee85172'), + 'c34fde9660e8f7b7213e79882749555e4bc28675c5357153cba74dd30602da87'), HostPlatform.linux64bit: CLISource('$_urlPrefix/sentry-cli-Linux-x86_64', - '0016d21b20d6b83fe10d514d10ca1dbed854e8694d71fada9749e702730ed728'), + 'bcc68cd1de631cbeee481d42391c6646e5fc974293fd3c08fb9e6425077138c9'), HostPlatform.windows32bit: CLISource( '$_urlPrefix/sentry-cli-Windows-i686.exe', - '2060d806c12d7f71e43c860973a18609f075a6b17c8875fc058398f61f35215d'), + '6a78560f1189d44205cb5d5f39e8e15323175b83ea4e98964521e7b0c8bcbf71'), HostPlatform.windows64bit: CLISource( '$_urlPrefix/sentry-cli-Windows-x86_64.exe', - '53d48d3da7b24b04f686b75195eb18250b743999841f6305dab2a40443925ca4'), + '377a9978a25bbf80dca1cc8a186466ee1e50e2b3f476e21158be51f54de02242'), };