Skip to content

chore(deps): update .NET SDK to v5.4.0 #2067

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 27, 2025
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
- Bump CLI from v2.42.2 to v2.42.5 ([#2065](https://github.com/getsentry/sentry-unity/pull/2065), [#2082](https://github.com/getsentry/sentry-unity/pull/2082))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2425)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.42.2...2.42.5)
- Bump .NET SDK from v5.2.0 to v5.4.0 ([#2067](https://github.com/getsentry/sentry-unity/pull/2067))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#540)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/5.2.0...5.4.0)
- Bump Native SDK from v0.8.1 to v0.8.2 ([#2077](https://github.com/getsentry/sentry-unity/pull/2077))
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#082)
- [diff](https://github.com/getsentry/sentry-native/compare/0.8.1...0.8.2)
Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 71 files
+1 −1 .github/workflows/build.yml
+36 −4 CHANGELOG.md
+18 −0 CONTRIBUTING.md
+2 −2 Directory.Build.props
+1 −1 modules/Ben.Demystifier
+1 −1 modules/sentry-native
+11 −0 samples/Sentry.Samples.Android/MainActivity.cs
+1 −1 samples/Sentry.Samples.Android/Sentry.Samples.Android.csproj
+30 −0 samples/Sentry.Samples.AspNetCore.Mvc/Controllers/HomeController.cs
+16 −0 samples/Sentry.Samples.AspNetCore.Mvc/Models/FeedbackModel.cs
+4 −0 samples/Sentry.Samples.AspNetCore.Mvc/Sentry.Samples.AspNetCore.Mvc.csproj
+36 −0 samples/Sentry.Samples.AspNetCore.Mvc/Views/Home/Feedback.cshtml
+3 −0 samples/Sentry.Samples.AspNetCore.Mvc/Views/Shared/_Layout.cshtml
+9 −3 samples/Sentry.Samples.Console.Customized/Program.cs
+16 −0 samples/Sentry.Samples.Ios/AppDelegate.cs
+1 −1 samples/Sentry.Samples.Ios/Sentry.Samples.Ios.csproj
+7 −0 samples/Sentry.Samples.Maui/MainPage.xaml
+5 −0 samples/Sentry.Samples.Maui/MainPage.xaml.cs
+25 −0 samples/Sentry.Samples.Maui/SubmitFeedback.xaml
+83 −0 samples/Sentry.Samples.Maui/SubmitFeedback.xaml.cs
+0 −1 src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
+35 −0 src/Sentry.Maui/IMauiElementEventBinder.cs
+41 −0 src/Sentry.Maui/Internal/MauiButtonEventsBinder.cs
+32 −36 src/Sentry.Maui/Internal/MauiEventsBinder.cs
+41 −0 src/Sentry.Maui/Internal/MauiImageButtonEventsBinder.cs
+3 −0 src/Sentry.Maui/SentryMauiAppBuilderExtensions.cs
+16 −14 src/Sentry.Profiling/SampleProfilerSession.cs
+8 −0 src/Sentry/Extensibility/DisabledHub.cs
+9 −0 src/Sentry/Extensibility/HubAdapter.cs
+9 −0 src/Sentry/ISentryClient.cs
+18 −0 src/Sentry/Internal/Extensions/CollectionsExtensions.cs
+33 −1 src/Sentry/Internal/Extensions/JsonExtensions.cs
+12 −0 src/Sentry/Internal/Hub.cs
+15 −5 src/Sentry/Platforms/Android/Callbacks/BeforeSendCallback.cs
+13 −0 src/Sentry/Platforms/Android/Extensions/SentryEventExtensions.cs
+4 −1 src/Sentry/Platforms/Android/SentrySdk.cs
+4 −0 src/Sentry/Platforms/Cocoa/BindableSentryOptions.cs
+140 −0 src/Sentry/Platforms/Cocoa/Extensions/CocoaExtensions.cs
+10 −1 src/Sentry/Platforms/Cocoa/Extensions/EnumExtensions.cs
+0 −45 src/Sentry/Platforms/Cocoa/Extensions/SentryEventExtensions.cs
+31 −0 src/Sentry/Platforms/Cocoa/SentryOptions.cs
+86 −60 src/Sentry/Platforms/Cocoa/SentrySdk.cs
+72 −24 src/Sentry/Protocol/Envelopes/Envelope.cs
+17 −0 src/Sentry/Protocol/Envelopes/EnvelopeItem.cs
+7 −7 src/Sentry/Sentry.csproj
+36 −0 src/Sentry/SentryClient.cs
+10 −0 src/Sentry/SentryClientExtensions.cs
+21 −0 src/Sentry/SentryContexts.cs
+21 −3 src/Sentry/SentryEvent.cs
+101 −0 src/Sentry/SentryFeedback.cs
+8 −0 src/Sentry/SentryOptions.cs
+19 −0 src/Sentry/SentrySdk.cs
+1 −0 src/Sentry/UserFeedback.cs
+32 −0 test/Sentry.Maui.Tests/ApiApprovalTests.Run.DotNet8_0.verified.txt
+32 −0 test/Sentry.Maui.Tests/ApiApprovalTests.Run.DotNet9_0.verified.txt
+6 −3 test/Sentry.Maui.Tests/MauiEventsBinderTests.Button.cs
+58 −0 test/Sentry.Maui.Tests/MauiEventsBinderTests.ImageButton.cs
+8 −1 test/Sentry.Maui.Tests/MauiEventsBinderTests.cs
+42 −1 test/Sentry.Profiling.Tests/SamplingTransactionProfilerTests.cs
+32 −0 test/Sentry.Tests/ApiApprovalTests.Run.DotNet8_0.verified.txt
+32 −0 test/Sentry.Tests/ApiApprovalTests.Run.DotNet9_0.verified.txt
+32 −0 test/Sentry.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+23 −0 test/Sentry.Tests/HubTests.cs
+46 −0 test/Sentry.Tests/Internals/CollectionExtensionsTests.verify.cs
+126 −0 test/Sentry.Tests/Platforms/Android/JsonExtensionsTests.cs
+118 −0 test/Sentry.Tests/Platforms/iOS/CocoaExtensionsTests.cs
+90 −0 test/Sentry.Tests/Protocol/Envelopes/EnvelopeTests.cs
+2 −0 test/Sentry.Tests/Protocol/UserFeedbackTests.cs
+4 −0 test/Sentry.Tests/SentryClientExtensionsTests.cs
+96 −0 test/Sentry.Tests/SentryClientTests.cs
+86 −0 test/Sentry.Tests/SentrySdkTests.cs
6 changes: 6 additions & 0 deletions test/Sentry.Unity.Tests/Stubs/TestHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ public SentryId CaptureEvent(SentryEvent evt, Scope? scope = null, SentryHint? h
return evt.EventId;
}

public void CaptureFeedback(SentryFeedback feedback, Scope? scope = null, SentryHint? hint = null)
{
throw new NotImplementedException();
}

[Obsolete("Obsolete")]
public void CaptureUserFeedback(UserFeedback userFeedback)
{
throw new NotImplementedException();
Expand Down
Loading