Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# Pin ubuntu to ensure mono is installed
# Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
os: [ubuntu-latest, windows-latest, macos-15]
os: [ubuntu-22.04, windows-latest, macos-15]

steps:
- name: Checkout
Expand Down Expand Up @@ -53,8 +54,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# Pin ubuntu to ensure mono is installed
# Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
os: [ubuntu-latest, windows-latest, macos-15]
os: [ubuntu-22.04, windows-latest, macos-15]

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -154,8 +156,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# Pin ubuntu to ensure mono is installed
# Pin macos to get the version of Xcode that we need: https://github.com/actions/runner-images/issues/10703
os: [ubuntu-latest, windows-latest, macos-15]
os: [ubuntu-22.04, windows-latest, macos-15]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -234,7 +237,7 @@ jobs:
# run: dotnet publish test/Sentry.MauiTrimTest/Sentry.MauiTrimTest.csproj -c Release -f net9.0-ios18.0 -r ios-arm64

test-solution-filters:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: ${{ !startsWith(github.ref_name, 'release/') }}

steps:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
- Bump Native SDK from v0.7.16 to v0.7.17 ([#3857](https://github.com/getsentry/sentry-dotnet/pull/3857))
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0717)
- [diff](https://github.com/getsentry/sentry-native/compare/0.7.16...0.7.17)
- Bump Java SDK from v7.19.0 to v7.20.0 ([#3866](https://github.com/getsentry/sentry-dotnet/pull/3866))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7200)
- [diff](https://github.com/getsentry/sentry-java/compare/7.19.0...7.20.0)
- Bump CLI from v2.39.1 to v2.40.0 ([#3869](https://github.com/getsentry/sentry-dotnet/pull/3869))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2400)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.39.1...2.40.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TargetFrameworks>net8.0-android34.0</TargetFrameworks>
<!-- BG8605 and BG8606 happen because there's a missing androidx.lifecycle dependency, but we don't need it here. (The native Android Sentry SDK will use it if it exists.) -->
<NoWarn>$(NoWarn);BG8605;BG8606</NoWarn>
<SentryAndroidSdkVersion>7.19.0</SentryAndroidSdkVersion>
<SentryAndroidSdkVersion>7.20.0</SentryAndroidSdkVersion>
<SentryAndroidSdkDirectory>$(BaseIntermediateOutputPath)sdks\Sentry\Android\$(SentryAndroidSdkVersion)\</SentryAndroidSdkDirectory>
<Description>.NET Bindings for the Sentry Android SDK</Description>
</PropertyGroup>
Expand Down
Loading