Skip to content

Commit fe4e71e

Browse files
Merge branch 'main' into reapply-4103
2 parents 5a18f59 + b6fb323 commit fe4e71e

15 files changed

+62
-531
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Get auth token
2222
id: token
23-
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
23+
uses: actions/create-github-app-token@0f859bf9e69e887678d5bbfbee594437cb440ffe # v2.1.0
2424
with:
2525
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2626
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,22 @@
44

55
### Fixes
66

7+
- Experimental _Structured Logs_:
8+
- Remove `IDisposable` from `SentryStructuredLogger`. Disposal is intended through the owning `IHub` instance. ([#4424](https://github.com/getsentry/sentry-dotnet/pull/4424))
9+
- Ensure all buffered logs are sent to Sentry when the application terminates unexpectedly. ([#4425](https://github.com/getsentry/sentry-dotnet/pull/4425))
10+
11+
## 5.14.1
12+
13+
### Fixes
14+
715
- Crontabs now support day names (MON-SUN) and allow step values and ranges to be combined ([#4407](https://github.com/getsentry/sentry-dotnet/pull/4407))
816
- Ensure the correct Sentry Cocoa SDK framework version is used on iOS ([#4411](https://github.com/getsentry/sentry-dotnet/pull/4411))
917

1018
### Dependencies
1119

12-
- Bump CLI from v2.50.2 to v2.51.1 ([#4419](https://github.com/getsentry/sentry-dotnet/pull/4419), [#4435](https://github.com/getsentry/sentry-dotnet/pull/4435))
13-
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2511)
14-
- [diff](https://github.com/getsentry/sentry-cli/compare/2.50.2...2.51.1)
20+
- Bump CLI from v2.50.2 to v2.52.0 ([#4419](https://github.com/getsentry/sentry-dotnet/pull/4419), [#4435](https://github.com/getsentry/sentry-dotnet/pull/4435), [#4444](https://github.com/getsentry/sentry-dotnet/pull/4444))
21+
- [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2520)
22+
- [diff](https://github.com/getsentry/sentry-cli/compare/2.50.2...2.52.0)
1523

1624
## 5.14.0
1725

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<VersionPrefix>5.14.0</VersionPrefix>
4+
<VersionPrefix>5.14.1</VersionPrefix>
55
<LangVersion>13</LangVersion>
66
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -86,7 +86,7 @@
8686

8787
<!-- Set the version and local path for Sentry CLI (downloaded in the restore phase of Sentry.csproj) -->
8888
<PropertyGroup Condition="'$(SolutionName)' != 'Sentry.Unity'">
89-
<SentryCLIVersion>2.51.1</SentryCLIVersion>
89+
<SentryCLIVersion>2.52.0</SentryCLIVersion>
9090
<SentryCLIDirectory>$(MSBuildThisFileDirectory)tools\sentry-cli\$(SentryCLIVersion)\</SentryCLIDirectory>
9191
</PropertyGroup>
9292

src/Sentry/BuiltInSystemDiagnosticsMeters.cs

Lines changed: 0 additions & 249 deletions
This file was deleted.

src/Sentry/ExperimentalMetricsOptions.cs

Lines changed: 0 additions & 61 deletions
This file was deleted.

src/Sentry/Internal/DefaultSentryStructuredLogger.cs

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace Sentry.Internal;
55

6-
internal sealed class DefaultSentryStructuredLogger : SentryStructuredLogger
6+
internal sealed class DefaultSentryStructuredLogger : SentryStructuredLogger, IDisposable
77
{
88
private readonly IHub _hub;
99
private readonly SentryOptions _options;
@@ -105,13 +105,8 @@ protected internal override void Flush()
105105
}
106106

107107
/// <inheritdoc />
108-
protected override void Dispose(bool disposing)
108+
public void Dispose()
109109
{
110-
if (disposing)
111-
{
112-
_batchProcessor.Dispose();
113-
}
114-
115-
base.Dispose(disposing);
110+
_batchProcessor.Dispose();
116111
}
117112
}

0 commit comments

Comments
 (0)