Skip to content

chore(deps): bump io.sentry:sentry-spring-boot-starter-jakarta from 6.23.0 to 8.29.0 in /app/server#41487

Closed
dependabot[bot] wants to merge 1 commit intoreleasefrom
dependabot/maven/app/server/io.sentry-sentry-spring-boot-starter-jakarta-8.29.0
Closed

chore(deps): bump io.sentry:sentry-spring-boot-starter-jakarta from 6.23.0 to 8.29.0 in /app/server#41487
dependabot[bot] wants to merge 1 commit intoreleasefrom
dependabot/maven/app/server/io.sentry-sentry-spring-boot-starter-jakarta-8.29.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Dec 29, 2025

Bumps io.sentry:sentry-spring-boot-starter-jakarta from 6.23.0 to 8.29.0.

Release notes

Sourced from io.sentry:sentry-spring-boot-starter-jakarta's releases.

8.29.0

Fixes

  • Support serialization of primitive arrays (boolean[], byte[], short[], char[], int[], long[], float[], double[]) (#4968)
  • Session Replay: Improve network body parsing and truncation handling (#4958)

Internal

  • Support metric envelope item type (#4956)

8.28.0

Features

  • Android: Flush logs when app enters background (#4951)
  • Add option to capture additional OkHttp network request/response details in session replays (#4919)
    • Depends on SentryOkHttpInterceptor to intercept the request and extract request/response bodies
    • To enable, add url regexes via the io.sentry.session-replay.network-detail-allow-urls metadata tag in AndroidManifest (code sample)
      • Or you can manually specify SentryReplayOptions via SentryAndroid#init:
        (Make sure you disable the auto init via manifest meta-data: io.sentry.auto-init=false)
SentryAndroid.init(
    this,
    options -> {
      // options.dsn = "https://examplePublicKey@o0.ingest.sentry.io/0"
      // options.sessionReplay.sessionSampleRate = 1.0
      // options.sessionReplay.onErrorSampleRate = 1.0
      // ..
  options.sessionReplay.networkDetailAllowUrls = listOf(".*")
  options.sessionReplay.networkDetailDenyUrls = listOf(".*deny.*")
  options.sessionReplay.networkRequestHeaders = listOf("Authorization", "X-Custom-Header", "X-Test-Request")
  options.sessionReplay.networkResponseHeaders = listOf("X-Response-Time", "X-Cache-Status", "X-Test-Response")
});

SentryAndroid.init(
    this,
    options -> {
        options.getSessionReplay().setNetworkDetailAllowUrls(Arrays.asList(".*"));
        options.getSessionReplay().setNetworkDetailDenyUrls(Arrays.asList(".*deny.*"));
</tr></table> 

... (truncated)

Changelog

Sourced from io.sentry:sentry-spring-boot-starter-jakarta's changelog.

8.29.0

Fixes

  • Support serialization of primitive arrays (boolean[], byte[], short[], char[], int[], long[], float[], double[]) (#4968)
  • Session Replay: Improve network body parsing and truncation handling (#4958)

Internal

  • Support metric envelope item type (#4956)

8.28.0

Features

  • Android: Flush logs when app enters background (#4951)
  • Add option to capture additional OkHttp network request/response details in session replays (#4919)
    • Depends on SentryOkHttpInterceptor to intercept the request and extract request/response bodies
    • To enable, add url regexes via the io.sentry.session-replay.network-detail-allow-urls metadata tag in AndroidManifest (code sample)
      • Or you can manually specify SentryReplayOptions via SentryAndroid#init:
        (Make sure you disable the auto init via manifest meta-data: io.sentry.auto-init=false)
SentryAndroid.init(
    this,
    options -> {
      // options.dsn = "https://examplePublicKey@o0.ingest.sentry.io/0"
      // options.sessionReplay.sessionSampleRate = 1.0
      // options.sessionReplay.onErrorSampleRate = 1.0
      // ..
  options.sessionReplay.networkDetailAllowUrls = listOf(&quot;.*&quot;)
  options.sessionReplay.networkDetailDenyUrls = listOf(&quot;.*deny.*&quot;)
  options.sessionReplay.networkRequestHeaders = listOf(&quot;Authorization&quot;, &quot;X-Custom-Header&quot;, &quot;X-Test-Request&quot;)
  options.sessionReplay.networkResponseHeaders = listOf(&quot;X-Response-Time&quot;, &quot;X-Cache-Status&quot;, &quot;X-Test-Response&quot;)
});

SentryAndroid.init(
    this,
    options -> {
</tr></table> 

... (truncated)

Commits
  • 216800f release: 8.29.0
  • 56d8c1e fix(serialization): Support primitive array serialization (#4968)
  • 106e5aa build(deps): bump actions/upload-artifact from 5 to 6 (#4965)
  • 5b66efd build(deps): bump actions/create-github-app-token from 2.1.4 to 2.2.1 (#4954)
  • b01b11a fix: improve network body parsing and truncation handling (#4958)
  • 6edfca2 build(deps): bump urllib3 in the pip group across 1 directory (#4952)
  • 91bb874 feat(envelope-item): Support metric type (#4956)
  • dba088c Merge branch 'release/8.28.0'
  • dd38947 release: 8.28.0
  • 2ab9d50 feat(android): Add log flushing on app backgrounding (#4951)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Warning

Tests have not run on the HEAD 31c28d8 yet


Mon, 29 Dec 2025 23:18:40 UTC

Bumps [io.sentry:sentry-spring-boot-starter-jakarta](https://github.com/getsentry/sentry-java) from 6.23.0 to 8.29.0.
- [Release notes](https://github.com/getsentry/sentry-java/releases)
- [Changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-java@6.23.0...8.29.0)

---
updated-dependencies:
- dependency-name: io.sentry:sentry-spring-boot-starter-jakarta
  dependency-version: 8.29.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added Dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Dec 29, 2025
@dependabot dependabot bot added Dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Dec 29, 2025
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai bot commented Dec 29, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Copy Markdown

github-actions bot commented Jan 6, 2026

This PR has not seen activitiy for a while. It will be closed in 7 days unless further activity is detected.

@github-actions github-actions bot added the Stale label Jan 6, 2026
@github-actions
Copy link
Copy Markdown

This PR has been closed because of inactivity.

@github-actions github-actions bot closed this Jan 13, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Jan 13, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/maven/app/server/io.sentry-sentry-spring-boot-starter-jakarta-8.29.0 branch January 13, 2026 16:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dependencies Pull requests that update a dependency file java Pull requests that update Java code Stale

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants