Skip to content

Commit 83c88fe

Browse files
authored
Merge remote-tracking branch 'upstream/main' into version6 (#4683)
1 parent ffeef7f commit 83c88fe

File tree

12 files changed

+49
-28
lines changed

12 files changed

+49
-28
lines changed

.github/actions/environment/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ runs:
9898
dotnet-version: |
9999
8.0.x
100100
9.0.304
101-
10.0.100-rc.2.25502.107
102101
103102
# .NET 5.0 does not support ARM64 on macOS
104103
- name: Install .NET 5.0 SDK

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ jobs:
209209

210210
- name: Upload build logs
211211
if: ${{ always() }}
212-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
212+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
213213
with:
214214
name: ${{ matrix.rid }}-build-logs
215215
path: |
@@ -227,7 +227,7 @@ jobs:
227227

228228
- name: Upload build and test outputs
229229
if: failure()
230-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
230+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
231231
with:
232232
name: ${{ matrix.rid }}-verify-test-results
233233
path: "**/*.received.*"
@@ -237,7 +237,7 @@ jobs:
237237

238238
- name: Archive NuGet Packages
239239
if: env.CI_PUBLISHING_BUILD == 'true'
240-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
240+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
241241
with:
242242
name: ${{ github.sha }}
243243
if-no-files-found: error
@@ -259,7 +259,7 @@ jobs:
259259
260260
- name: Fetch NuGet Packages
261261
if: env.CI_PUBLISHING_BUILD == 'true'
262-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
262+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
263263
with:
264264
name: ${{ github.sha }}
265265
path: src
@@ -320,7 +320,7 @@ jobs:
320320

321321
- name: Upload logs
322322
if: ${{ always() }}
323-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
323+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
324324
with:
325325
name: ${{ runner.os }}-msbuild-logs
326326
path: |
@@ -357,7 +357,7 @@ jobs:
357357
uses: ./.github/actions/buildnative
358358

359359
- name: Fetch NuGet Packages
360-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
360+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
361361
with:
362362
name: ${{ github.sha }}
363363
path: src

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
uses: ./.github/actions/environment
3636

3737
- name: Initialize CodeQL
38-
uses: github/codeql-action/init@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
38+
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
3939
with:
4040
languages: csharp
4141

@@ -49,6 +49,6 @@ jobs:
4949
run: dotnet build Sentry-CI-CodeQL.slnf --no-restore --nologo
5050

5151
- name: Perform CodeQL Analysis
52-
uses: github/codeql-action/analyze@f443b600d91635bebf5b0d9ebc620189c0d6fba5 # v4.30.8
52+
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
5353
with:
5454
category: '/language:csharp'

.github/workflows/device-tests-android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Upload Android Test App (net9.0)
4444
if: matrix.tfm == 'net9.0'
45-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
45+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
4646
with:
4747
name: device-test-android-net9.0
4848
if-no-files-found: error
@@ -85,7 +85,7 @@ jobs:
8585
submodules: recursive
8686

8787
- name: Download test app artifact
88-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
88+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
8989
with:
9090
name: device-test-android-${{ matrix.tfm }}
9191
path: bin
@@ -157,7 +157,7 @@ jobs:
157157

158158
- name: Upload results
159159
if: success() || failure()
160-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
160+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
161161
with:
162162
name: device-test-android-${{ matrix.api-level }}-${{ matrix.tfm }}-results
163163
path: |

.github/workflows/device-tests-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858

5959
- name: Upload results
6060
if: success() || failure()
61-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
61+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
6262
with:
6363
name: device-test-ios-results
6464
path: |

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,27 @@
5050
- This release adds support for .NET 10 and drops support for net8.0-android, net8.0-ios, net8.0-maccatalyst and net8.0-windows10.0.19041.0 ([#4461](https://github.com/getsentry/sentry-dotnet/pull/4461))
5151
- Added support for v3 of the Android AssemblyStore format that is used in .NET 10 and dropped support for v1 that was used in .NET 8 ([#4583](https://github.com/getsentry/sentry-dotnet/pull/4583))
5252

53+
## 5.16.2
54+
55+
### Fixes
56+
57+
- Do not allow multiple `sentry.proguard-uuid` metadata to be set in Android manifest ([#4647](https://github.com/getsentry/sentry-dotnet/pull/4647))
58+
59+
### Dependencies
60+
61+
- Bump Cocoa SDK from v8.56.2 to v8.57.1 ([#4637](https://github.com/getsentry/sentry-dotnet/pull/4637), [#4680](https://github.com/getsentry/sentry-dotnet/pull/4680))
62+
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8571)
63+
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.56.2...8.57.1)
64+
- Bump Native SDK from v0.11.2 to v0.12.0 ([#4636](https://github.com/getsentry/sentry-dotnet/pull/4636), [#4678](https://github.com/getsentry/sentry-dotnet/pull/4678))
65+
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0120)
66+
- [diff](https://github.com/getsentry/sentry-native/compare/0.11.2...0.12.0)
67+
- Bump Java SDK from v8.23.0 to v8.24.0 ([#4667](https://github.com/getsentry/sentry-dotnet/pull/4667))
68+
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8240)
69+
- [diff](https://github.com/getsentry/sentry-java/compare/8.23.0...8.24.0)
70+
- Bump CLI from v2.56.1 to v2.57.0 ([#4668](https://github.com/getsentry/sentry-dotnet/pull/4668))
71+
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2570)
72+
- [diff](https://github.com/getsentry/sentry-cli/compare/2.56.1...2.57.0)
73+
5374
## 5.16.1
5475

5576
### Fixes

Directory.Build.props

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

104104
<!-- Set the version and local path for Sentry CLI (downloaded in the restore phase of Sentry.csproj) -->
105105
<PropertyGroup Condition="'$(SolutionName)' != 'Sentry.Unity'">
106-
<SentryCLIVersion>2.56.1</SentryCLIVersion>
106+
<SentryCLIVersion>2.57.0</SentryCLIVersion>
107107
<SentryCLIDirectory>$(MSBuildThisFileDirectory)tools\sentry-cli\$(SentryCLIVersion)\</SentryCLIDirectory>
108108
</PropertyGroup>
109109

modules/sentry-cocoa.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version = 8.56.2
1+
version = 8.57.1
22
repo = https://github.com/getsentry/sentry-cocoa

modules/sentry-native

Submodule sentry-native updated 80 files

src/Sentry.Bindings.Android/Sentry.Bindings.Android.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>$(LatestAndroidTfm);$(PreviousAndroidTfm)</TargetFrameworks>
4-
<SentryAndroidSdkVersion>8.23.0</SentryAndroidSdkVersion>
4+
<SentryAndroidSdkVersion>8.24.0</SentryAndroidSdkVersion>
55
<SentryAndroidSdkDirectory>$(BaseIntermediateOutputPath)sdks\$(TargetFramework)\Sentry\Android\$(SentryAndroidSdkVersion)\</SentryAndroidSdkDirectory>
66
<!-- This gets resolved by the DownloadSentryAndroidSdk target -->
77
<SentryNativeNdkVersion></SentryNativeNdkVersion>

0 commit comments

Comments
 (0)