Skip to content

Commit f0eb0a2

Browse files
authored
options.tracePropagationTargets should not be internal (#4170)
* options.tracePropagationTargets should not be internal * changelog
1 parent 46cb541 commit f0eb0a2

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### Fixes
6+
7+
- `SentryOptions.setTracePropagationTargets` is no longer marked internal ([#4170](https://github.com/getsentry/sentry-java/pull/4170))
8+
59
### Behavioural Changes
610

711
- 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))

sentry/src/main/java/io/sentry/SentryOptions.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1845,7 +1845,6 @@ public void setProfilesSampleRate(final @Nullable Double profilesSampleRate) {
18451845
return tracePropagationTargets;
18461846
}
18471847

1848-
@ApiStatus.Internal
18491848
public void setTracePropagationTargets(final @Nullable List<String> tracePropagationTargets) {
18501849
if (tracePropagationTargets == null) {
18511850
this.tracePropagationTargets = null;

0 commit comments

Comments
 (0)