From aea18d61d261239e93f01c39e4f6d8d409d5193a Mon Sep 17 00:00:00 2001 From: GitHub Date: Sat, 6 Jan 2024 03:04:54 +0000 Subject: [PATCH] chore: update scripts/update-cli.sh to 2.24.1 --- CHANGELOG.md | 6 +++--- lib/src/cli/_sources.dart | 14 +++++++------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6412c1e..81d1d0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,9 @@ ### 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) +- Bump CLI from v2.21.2 to v2.24.1 ([#180](https://github.com/getsentry/sentry-dart-plugin/pull/180), [#187](https://github.com/getsentry/sentry-dart-plugin/pull/187)) + - [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2241) + - [diff](https://github.com/getsentry/sentry-cli/compare/2.21.2...2.24.1) ## 1.6.3 diff --git a/lib/src/cli/_sources.dart b/lib/src/cli/_sources.dart index ad60aed..fc05ac4 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.22.3'; +const _version = '2.24.1'; const _urlPrefix = 'https://downloads.sentry-cdn.com/sentry-cli/$_version'; final currentCLISources = { HostPlatform.darwinUniversal: CLISource( '$_urlPrefix/sentry-cli-Darwin-universal', - 'e27a32541fb11c37e20b8c83407786e80a3593d332101c5c31be9eb80589cf31'), + 'b42b8cdd9d83541511da0006ad343bc15e44d2726e9946376d1b7c770f92d8e2'), HostPlatform.linuxAarch64: CLISource('$_urlPrefix/sentry-cli-Linux-aarch64', - 'ef5d6fcb95a14714bbf401b2685c296efb192b5761ad2dedff2af06fd732cc5d'), + '4875d5e626b18df9ccae3689c8c92932c47a8c366e22faa6274729e91697215a'), HostPlatform.linuxArmv7: CLISource('$_urlPrefix/sentry-cli-Linux-armv7', - 'c34fde9660e8f7b7213e79882749555e4bc28675c5357153cba74dd30602da87'), + 'cf4b00187fc400eeadff54168aeb53880cf1ac2abc742dc287bb424d764ecbc0'), HostPlatform.linux64bit: CLISource('$_urlPrefix/sentry-cli-Linux-x86_64', - 'bcc68cd1de631cbeee481d42391c6646e5fc974293fd3c08fb9e6425077138c9'), + '0390cdb43561b65a21795fa933f6882a00c6eccfededfd7178675481ab26c15e'), HostPlatform.windows32bit: CLISource( '$_urlPrefix/sentry-cli-Windows-i686.exe', - '6a78560f1189d44205cb5d5f39e8e15323175b83ea4e98964521e7b0c8bcbf71'), + '825d94be02f163b9630d6c7ba03fb5eccbc748f31623a45e2381244df5c7e2ca'), HostPlatform.windows64bit: CLISource( '$_urlPrefix/sentry-cli-Windows-x86_64.exe', - '377a9978a25bbf80dca1cc8a186466ee1e50e2b3f476e21158be51f54de02242'), + 'b611682ee8be96e3b63ad38851725e015ee5704e6037ebc672bf4b0798f21ac8'), };