Skip to content

Commit fb06747

Browse files
github-actions[bot]web-flowbuenaflor
authored
chore(deps): update CLI to v2.52.0 (#327)
* chore: update scripts/update-cli.sh to 2.52.0 * Update CHANGELOG.md * Update CHANGELOG.md * Fix ci --------- Co-authored-by: GitHub <noreply@github.com> Co-authored-by: Giancarlo Buenaflor <giancarlo_buenaflor@yahoo.com> Co-authored-by: Giancarlo Buenaflor <giancarlobuenaflor97@gmail.com>
1 parent 42e7249 commit fb06747

3 files changed

Lines changed: 16 additions & 8 deletions

File tree

.github/workflows/integration-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
distribution: 'temurin'
4848
java-version: '17'
4949

50-
- run: sudo apt-get install ninja-build libgtk-3-dev
50+
- run: sudo apt-get update && sudo apt-get install -y ninja-build libgtk-3-dev
5151
if: runner.os == 'Linux'
5252

5353
- run: (flutter --version)[0] | Out-File flutter.version

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Dependencies
6+
7+
- Bump CLI from v2.41.1 to v2.52.0 ([#327](https://github.com/getsentry/sentry-dart-plugin/pull/327))
8+
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2520)
9+
- [diff](https://github.com/getsentry/sentry-cli/compare/2.41.1...2.52.0)
10+
311
## 3.1.1
412

513
### Fixes

lib/src/cli/_sources.dart

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,37 +4,37 @@ import 'package:sentry_dart_plugin/src/cli/sources.dart';
44

55
import 'host_platform.dart';
66

7-
const _version = '2.41.1';
7+
const _version = '2.52.0';
88

99
final currentCLISources = {
1010
HostPlatform.darwinUniversal: CLISource(
1111
'sentry-cli-Darwin-universal',
1212
_version,
13-
'4b6703bb6160accb7d3552128945357910ff273fde5d5a8aa4d1668958bb9472',
13+
'd2e49a13bc253044dd8bc4bc822ca255ad8b3353488378e6ded1d5483cfad835',
1414
),
1515
HostPlatform.linuxAarch64: CLISource(
1616
'sentry-cli-Linux-aarch64',
1717
_version,
18-
'a2361706bd8fd624edd73945f70e7ff761163258476292872dadea1bfe2f241e',
18+
'1db6a70093828bd3a017f585a2717e83ffb01f2aee671900669ae49de5261c4f',
1919
),
2020
HostPlatform.linuxArmv7: CLISource(
2121
'sentry-cli-Linux-armv7',
2222
_version,
23-
'1425497df41f65a6b1777ad2806324bcf5980044c8b48a7cffc0e1ba5e471857',
23+
'befa94bb905487b58c7914ccd8ab137407b782f45b7d3ceb2f269fc94375e4c7',
2424
),
2525
HostPlatform.linux64bit: CLISource(
2626
'sentry-cli-Linux-x86_64',
2727
_version,
28-
'a007369907840f26b68d0ce83037abf2b14fc68162fdef1d071885a1ace5e3cf',
28+
'6149cf765590ef5adf2e8bc47ca236ba9100b38d600dd148b3bc435693c7e6a5',
2929
),
3030
HostPlatform.windows32bit: CLISource(
3131
'sentry-cli-Windows-i686.exe',
3232
_version,
33-
'8a25bfb2c550a067966dc330ce386da56a9343cf8cefebc096b7ee4c915e759f',
33+
'0b6937ee44415120344815fc7f356659477d6a91ca8b5af11be26e9426605c92',
3434
),
3535
HostPlatform.windows64bit: CLISource(
3636
'sentry-cli-Windows-x86_64.exe',
3737
_version,
38-
'34878a7f30c3da8861455a2e8a8cfbd5a861649e11fe88432e9b610c83650896',
38+
'426c2a90da4235265c8f31088c393460691be4bd54d2c3a2f1bc7dbf210794b3',
3939
),
4040
};

0 commit comments

Comments
 (0)