Skip to content

Commit c01e15a

Browse files
committed
Merge branch 'main' into 4082-hangfire_remove_strong_naming
2 parents ca430d6 + 455f488 commit c01e15a

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
### Fixes
66
- Remove Strong Naming from Sentry.Hangfire ([#4099](https://github.com/getsentry/sentry-dotnet/pull/4099))
77

8+
- Prevent users from disabling AndroidEnableAssemblyCompression which leads to untrappable crash ([#4089](https://github.com/getsentry/sentry-dotnet/pull/4089))
9+
810
## 5.5.1
911

1012
### Fixes
@@ -27,7 +29,6 @@
2729
- Changed default value for `SentryOptions.EnableAppHangTrackingV2` to `false` ([#4042](https://github.com/getsentry/sentry-dotnet/pull/4042))
2830
- Missing MAUI `Shell` navigation breadcrumbs on iOS ([#4006](https://github.com/getsentry/sentry-dotnet/pull/4006))
2931
- Prevent application crashes when capturing screenshots on iOS ([#4069](https://github.com/getsentry/sentry-dotnet/pull/4069))
30-
- Prevent users from disabling AndroidEnableAssemblyCompression which leads to untrappable crash ([#4089](https://github.com/getsentry/sentry-dotnet/pull/4089))
3132

3233
### Dependencies
3334

samples/Sentry.Samples.Ios/Sentry.Samples.Ios.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net9.0-ios</TargetFramework>
5+
<TargetPlatformVersion>18</TargetPlatformVersion>
56
<OutputType>Exe</OutputType>
67
<Nullable>enable</Nullable>
78
<ImplicitUsings>true</ImplicitUsings>

test/Sentry.Maui.Device.TestApp/Sentry.Maui.Device.TestApp.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<TargetFrameworks></TargetFrameworks>
55
<TargetFrameworks Condition="'$(NO_ANDROID)' == ''">$(TargetFrameworks);net8.0-android;net9.0-android</TargetFrameworks>
66
<TargetFrameworks Condition="'$(NO_IOS)' == '' And $([MSBuild]::IsOSPlatform('OSX'))">$(TargetFrameworks);net8.0-ios;net9.0-ios</TargetFrameworks>
7+
<!-- Pin target iOS version so that our tests don't break when new versions of Xcode are released.
8+
'net8.0-ios' resolves the latest version of the iOS SDK otherwise. -->
9+
<TargetPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">18</TargetPlatformVersion>
710
<UseMaui>true</UseMaui>
811
<!-- Currently broken on .NET 7, see
912
- https://github.com/dotnet/maui/issues/18573

0 commit comments

Comments
 (0)