Skip to content

Conversation

adinauer
Copy link
Member

@adinauer adinauer commented Aug 4, 2025

📜 Description

  • Bump Kotlin version to the minimum one supported by Spring
  • Some classes were moved around in the new Spring/Boot version, use them
  • Rename .api files

💡 Motivation and Context

💚 How did you test it?

📝 Checklist

  • I added tests to verify the changes.
  • No new PII added or SDK only sends newly added PII if sendDefaultPII is enabled.
  • I updated the docs if needed.
  • I updated the wizard if needed.
  • Review from the native team if needed.
  • No breaking change or entry added to the changelog.
  • No breaking change for hybrid SDKs or communicated to hybrid SDKs.

🔮 Next steps

Copy link
Member Author

adinauer commented Aug 4, 2025

Copy link
Contributor

github-actions bot commented Aug 4, 2025

Fails
🚫 Please consider adding a changelog entry for the next release.

Instructions and example for changelog

Please add an entry to CHANGELOG.md to the "Unreleased" section. Make sure the entry includes this PR's number.

Example:

## Unreleased

- Fix Spring 7 and Spring Boot 4 modules ([#4602](https://github.com/getsentry/sentry-java/pull/4602))

If none of the above apply, you can opt out of this check by adding #skip-changelog to the PR description.

Generated by 🚫 dangerJS against 7887992

Copy link
Contributor

github-actions bot commented Aug 4, 2025

Performance metrics 🚀

  Plain With Sentry Diff
Startup time 476.22 ms 553.04 ms 76.82 ms
Size 1.58 MiB 2.09 MiB 521.83 KiB

Baseline results on branch: 08-04-add_new_modules_for_spring_7_and_spring_boot_4

Startup times

Revision Plain With Sentry Diff
b2c2d0b 414.00 ms 447.42 ms 33.42 ms

App size

Revision Plain With Sentry Diff
b2c2d0b 1.58 MiB 2.09 MiB 521.57 KiB

Previous results on branch: 08-04-fix_spring_7_and_spring_boot_4_modules

Startup times

Revision Plain With Sentry Diff
ecb0016 432.46 ms 484.08 ms 51.62 ms

App size

Revision Plain With Sentry Diff
ecb0016 1.58 MiB 2.09 MiB 521.56 KiB

@adinauer adinauer force-pushed the 08-04-fix_spring_7_and_spring_boot_4_modules branch from c7988b5 to a5d68ca Compare August 6, 2025 14:34
@adinauer adinauer mentioned this pull request Aug 6, 2025
7 tasks
@adinauer adinauer marked this pull request as ready for review August 8, 2025 10:02
@adinauer adinauer merged commit ddeada2 into 08-04-add_new_modules_for_spring_7_and_spring_boot_4 Aug 8, 2025
33 of 70 checks passed
@adinauer adinauer deleted the 08-04-fix_spring_7_and_spring_boot_4_modules branch August 8, 2025 10:02
@@ -111,7 +111,7 @@ private void configureScope(
final @NotNull IScopes scopes, final @NotNull HttpServletRequest request) {
if (scopes.getOptions().isSendDefaultPii()
&& qualifiesForCaching(request, scopes.getOptions().getMaxRequestBodySize())) {
return new ContentCachingRequestWrapper(request);
return new ContentCachingRequestWrapper(request, 0);
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Request Body Caching Limit Set Incorrectly

The ContentCachingRequestWrapper constructor now hardcodes 0 as the cache limit. This likely disables or severely restricts request body caching, overriding the intended behavior determined by qualifiesForCaching and the maxRequestBodySize configuration (e.g., 1000 bytes for SMALL, 10000 for MEDIUM).

Fix in Cursor Fix in Web

adinauer added a commit that referenced this pull request Aug 26, 2025
* Add new modules for Spring 7 and Spring Boot 4

* Fix Spring 7 and Spring Boot 4 modules (#4602)

* Attempt to fix kotlin 2.2 issue (#4603)

* Fix Spring 7 and Spring Boot 4 modules

* Attempt to fix kotlin 2.2 issue

* Second attempt to fix Kotlin 2.2 (#4610)

* Second attempt to fix Kotlin 2.2

* Format code

* Third attempt at fixing Kotlin 2.2 compat (#4613)

---------

Co-authored-by: Sentry Github Bot <[email protected]>

* Address compose-related issues

* Fix tests for Spring 7 and Spring Boot 4 (#4614)

* Second attempt to fix Kotlin 2.2

* Format code

* Third attempt at fixing Kotlin 2.2 compat

* Fix tests for Spring 7 and Spring Boot 4

* Move Spring 7 and Spring Boot 4 packages (#4615)

* Move Spring 7 and Spring Boot 4 packages

* Fix class not found due to OTel not supporting spring boot 4 yet (#4616)

* Format code

* some fixes

* change kotlin 1.8 to 1.9 and some cleanup

* ignore warnings about api level that is not relevant

* fix optional dependencies in SentryAutoConfiguration

* Update trace origin

* Remove duplicate e2e test config

* Update Strings for Spring 7 and Spring Boot 4

* Disable Spring Boot 4 agentless e2e tests for now

---------

Co-authored-by: Sentry Github Bot <[email protected]>

---------

Co-authored-by: Sentry Github Bot <[email protected]>
Co-authored-by: markushi <[email protected]>

* changelog

* fix ci

* add ignored span origins for Spring 7 and Spring Boot 4

* move changelog

* Example how to fix version mismatch (#4642)

* Fix ignored span origin

* move changelog

---------

Co-authored-by: Sentry Github Bot <[email protected]>
Co-authored-by: markushi <[email protected]>
Co-authored-by: Alex Alderman Webb <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants