Skip to content

Commit

Permalink
chore(deps): update .NET SDK to v3.36.0 (#1426)
Browse files Browse the repository at this point in the history
Co-authored-by: GitHub <noreply@github.com>
  • Loading branch information
github-actions[bot] and web-flow authored Aug 24, 2023
1 parent 7a06d70 commit e8dbb99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
- Bump Cocoa SDK from v8.9.4 to v8.10.0 ([#1422](https://github.com/getsentry/sentry-unity/pull/1422), [#1424](https://github.com/getsentry/sentry-unity/pull/1424), [#1425](https://github.com/getsentry/sentry-unity/pull/1425))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#8100)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.9.4...8.10.0)
- Bump .NET SDK from v3.35.0 to v3.35.1 ([#1423](https://github.com/getsentry/sentry-unity/pull/1423))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#3351)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.35.0...3.35.1)
- Bump .NET SDK from v3.35.0 to v3.36.0 ([#1423](https://github.com/getsentry/sentry-unity/pull/1423), [#1426](https://github.com/getsentry/sentry-unity/pull/1426))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#3360)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.35.0...3.36.0)

## 1.5.1

Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 61 files
+1 −0 .github/actions/buildcocoasdk/action.yml
+1 −0 .github/actions/buildnative/action.yml
+1 −0 .github/actions/environment/action.yml
+1 −1 .github/workflows/device-tests-android.yml
+19 −1 CHANGELOG.md
+5 −1 CONTRIBUTING.md
+4 −1 Directory.Build.props
+14 −0 Sentry.sln
+1 −0 Sentry.sln.DotSettings
+2 −4 before.Sentry.sln.targets
+3 −1 lib/sentrysupplemental/build.sh
+1 −1 modules/sentry-cocoa
+8 −0 samples/Sentry.Samples.Android/Sentry.Samples.Android.csproj
+130 −0 samples/Sentry.Samples.GraphQL.Client.Http/Program.cs
+20 −0 samples/Sentry.Samples.GraphQL.Client.Http/Sentry.Samples.GraphQL.Client.Http.csproj
+7 −0 samples/Sentry.Samples.GraphQL.Server/Notes/Note.cs
+14 −0 samples/Sentry.Samples.GraphQL.Server/Notes/NoteType.cs
+27 −0 samples/Sentry.Samples.GraphQL.Server/Notes/NotesData.cs
+27 −0 samples/Sentry.Samples.GraphQL.Server/Notes/NotesMutation.cs
+11 −0 samples/Sentry.Samples.GraphQL.Server/Notes/NotesQuery.cs
+12 −0 samples/Sentry.Samples.GraphQL.Server/Notes/NotesSchema.cs
+119 −0 samples/Sentry.Samples.GraphQL.Server/Program.cs
+37 −0 samples/Sentry.Samples.GraphQL.Server/Properties/launchSettings.json
+28 −0 samples/Sentry.Samples.GraphQL.Server/Sentry.Samples.GraphQL.Server.csproj
+9 −0 samples/Sentry.Samples.GraphQL.Server/Telemetry.cs
+8 −0 samples/Sentry.Samples.GraphQL.Server/appsettings.Development.json
+9 −0 samples/Sentry.Samples.GraphQL.Server/appsettings.json
+19 −0 scripts/dirty-check.ps1
+1 −0 src/Sentry.Bindings.Android/Transforms/Metadata.xml
+19 −4 src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
+3 −1 src/Sentry.Bindings.Cocoa/Sentry.Bindings.Cocoa.csproj
+74 −0 src/Sentry/GraphQLContentExtractor.cs
+22 −0 src/Sentry/GraphQLHttpRequestException.cs
+84 −0 src/Sentry/GraphQLRequestContent.cs
+28 −0 src/Sentry/Internal/ObjectExtensions.cs
+13 −0 src/Sentry/Protocol/Response.cs
+8 −0 src/Sentry/Request.cs
+10 −21 src/Sentry/Sentry.csproj
+11 −72 src/Sentry/SentryFailedRequestHandler.cs
+95 −0 src/Sentry/SentryGraphQLHttpFailedRequestHandler.cs
+111 −0 src/Sentry/SentryGraphQLHttpMessageHandler.cs
+79 −0 src/Sentry/SentryHttpFailedRequestHandler.cs
+11 −107 src/Sentry/SentryHttpMessageHandler.cs
+176 −0 src/Sentry/SentryMessageHandler.cs
+2 −5 src/Sentry/SentryOptions.cs
+21 −6 src/Sentry/TransactionTracer.cs
+12 −7 src/Sentry/buildTransitive/Sentry.targets
+2 −0 test/Sentry.Testing/JsonSerializableExtensions.cs
+1 −0 test/Sentry.Testing/Sentry.Testing.csproj
+21 −2 test/Sentry.Tests/ApiApprovalTests.Run.Core3_1.verified.txt
+22 −3 test/Sentry.Tests/ApiApprovalTests.Run.DotNet6_0.verified.txt
+22 −3 test/Sentry.Tests/ApiApprovalTests.Run.DotNet7_0.verified.txt
+21 −2 test/Sentry.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+68 −0 test/Sentry.Tests/GraphQlRequestContentExtractorTests.cs
+51 −0 test/Sentry.Tests/Internals/ObjectExtensionsTests.cs
+2 −0 test/Sentry.Tests/Protocol/RequestTests.cs
+3 −0 test/Sentry.Tests/Protocol/ResponseTests.cs
+256 −0 test/Sentry.Tests/SentryGraphQlHttpFailedRequestHandlerTests.cs
+136 −0 test/Sentry.Tests/SentryGraphQlHttpMessageHandlerTests.cs
+64 −0 test/Sentry.Tests/SentryGraphQlTestHelpers.cs
+5 −5 test/Sentry.Tests/SentryHttpFailedRequestHandlerTests.cs

0 comments on commit e8dbb99

Please sign in to comment.