Skip to content

Commit

Permalink
chore: update src/sentry-dotnet to 3.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Mar 7, 2023
1 parent 55c456a commit 05f55c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
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 CLI from v2.13.0 to v2.14.3 ([#1213](https://github.com/getsentry/sentry-unity/pull/1213))
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2143)
- [diff](https://github.com/getsentry/sentry-cli/compare/2.13.0...2.14.3)
- Bump .NET SDK from v3.28.1 to v3.29.0 ([#1218](https://github.com/getsentry/sentry-unity/pull/1218))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#3290)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.28.1...3.29.0)

## 1.0.0

Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 76 files
+2 −2 .github/workflows/codeql-analysis.yml
+14 −5 .github/workflows/device-tests-android.yml
+37 −0 CHANGELOG.md
+15 −4 Directory.Build.props
+1 −0 SentryAspNetCore.slnf
+1 −1 modules/sentry-cocoa
+15 −9 samples/Sentry.Samples.AspNetCore.Basic/Program.cs
+0 −4 samples/Sentry.Samples.AspNetCore.Basic/Properties/launchSettings.json
+1 −0 samples/Sentry.Samples.AspNetCore.Blazor.Server/Program.cs
+2 −0 samples/Sentry.Samples.AspNetCore.Grpc/Program.cs
+1 −0 samples/Sentry.Samples.AspNetCore.Grpc/Startup.cs
+1 −1 samples/Sentry.Samples.AspNetCore.Mvc/Program.cs
+2 −0 samples/Sentry.Samples.AspNetCore.Serilog/appsettings.json
+1 −0 samples/Sentry.Samples.Aws.Lambda.AspNetCoreServer/appsettings.json
+2 −1 samples/Sentry.Samples.EntityFramework/Program.cs
+1 −1 samples/Sentry.Samples.Google.Cloud.Functions/appsettings.json
+5 −2 scripts/build-sentry-cocoa.sh
+159 −0 scripts/generate-cocoa-bindings.ps1
+8 −0 scripts/parse-xunit2-xml.ps1
+0 −0 scripts/update-cli.ps1
+7 −0 src/Sentry.Android.AssemblyReader/AndroidAssemblyDirectoryReader.cs
+1 −1 src/Sentry.Bindings.Android/Sentry.Bindings.Android.csproj
+12 −1 src/Sentry.Bindings.Android/Transforms/Metadata.xml
+471 −540 src/Sentry.Bindings.Cocoa/ApiDefinitions.cs
+39 −0 src/Sentry.Bindings.Cocoa/PrivateApiDefinitions.cs
+3 −1 src/Sentry.Bindings.Cocoa/Sentry.Bindings.Cocoa.csproj
+15 −24 src/Sentry.Bindings.Cocoa/StructsAndEnums.cs
+2 −15 src/Sentry.Bindings.Cocoa/sharpie.md
+2 −2 src/Sentry.DiagnosticSource/Internal/DiagnosticSource/SentryDiagnosticListenerIntegration.cs
+1 −1 src/Sentry.EntityFramework/DbInterceptionIntegration.cs
+1 −1 src/Sentry.EntityFramework/ErrorProcessors/DbConcurrencyExceptionProcessor.cs
+1 −1 src/Sentry.EntityFramework/ErrorProcessors/DbEntityValidationExceptionProcessor.cs
+6 −1 src/Sentry/Attachment.cs
+105 −15 src/Sentry/Internal/Extensions/JsonExtensions.cs
+26 −14 src/Sentry/Internal/Hub.cs
+11 −0 src/Sentry/Internal/Polyfills.cs
+0 −129 src/Sentry/Internal/StackFrameData.cs
+1 −1 src/Sentry/Platforms/Android/SentrySdk.cs
+2 −1 src/Sentry/Platforms/iOS/Facades/TransactionContextFacade.cs
+1 −0 src/Sentry/Platforms/iOS/IosEventProcessor.cs
+2 −1 src/Sentry/Platforms/iOS/Sentry.iOS.props
+85 −12 src/Sentry/Platforms/iOS/SentryOptions.cs
+13 −9 src/Sentry/Platforms/iOS/SentrySdk.cs
+1 −0 src/Sentry/Properties/AssemblyInfo.cs
+1 −0 src/Sentry/Protocol/Envelopes/EnvelopeItem.cs
+8 −8 src/Sentry/Sentry.csproj
+51 −5 src/Sentry/SentryClient.cs
+70 −27 src/Sentry/SentryOptions.cs
+47 −0 src/Sentry/ViewHierarchy.cs
+15 −0 src/Sentry/ViewHierarchyAttachment.cs
+61 −0 src/Sentry/ViewHierarchyNode.cs
+39 −6 src/Sentry/buildTransitive/Sentry.targets
+12 −1 test/Directory.Build.props
+0 −0 test/Sentry.AspNet.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+0 −0 test/Sentry.AspNetCore.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+10 −1 test/Sentry.DiagnosticSource.IntegrationTests/Sentry.DiagnosticSource.IntegrationTests.csproj
+0 −0 test/Sentry.DiagnosticSource.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+0 −0 test/Sentry.EntityFramework.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+0 −0 test/Sentry.Extensions.Logging.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+0 −0 test/Sentry.Log4Net.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+0 −0 test/Sentry.NLog.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+0 −0 test/Sentry.Serilog.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+1 −1 test/Sentry.Testing/ApiExtensions.cs
+23 −0 test/Sentry.Tests/ApiApprovalTests.Run.Core3_1.verified.txt
+23 −0 test/Sentry.Tests/ApiApprovalTests.Run.DotNet6_0.verified.txt
+23 −0 test/Sentry.Tests/ApiApprovalTests.Run.DotNet7_0.verified.txt
+23 −0 test/Sentry.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
+59 −0 test/Sentry.Tests/HubTests.cs
+50 −15 test/Sentry.Tests/Internals/JsonTests.cs
+14 −0 ....Tests/SentryClientTests.CaptureTransaction_BeforeSendTransactionThrows_ErrorToEventBreadcrumb.verified.txt
+105 −0 test/Sentry.Tests/SentryClientTests.cs
+17 −0 test/Sentry.Tests/SentryClientTests.verify.cs
+50 −0 test/Sentry.Tests/SentryOptionsTests.cs
+1 −1 test/Sentry.Tests/SerializationTests.verify.cs
+59 −0 test/Sentry.Tests/ViewHierarchyNodeTests.cs
+53 −0 test/Sentry.Tests/ViewHierarchyTests.cs

0 comments on commit 05f55c2

Please sign in to comment.