Skip to content
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

chore(deps): update .NET SDK to v4.5.0 #1635

Merged
merged 4 commits into from
May 8, 2024
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 @@ -8,6 +8,9 @@

### Dependencies

- Bump .NET SDK from v4.4.0 to v4.5.0 ([#1635](https://github.com/getsentry/sentry-unity/pull/1635))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#450)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/4.4.0...4.5.0)
- Bump CLI from v2.31.0 to v2.31.2 ([#1639](https://github.com/getsentry/sentry-unity/pull/1639))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2312)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.31.0...2.31.2)
Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 48 files
+1 −0 .craft.yml
+1 −1 .github/workflows/build.yml
+1 −1 .github/workflows/device-tests-android.yml
+1 −1 .github/workflows/device-tests-ios.yml
+13 −0 CHANGELOG.md
+17 −42 CONTRIBUTING.md
+1 −1 Directory.Build.props
+1 −1 LICENSE
+1 −1 modules/Ben.Demystifier
+3 −3 samples/Sentry.Samples.GraphQL.Server/Sentry.Samples.GraphQL.Server.csproj
+4 −4 samples/Sentry.Samples.OpenTelemetry.AspNetCore/Sentry.Samples.OpenTelemetry.AspNetCore.csproj
+15 −17 samples/Sentry.Samples.OpenTelemetry.Console/Program.cs
+1 −1 samples/Sentry.Samples.OpenTelemetry.Console/Sentry.Samples.OpenTelemetry.Console.csproj
+1 −1 scripts/device-test.ps1
+2 −1 src/Sentry.Hangfire/SentryServerFilter.cs
+66 −43 src/Sentry.OpenTelemetry/SentrySpanProcessor.cs
+0 −1 src/Sentry.Profiling/Sentry.Profiling.csproj
+2 −1 src/Sentry/Extensibility/DisabledHub.cs
+3 −2 src/Sentry/Extensibility/HubAdapter.cs
+1 −1 src/Sentry/Http/HttpTransportBase.cs
+6 −0 src/Sentry/IBaseTracer.cs
+4 −1 src/Sentry/ISentryClient.cs
+2 −2 src/Sentry/Internal/BackgroundWorker.cs
+15 −15 src/Sentry/Internal/DebugStackTrace.cs
+6 −0 src/Sentry/Internal/Enricher.cs
+28 −0 src/Sentry/Internal/Extensions/HttpStatusExtensions.cs
+11 −0 src/Sentry/Internal/Extensions/JsonExtensions.cs
+12 −12 src/Sentry/Internal/Hub.cs
+4 −1 src/Sentry/Internal/ModuleExtensions.cs
+15 −0 src/Sentry/Protocol/Envelopes/EnvelopeItem.cs
+36 −0 src/Sentry/SentryCheckIn.cs
+18 −2 src/Sentry/SentryClient.cs
+16 −14 src/Sentry/SentryHttpFailedRequestHandler.cs
+4 −2 src/Sentry/SentrySdk.cs
+1 −1 src/Sentry/SentryTransaction.cs
+8 −2 src/Sentry/SpanTracer.cs
+4 −3 src/Sentry/TransactionTracer.cs
+6 −4 test/Sentry.Hangfire.Tests/HangfireTests.cs
+81 −1 test/Sentry.OpenTelemetry.Tests/SentrySpanProcessorTests.cs
+8 −5 test/Sentry.Tests/ApiApprovalTests.Run.DotNet6_0.verified.txt
+8 −5 test/Sentry.Tests/ApiApprovalTests.Run.DotNet7_0.verified.txt
+8 −5 test/Sentry.Tests/ApiApprovalTests.Run.DotNet8_0.verified.txt
+8 −5 test/Sentry.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+3 −3 test/Sentry.Tests/HubTests.cs
+33 −0 test/Sentry.Tests/Internals/BackgroundWorkerTests.cs
+41 −0 test/Sentry.Tests/Internals/Extensions/HttpRequestExceptionMessageTests.cs
+2 −0 test/Sentry.Tests/Protocol/Envelopes/EnvelopeTests.cs
+66 −0 test/Sentry.Tests/SentryClientTests.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 @@ -48,6 +48,12 @@ public void CaptureSession(SessionUpdate sessionUpdate)
{
}

public SentryId CaptureCheckIn(string monitorSlug, CheckInStatus status, SentryId? sentryId = null, TimeSpan? duration = null,
Scope? scope = null)
{
throw new NotImplementedException();
}

public SentryId CaptureCheckIn(string monitorSlug, CheckInStatus status, SentryId? sentryId = null)
{
throw new NotImplementedException();
Expand Down
Loading