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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
- `opentelemetry-semconv` to `1.34.0`
- We are now configuring OpenTelemetry to still behave the same way it did before for span names it generates in GraphQL auto instrumentation ([#4537](https://github.com/getsentry/sentry-java/pull/4537))

### Fixes

- Use Spring Boot Starter 3 in `sentry-spring-boot-starter-jakarta` ([#4545](https://github.com/getsentry/sentry-java/pull/4545))
- While refactoring our dependency management, we accidentally added Spring Boot 2 and Spring Boot Starter 2 as dependencies of `sentry-spring-boot-starter-jakarta`, which is intended for Spring Boot 3.
- Now, the correct dependencies (Spring Boot 3 and Spring Boot Starter 3) are being added.

## 8.16.1-alpha.2

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions sentry-spring-boot-starter-jakarta/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
jacoco
alias(libs.plugins.errorprone)
alias(libs.plugins.gradle.versions)
alias(libs.plugins.springboot2) apply false
alias(libs.plugins.springboot3) apply false
}

configure<JavaPluginExtension> {
Expand All @@ -24,7 +24,7 @@ tasks.withType<KotlinCompile>().configureEach {

dependencies {
api(projects.sentrySpringBootJakarta)
api(libs.springboot.starter)
api(libs.springboot3.starter)

annotationProcessor(platform(SpringBootPlugin.BOM_COORDINATES))
annotationProcessor(Config.AnnotationProcessors.springBootAutoConfigure)
Expand Down
Loading