diff --git a/CHANGELOG.md b/CHANGELOG.md index aed6b1efc9..48a37ffdcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Fixes + +- `SentryOptions.setTracePropagationTargets` is no longer marked internal ([#4170](https://github.com/getsentry/sentry-java/pull/4170)) + ### Behavioural Changes - The class `io.sentry.spring.jakarta.webflux.ReactorUtils` is now deprecated, please use `io.sentry.reactor.SentryReactorUtils` in the new `sentry-reactor` module instead ([#4155](https://github.com/getsentry/sentry-java/pull/4155)) diff --git a/sentry/src/main/java/io/sentry/SentryOptions.java b/sentry/src/main/java/io/sentry/SentryOptions.java index 79a0c188a1..384b097ee6 100644 --- a/sentry/src/main/java/io/sentry/SentryOptions.java +++ b/sentry/src/main/java/io/sentry/SentryOptions.java @@ -1845,7 +1845,6 @@ public void setProfilesSampleRate(final @Nullable Double profilesSampleRate) { return tracePropagationTargets; } - @ApiStatus.Internal public void setTracePropagationTargets(final @Nullable List tracePropagationTargets) { if (tracePropagationTargets == null) { this.tracePropagationTargets = null;