From 0498094db6a14a2264927d212d61d5c3e140fdb2 Mon Sep 17 00:00:00 2001 From: Alexander Dinauer Date: Mon, 3 Feb 2025 16:23:16 +0100 Subject: [PATCH 1/4] Improve v8 changelog --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3803bc2a7e..05a8668bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -69,7 +69,11 @@ Version 8 of the Sentry Android/Java SDK brings a variety of features and fixes. - New `Scope` types have been introduced, see "Behavioural Changes" for more details. - Lifecycle tokens have been introduced to manage `Scope` lifecycle, see "Behavioural Changes" for more details. - Bumping `minSdk` level to 21 (Android 5.0) -- Our `sentry-opentelemetry-agent` has been improved and now works in combination with the rest of Sentry. You may now mix and match OpenTelemetry and Sentry API for instrumenting your application. +- Our `sentry-opentelemetry-agent` has been improved and now works in combination with the rest of Sentry. You may now combine OpenTelemetry and Sentry for instrumenting your application. + - You may now use both OpenTelemetry SDK and Sentry SDK to capture transactions and spans. They can also be mixed and end up on the same transaction. + - OpenTelemetry extends the Sentry SDK by adding spans for numerous integrations, like Ktor, {TODO more} and MongoDB. Please check [the OpenTelemetry GitHub repository](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation) for a full list. + - OpenTelemetry allows propagating trace information from and to additional libraries, that Sentry did not support before. {TODO examples} + - OpenTelemetry also has broader support for propagating the Sentry `Scopes` through reactive libraries like {TODO examples} - The SDK is now compatible with Spring Boot 3.4 - We now support GraphQL v22 (`sentry-graphql-22`) - Metrics have been removed From 8f170825c1fc9abff6bdeca74b20b74670d97e46 Mon Sep 17 00:00:00 2001 From: Alexander Dinauer Date: Fri, 7 Feb 2025 15:09:12 +0100 Subject: [PATCH 2/4] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 05a8668bfc..47415b1941 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -71,7 +71,7 @@ Version 8 of the Sentry Android/Java SDK brings a variety of features and fixes. - Bumping `minSdk` level to 21 (Android 5.0) - Our `sentry-opentelemetry-agent` has been improved and now works in combination with the rest of Sentry. You may now combine OpenTelemetry and Sentry for instrumenting your application. - You may now use both OpenTelemetry SDK and Sentry SDK to capture transactions and spans. They can also be mixed and end up on the same transaction. - - OpenTelemetry extends the Sentry SDK by adding spans for numerous integrations, like Ktor, {TODO more} and MongoDB. Please check [the OpenTelemetry GitHub repository](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation) for a full list. + - OpenTelemetry extends the Sentry SDK by adding spans for numerous integrations, like Ktor, Vert.x and MongoDB. Please check [the OpenTelemetry GitHub repository](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation) for a full list. - OpenTelemetry allows propagating trace information from and to additional libraries, that Sentry did not support before. {TODO examples} - OpenTelemetry also has broader support for propagating the Sentry `Scopes` through reactive libraries like {TODO examples} - The SDK is now compatible with Spring Boot 3.4 From e3b5e63ff718d6ada119ec3c4cf0e23f58ecb260 Mon Sep 17 00:00:00 2001 From: Alexander Dinauer Date: Tue, 11 Feb 2025 16:34:13 +0100 Subject: [PATCH 3/4] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47415b1941..ea1a7f671d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -72,7 +72,7 @@ Version 8 of the Sentry Android/Java SDK brings a variety of features and fixes. - Our `sentry-opentelemetry-agent` has been improved and now works in combination with the rest of Sentry. You may now combine OpenTelemetry and Sentry for instrumenting your application. - You may now use both OpenTelemetry SDK and Sentry SDK to capture transactions and spans. They can also be mixed and end up on the same transaction. - OpenTelemetry extends the Sentry SDK by adding spans for numerous integrations, like Ktor, Vert.x and MongoDB. Please check [the OpenTelemetry GitHub repository](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation) for a full list. - - OpenTelemetry allows propagating trace information from and to additional libraries, that Sentry did not support before. {TODO examples} + - OpenTelemetry allows propagating trace information from and to additional libraries, that Sentry did not support before, for example gRPC. - OpenTelemetry also has broader support for propagating the Sentry `Scopes` through reactive libraries like {TODO examples} - The SDK is now compatible with Spring Boot 3.4 - We now support GraphQL v22 (`sentry-graphql-22`) From 2633f2f94726822a172324bc719a665d21df46ca Mon Sep 17 00:00:00 2001 From: Alexander Dinauer Date: Mon, 17 Feb 2025 16:09:55 +0100 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1a7f671d..99dbf2d863 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -73,7 +73,7 @@ Version 8 of the Sentry Android/Java SDK brings a variety of features and fixes. - You may now use both OpenTelemetry SDK and Sentry SDK to capture transactions and spans. They can also be mixed and end up on the same transaction. - OpenTelemetry extends the Sentry SDK by adding spans for numerous integrations, like Ktor, Vert.x and MongoDB. Please check [the OpenTelemetry GitHub repository](https://github.com/open-telemetry/opentelemetry-java-instrumentation/tree/main/instrumentation) for a full list. - OpenTelemetry allows propagating trace information from and to additional libraries, that Sentry did not support before, for example gRPC. - - OpenTelemetry also has broader support for propagating the Sentry `Scopes` through reactive libraries like {TODO examples} + - OpenTelemetry also has broader support for propagating the Sentry `Scopes` through reactive libraries like RxJava. - The SDK is now compatible with Spring Boot 3.4 - We now support GraphQL v22 (`sentry-graphql-22`) - Metrics have been removed