From 0209fc5cb6bc1d2a98d20f8fc32f6fc0d744e49b Mon Sep 17 00:00:00 2001 From: lcian Date: Tue, 9 Sep 2025 17:40:29 +0200 Subject: [PATCH 1/3] Remove internal API status from get/setDistinctId --- sentry/src/main/java/io/sentry/SentryOptions.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/sentry/src/main/java/io/sentry/SentryOptions.java b/sentry/src/main/java/io/sentry/SentryOptions.java index 419094067a5..88494986cee 100644 --- a/sentry/src/main/java/io/sentry/SentryOptions.java +++ b/sentry/src/main/java/io/sentry/SentryOptions.java @@ -1329,7 +1329,6 @@ public void setSessionTrackingIntervalMillis(long sessionTrackingIntervalMillis) * * @return the distinct Id */ - @ApiStatus.Internal public @Nullable String getDistinctId() { return distinctId; } @@ -1339,7 +1338,6 @@ public void setSessionTrackingIntervalMillis(long sessionTrackingIntervalMillis) * * @param distinctId the distinct Id */ - @ApiStatus.Internal public void setDistinctId(final @Nullable String distinctId) { this.distinctId = distinctId; } From e16353096562e90bf9eb7b9d7955e75650a6bb2b Mon Sep 17 00:00:00 2001 From: lcian Date: Tue, 9 Sep 2025 17:41:50 +0200 Subject: [PATCH 2/3] improve --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 686e61daa2c..a905469aa22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +### Improvements + +- Remove internal API status from get/setDistinctId ([#4708](https://github.com/getsentry/sentry-java/pull/4708)) + +## Unreleased + ### Fixes - Only set log template for logging integrations if formatted message differs from template ([#4682](https://github.com/getsentry/sentry-java/pull/4682)) From ede545ecb0784627800ec2cf89aceb458139d432 Mon Sep 17 00:00:00 2001 From: Lorenzo Cian Date: Tue, 9 Sep 2025 17:42:42 +0200 Subject: [PATCH 3/3] Update CHANGELOG.md --- CHANGELOG.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40ce4cee93d..6b6700c2a5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## Unreleased + +### Improvements + +- Remove internal API status from get/setDistinctId ([#4708](https://github.com/getsentry/sentry-java/pull/4708)) + ## 8.21.1 ### Fixes @@ -9,12 +15,6 @@ ## 8.21.0 -### Improvements - -- Remove internal API status from get/setDistinctId ([#4708](https://github.com/getsentry/sentry-java/pull/4708)) - -## Unreleased - ### Fixes - Only set log template for logging integrations if formatted message differs from template ([#4682](https://github.com/getsentry/sentry-java/pull/4682))