Skip to content

Commit

Permalink
feat/dotnet 3.8.0 persistent session (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-garcia authored Jul 14, 2021
1 parent 569579a commit 528e5c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Changelog

## Unreleased

- Main thread data ([#245](https://github.com/getsentry/sentry-unity/pull/245))

### Features

- Main thread data ([#245](https://github.com/getsentry/sentry-unity/pull/245))
- New config window ([#243](https://github.com/getsentry/sentry-unity/pull/243))
- Bump Sentry .NET SDK 3.8.0 ([#255](https://github.com/getsentry/sentry-unity/pull/255))
- [changelog](https://github.com/getsentry/sentry-dotnet/blob/main/CHANGELOG.md#380)
- [diff](https://github.com/getsentry/sentry-dotnet/compare/3.5.0...3.8.0)

## 0.3.3

Expand Down
2 changes: 1 addition & 1 deletion src/sentry-dotnet
Submodule sentry-dotnet updated 49 files
+0 −2 .editorconfig
+31 −0 CHANGELOG.md
+1 −1 Directory.Build.props
+1 −1 README.md
+21 −0 Sentry.sln
+3 −2 samples/Sentry.Samples.AspNetCore5.Mvc/appsettings.json
+3 −2 samples/Sentry.Samples.Console.Basic/Sentry.Samples.Console.Basic.csproj
+ samples/Sentry.Samples.Google.Cloud.Functions/.assets/gcp_sample.png
+134 −0 samples/Sentry.Samples.Google.Cloud.Functions/Function.cs
+15 −0 samples/Sentry.Samples.Google.Cloud.Functions/README.md
+20 −0 samples/Sentry.Samples.Google.Cloud.Functions/Sentry.Samples.Google.Cloud.Functions.csproj
+7 −0 samples/Sentry.Samples.Google.Cloud.Functions/appsettings.json
+0 −1 src/Sentry.AspNetCore.Grpc/SentryBuilderExtensions.cs
+1 −1 src/Sentry.AspNetCore/Extensions/DependencyInjection/ServiceCollectionExtensions.cs
+1 −0 src/Sentry.AspNetCore/Properties/AssemblyInfo.cs
+7 −1 src/Sentry.AspNetCore/SentryAspNetCoreLoggerProvider.cs
+10 −1 src/Sentry.AspNetCore/SentryAspNetCoreOptionsSetup.cs
+6 −3 src/Sentry.AspNetCore/SentryMiddleware.cs
+7 −2 src/Sentry.AspNetCore/SentryStartupFilter.cs
+14 −0 src/Sentry.Google.Cloud.Functions/Sentry.Google.Cloud.Functions.csproj
+82 −0 src/Sentry.Google.Cloud.Functions/SentryStartup.cs
+247 −18 src/Sentry/GlobalSessionManager.cs
+13 −0 src/Sentry/IJsonSerializable.cs
+9 −0 src/Sentry/ISessionManager.cs
+11 −2 src/Sentry/Integrations/NetFxInstallationsIntegration.cs
+1 −1 src/Sentry/Internal/BackgroundWorker.cs
+3 −8 src/Sentry/Internal/Http/CachingTransport.cs
+44 −11 src/Sentry/Internal/Hub.cs
+8 −0 src/Sentry/Internal/Json.cs
+41 −0 src/Sentry/PersistedSessionUpdate.cs
+5 −5 src/Sentry/PlatformAbstractions/FrameworkInfo.NetFx.cs
+12 −1 src/Sentry/PlatformAbstractions/Runtime.cs
+4 −1 src/Sentry/PlatformAbstractions/RuntimeInfo.cs
+1 −1 src/Sentry/Protocol/Gpu.cs
+18 −0 src/Sentry/Scope.cs
+14 −2 src/Sentry/SentryHttpMessageHandler.cs
+37 −10 src/Sentry/SentryOptions.cs
+25 −0 src/Sentry/SentryOptionsExtensions.cs
+10 −2 src/Sentry/SessionUpdate.cs
+3 −1 src/Sentry/TransactionTracer.cs
+32 −0 test/Sentry.AspNetCore.Tests/SentryMiddlewareTests.cs
+98 −0 test/Sentry.Google.Cloud.Functions.Tests/IntegrationTests.cs
+12 −0 test/Sentry.Google.Cloud.Functions.Tests/Sentry.Google.Cloud.Functions.Tests.csproj
+77 −0 test/Sentry.Google.Cloud.Functions.Tests/SentryStartupTests.cs
+173 −4 test/Sentry.Tests/GlobalSessionManagerTests.cs
+56 −0 test/Sentry.Tests/HubTests.cs
+6 −0 test/Sentry.Tests/Internals/Http/CachingTransportTests.cs
+36 −0 test/Sentry.Tests/ScopeTests.cs
+45 −1 test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

0 comments on commit 528e5c2

Please sign in to comment.