Skip to content

Commit 190459d

Browse files
committed
Merge branch 'main' into feat/w3c-trace-header
2 parents 48b2008 + 85d7417 commit 190459d

File tree

3 files changed

+264
-377
lines changed

3 files changed

+264
-377
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
- Add support for Spring Boot 4 and Spring 7 ([#4601](https://github.com/getsentry/sentry-java/pull/4601))
88
- NOTE: Our `sentry-opentelemetry-agentless-spring` is not working yet for Spring Boot 4. Please use `sentry-opentelemetry-agent` until OpenTelemetry has support for Spring Boot 4.
99
- Replace `UUIDGenerator` implementation with Apache licensed code ([#4662](https://github.com/getsentry/sentry-java/pull/4662))
10+
- Replace `Random` implementation with MIT licensed code ([#4664](https://github.com/getsentry/sentry-java/pull/4664))
1011
- Add support for w3c traceparent header ([#4671](https://github.com/getsentry/sentry-java/pull/4671))
1112
- This feature is disabled by default. If enabled, outgoing requests will include the w3c `traceparent` header.
1213
- See https://develop.sentry.dev/sdk/telemetry/traces/distributed-tracing/#w3c-trace-context-header for more details.

sentry/api/sentry.api

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6995,15 +6995,22 @@ public final class io/sentry/util/PropagationTargetsUtils {
69956995

69966996
public final class io/sentry/util/Random : java/io/Serializable {
69976997
public fun <init> ()V
6998-
public fun <init> (J)V
6998+
public fun <init> (JJ)V
69996999
public fun nextBoolean ()Z
7000+
public fun nextBoolean (D)Z
7001+
public fun nextByte ()B
70007002
public fun nextBytes ([B)V
7003+
public fun nextChar ()C
70017004
public fun nextDouble ()D
7005+
public fun nextDouble (ZZ)D
70027006
public fun nextFloat ()F
7007+
public fun nextFloat (ZZ)F
70037008
public fun nextInt ()I
70047009
public fun nextInt (I)I
70057010
public fun nextLong ()J
7006-
public fun setSeed (J)V
7011+
public fun nextLong (J)J
7012+
public fun nextShort ()S
7013+
public fun setSeed (JJ)V
70077014
}
70087015

70097016
public final class io/sentry/util/SampleRateUtils {

0 commit comments

Comments
 (0)