We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1de0b94 commit 175623cCopy full SHA for 175623c
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## Unreleased
4
5
+### Fixes
6
+
7
+- Workaround a .NET 8 NativeAOT crash on transaction finish. ([#2943](https://github.com/getsentry/sentry-dotnet/pull/2943))
8
9
### API breaking Changes
10
11
#### Changed APIs
src/Sentry/TransactionTracer.cs
@@ -165,7 +165,7 @@ public IReadOnlyList<string> Fingerprint
165
/// <inheritdoc />
166
public IReadOnlyDictionary<string, string> Tags => _tags;
167
168
- private readonly ConcurrentBag<SpanTracer> _spans = new();
+ private readonly ConcurrentBag<ISpan> _spans = new();
169
170
171
public IReadOnlyCollection<ISpan> Spans => _spans;
0 commit comments