chore(deps): update Java SDK to v8.4.0 #2066
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps modules/sentry-java from 8.3.0 to 8.4.0.
Auto-generated by a dependency updater.
Changelog
8.4.0
Fixes
null
on many APIs instead of expecting a nonnull
value (#4245)setTag
,setData
,setExtra
,setContext
previously caused aNullPointerException
when invoked with eithernull
key or value.null
is passed and no longer throwsNullPointerException
null
is passed, the SDK willnull
key is passed, returningnull
for non void methodsnull
Request
by subsequent interceptors won't be consideredThrowable
to Sentry as it's not availableOpenTelemetryAppender
, please consider upgrading to v2SamplingContext
now has agetAttribute
method that grants access to OpenTelemetry span attributes via their String key (e.g.http.request.method
)http.client
for spanop
if not a root span (#4257)CopyOnWriteArrayList
(#4247)SentryTracer.getLatestActiveSpan
which would have previously copied all child span references. This may have causedOutOfMemoryError
on certain devices due to high frequency of calling the method.Features
openTelemetrySpan.recordException
). We can now send those to Sentry as errors.capture-open-telemetry-events=true
insentry.properties
to enable itsentry.capture-open-telemetry-events=true
in Springsapplication.properties
to enable itsentry.captureOpenTelemetryEvents: true
in Springsapplication.yml
to enable itBehavioural Changes
java.net.URI
for parsing URLs inUrlUtils
(#4210)Internal
Dependencies