Skip to content

Commit e5f9151

Browse files
chore: update scripts/update-cli.ps1 to 2.34.1 (#3578)
1 parent 9c5981a commit e5f9151

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
- Bump Cocoa SDK from v8.35.0 to v8.36.0 ([#3570](https://github.com/getsentry/sentry-dotnet/pull/3570), [#3575](https://github.com/getsentry/sentry-dotnet/pull/3575))
1111
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8360)
1212
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.35.0...8.36.0)
13+
- Bump CLI from v2.33.1 to v2.34.1 ([#3578](https://github.com/getsentry/sentry-dotnet/pull/3578))
14+
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2341)
15+
- [diff](https://github.com/getsentry/sentry-cli/compare/2.33.1...2.34.1)
1316
- Bump Native SDK from v0.7.8 to v0.7.9 ([#3577](https://github.com/getsentry/sentry-dotnet/pull/3577))
1417
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#079)
1518
- [diff](https://github.com/getsentry/sentry-native/compare/0.7.8...0.7.9)

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070

7171
<!-- Set the version and local path for Sentry CLI (downloaded in the restore phase of Sentry.csproj) -->
7272
<PropertyGroup Condition="'$(SolutionName)' != 'Sentry.Unity'">
73-
<SentryCLIVersion>2.33.1</SentryCLIVersion>
73+
<SentryCLIVersion>2.34.1</SentryCLIVersion>
7474
<SentryCLIDirectory>$(MSBuildThisFileDirectory)tools\sentry-cli\$(SentryCLIVersion)\</SentryCLIDirectory>
7575
</PropertyGroup>
7676

src/Sentry/Sentry.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -116,13 +116,13 @@
116116
<_OSArchitecture>$([System.Runtime.InteropServices.RuntimeInformation]::OSArchitecture)</_OSArchitecture>
117117
</PropertyGroup>
118118
<ItemGroup>
119-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="b84ef1ad86bf6cb17968c277f8ffa529428ce7012ee309469b029989e60f5d4d" />
120-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="c5559c2abc93b29d8e3173960af3d27d071182efe2398124a8d3461c107619e9" />
121-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="93b3a39c0498410b873f6c2c6d6ee281703aa389afa149acffdb9a9e45167add" />
122-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="7fa5b500256d9726f74882b7117fe19605831931a0c3e9df9b56e0146e98b9e6" />
123-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="f67c549d58467be3c2d387b42e52dc62502b14af0fee74c11c23e3fa75574d96" />
124-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="afbb9e75b784203ef8b15bdadd217aff29551ad8120768b277a052cf50bebbab" />
125-
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="8076284bb41d2616641f9aea0c5fc13e1d5ff3b41990dc953b5b4298bf74108d" />
119+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Darwin-arm64" FileHash="56df4f9b1c625cc6d44c661d5b0428e583dda7867f3a19212e7ac549227e3bb3" />
120+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('OSX')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Darwin-x86_64" FileHash="a67dbe6b2d594c4eeb6d4c838f812df885d8d2b75561c06f8ecbbe6f86c639c8" />
121+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'Arm64')" Include="sentry-cli-Linux-aarch64" FileHash="884205693031f9c3d574ca5d41ada9f8cd3bac4402baf8e3013293d13fa2d450" />
122+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Linux-i686" FileHash="53fa966e20ff024cbf5f26e7410a13d00fbc122fec6fc9d74c3daa96c87f63ff" />
123+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Linux')) And $(_OSArchitecture) == 'X64')" Include="sentry-cli-Linux-x86_64" FileHash="55952c5804f0867ac4bbe9db52d99de5562cad8e3c0a617905b087f621237415" />
124+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) == 'X86')" Include="sentry-cli-Windows-i686.exe" FileHash="739afb882aa086c712252b4a262602763fa2f1f5305341e9657e4257bbeb4391" />
125+
<SentryCLIDownload Condition="'$(CI_PUBLISHING_BUILD)' == 'true' Or ($([MSBuild]::IsOSPlatform('Windows')) And $(_OSArchitecture) != 'X86')" Include="sentry-cli-Windows-x86_64.exe" FileHash="38a358adf634a9bd5dda3039fd6a24c9914284cf76b1a5f11a02696679a7c4f5" />
126126
</ItemGroup>
127127

128128
<!-- Download the files -->

0 commit comments

Comments
 (0)