Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## 8.24.0-alpha.2
## Unreleased

### Features

Expand Down Expand Up @@ -37,6 +37,8 @@
- Session Replay: Avoid deadlock when pausing replay if no connection ([#4788](https://github.com/getsentry/sentry-java/pull/4788))
- Session Replay: Fix capturing roots with no windows ([#4805](https://github.com/getsentry/sentry-java/pull/4805))
- Session Replay: Fix `java.lang.IllegalArgumentException: width and height must be > 0` ([#4805](https://github.com/getsentry/sentry-java/pull/4805))
- Handle `NoOpScopes` in `Context` when starting a span through OpenTelemetry ([#4823](https://github.com/getsentry/sentry-java/pull/4823))
- This fixes "java.lang.IllegalArgumentException: The DSN is required" when combining WebFlux and OpenTelemetry
- Session Replay: Do not use recycled screenshots for masking ([#4790](https://github.com/getsentry/sentry-java/pull/4790))
- This fixes native crashes seen in `Canvas.<init>`/`ScreenshotRecorder.capture`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public void onStart(final @NotNull Context parentContext, final @NotNull ReadWri

private IScopes forkScopes(final @NotNull Context context, final @NotNull SpanData span) {
final @Nullable IScopes scopesFromContext = context.get(SENTRY_SCOPES_KEY);
if (scopesFromContext == null) {
if (scopesFromContext == null || scopesFromContext.isNoOp()) {
return Sentry.forkedRootScopes("spanprocessor.new");
}
if (isRootSpan(span)) {
Expand Down
Loading