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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Add support for Spring Boot 4 and Spring 7 ([#4601](https://github.com/getsentry/sentry-java/pull/4601))
- 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.
- Replace `UUIDGenerator` implementation with Apache licensed code ([#4662](https://github.com/getsentry/sentry-java/pull/4662))
- Replace `Random` implementation with MIT licensed code ([#4664](https://github.com/getsentry/sentry-java/pull/4664))

## 8.20.0

Expand Down
11 changes: 9 additions & 2 deletions sentry/api/sentry.api
Original file line number Diff line number Diff line change
Expand Up @@ -6986,15 +6986,22 @@ public final class io/sentry/util/PropagationTargetsUtils {

public final class io/sentry/util/Random : java/io/Serializable {
public fun <init> ()V
public fun <init> (J)V
public fun <init> (JJ)V
public fun nextBoolean ()Z
public fun nextBoolean (D)Z
public fun nextByte ()B
public fun nextBytes ([B)V
public fun nextChar ()C
public fun nextDouble ()D
public fun nextDouble (ZZ)D
public fun nextFloat ()F
public fun nextFloat (ZZ)F
public fun nextInt ()I
public fun nextInt (I)I
public fun nextLong ()J
public fun setSeed (J)V
public fun nextLong (J)J
public fun nextShort ()S
public fun setSeed (JJ)V
}

public final class io/sentry/util/SampleRateUtils {
Expand Down
Loading
Loading