Releases: getsentry/sentry-java
Releases · getsentry/sentry-java
8.0.0-rc.4
7.20.0 (Stable)
Features
- Session Replay GA (#4017)
To enable Replay use the sessionReplay.sessionSampleRate or sessionReplay.onErrorSampleRate options.
import io.sentry.SentryReplayOptions
import io.sentry.android.core.SentryAndroid
SentryAndroid.init(context) { options ->
options.sessionReplay.sessionSampleRate = 1.0
options.sessionReplay.onErrorSampleRate = 1.0
// To change default redaction behavior (defaults to true)
options.sessionReplay.redactAllImages = true
options.sessionReplay.redactAllText = true
// To change quality of the recording (defaults to MEDIUM)
options.sessionReplay.quality = SentryReplayOptions.SentryReplayQuality.MEDIUM // (LOW|MEDIUM|HIGH)
}To learn more about Session Replay, visit the documentation page: https://docs.sentry.io/platforms/android/session-replay/
Fixes
- Fix warm start detection (#3937)
- Session Replay: Reduce memory allocations, disk space consumption, and payload size (#4016)
- Session Replay: Do not try to encode corrupted frames multiple times (#4016)
Internal
- Session Replay: Allow overriding
SdkVersionfor replay events (#4014) - Session Replay: Send replay options as tags (#4015)
Breaking changes
- Session Replay options were moved from under
experimentalto the mainoptionsobject (#4017)
7.19.1
8.0.0-rc.3
Features
- Add
sentry-opentelemetry-agentless-springmodule (#4000)- This module can be added as a dependency when using Sentry with OpenTelemetry and Spring Boot but don't want to use our Agent. It takes care of configuring OpenTelemetry for use with Sentry.
- You may want to set
OTEL_LOGS_EXPORTER=none;OTEL_METRICS_EXPORTER=none;OTEL_TRACES_EXPORTER=noneenv vars to not have the log flooded with error messages regarding OpenTelemetry features we don't use.
- Add
sentry-opentelemetry-agentlessmodule (#3961)- This module can be added as a dependency when using Sentry with OpenTelemetry but don't want to use our Agent. It takes care of configuring OpenTelemetry for use with Sentry.
- To enable the auto configuration of it, please set
-Dotel.java.global-autoconfigure.enabled=trueon thejavacommand, when starting your application. - You may also want to set
OTEL_LOGS_EXPORTER=none;OTEL_METRICS_EXPORTER=none;OTEL_TRACES_EXPORTER=noneenv vars to not have the log flooded with error messages regarding OpenTelemetry features we don't use.
OpenTelemetryUtil.applyOpenTelemetryOptionsnow takes an enum instead of a boolean for its mode- Add
openTelemetryModeoption (#3994)- It defaults to
AUTOmeaning the SDK will figure out how to best configure itself for use with OpenTelemetry - Use of OpenTelemetry can also be disabled completely by setting it to
OFF(#3995)- In this case even if OpenTelemetry is present, the Sentry SDK will not use it
- Use
AGENTwhen usingsentry-opentelemetry-agent - Use
AGENTLESSwhen usingsentry-opentelemetry-agentless - Use
AGENTLESS_SPRINGwhen usingsentry-opentelemetry-agentless-spring
- It defaults to
- Add
scopeBindingModetoSpanOptions(#4004)- This setting only affects the SDK when used with OpenTelemetry.
- Defaults to
AUTOmeaning the SDK will decide whether the span should be bound to the current scope. It will not bind transactions to scope usingAUTO, it will only bind spans where the parent span is on the current scope. ONsets the new span on the current scope.OFFdoes not set the new span on the scope.
Fixes
- Replace deprecated
SimpleInstrumentationwithSimplePerformantInstrumentationfor graphql 22 (#3974) - Cache requests for Spring using Springs
ContentCachingRequestWrapperinstead of our own Wrapper to also cache parameters (#3641)- Previously only the body was cached which could lead to problems in the FilterChain as Request parameters were not available
- We now hold a strong reference to the underlying OpenTelemetry span when it is created through Sentry API (#3997)
- This keeps it from being garbage collected too early
- Close backpressure monitor on SDK shutdown (#3998)
- Due to the backpressure monitor rescheduling a task to run every 10s, it very likely caused shutdown to wait the full
shutdownTimeoutMillis(defaulting to 2s) instead of being able to terminate immediately
- Due to the backpressure monitor rescheduling a task to run every 10s, it very likely caused shutdown to wait the full
- Improve ignored check performance (#3992)
- Checking if a span origin, a transaction or a checkIn should be ignored is now faster
7.19.0
Fixes
- Session Replay: fix various crashes and issues (#3970)
- Fix
IndexOutOfBoundsExceptionwhen tracking window changes - Fix
IllegalStateExceptionwhen adding/removing draw listener for a dead view - Fix
ConcurrentModificationExceptionwhen registering window listeners and stoppingWindowRecorder/GestureRecorder
- Fix
- Add support for setting sentry-native handler_strategy (#3671)
Dependencies
8.0.0-rc.2
Fixes
- Fix incoming defer sampling decision
sentry-traceheader (#3942)- A
sentry-traceheader that only contains trace ID and span ID but no sampled flag (-1,-0suffix) means the receiving system can make its own sampling decision - When generating
sentry-traceheader fromPropagationContextwe now copy thesampledflag. - In
TransactionContext.fromPropagationContextwhen there is no parent sampling decision, keep the decisionnullso a new sampling decision is made instead of defaulting tofalse
- A
- Defer sampling decision by setting
sampledtonullinPropagationContextwhen using OpenTelemetry in case of an incoming defer samplingsentry-traceheader. (#3945) - Build
PropagationContextfromSamplingDecisionmade bySentrySamplerinstead of parsing headers and potentially ignoring a sampling decision in case asentry-traceheader comes in with deferred sampling decision. (#3947) - Let OpenTelemetry handle extracting and injecting tracing information (#3953)
- Our integrations no longer call
.continueTraceand also do not inject tracing headers if the integration has been added toignoredSpanOrigins
- Our integrations no longer call
- Changes up to
7.18.1have been merged and are now included as well
8.0.0-rc.1
Features
- Extract OpenTelemetry
URL_PATHspan attribute into description (#3933) - Replace OpenTelemetry
ContextStoragewrapper withContextStorageProvider(#3938)- The wrapper had to be put in place before any call to
ContextwhereasContextStorageProvideris automatically invoked at the correct time.
- The wrapper had to be put in place before any call to
Dependencies
- Bump OpenTelemetry to 1.44.1, OpenTelemetry Java Agent to 2.10.0 and Semantic Conventions to 1.28.0 (#3935)
7.18.1 (Stable)
Fixes
- Fix testTag not working for Jetpack Compose user interaction tracking (#3878)
8.0.0-beta.3
Features
- Send
otel.kindto Sentry (#3907) - Allow passing
environmenttoCheckinUtils.withCheckIn(3889) - Changes up to
7.18.0have been merged and are now included as well
Fixes
- Mark
DiskFlushNotificationhint flushed when rate limited (#3892)- Our
UncaughtExceptionHandlerIntegrationwaited for the full flush timeout duration (default 15s) when rate limited.
- Our
- Do not replace
opwith auto generated content for OpenTelemetry spans with span kindINTERNAL(#3906)
Behavioural Changes
- Send file name and path only if isSendDefaultPii is true (#3919)
7.18.0 (Stable)
Features
- Android 15: Add support for 16KB page sizes (#3620)
- See https://developer.android.com/guide/practices/page-sizes for more details
- Session Replay: Add
beforeSendReplaycallback (#3855) - Session Replay: Add support for masking/unmasking view containers (#3881)
Fixes
- Avoid collecting normal frames (#3782)
- Ensure android initialization process continues even if options configuration block throws an exception (#3887)
- Do not report parsing ANR error when there are no threads (#3888)
- This should significantly reduce the number of events with message "Sentry Android SDK failed to parse system thread dump..." reported
- Session Replay: Disable replay in session mode when rate limit is active (#3854)