Skip to content

chore(deps): update Java SDK to v8.53.0 - #5484

Open
github-actions[bot] wants to merge 2 commits into
mainfrom
deps/scripts/update-java.ps1
Open

chore(deps): update Java SDK to v8.53.0#5484
github-actions[bot] wants to merge 2 commits into
mainfrom
deps/scripts/update-java.ps1

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

Bumps scripts/update-java.ps1 from 8.52.0 to 8.53.0.

Auto-generated by a dependency updater.

Changelog

8.53.0

Features

  • Allow child spans to use explicit start timestamps through ISpan (#5929)
  • Make ISpan.startChild overloads with SpanOptions public (#5927)

Improvements

  • Remove ApiStatus.Experimental annotation from SentrySQLiteDriver (#5938)

Fixes

  • Clear contexts when calling Scope.clear() (#5902)
  • Preserve custom Throwable identities when R8 optimizes Android apps (#5881)
  • Report the correct cpu usage for the first performance sample of a transaction, which was measured against the time since device boot (#5926)
  • Prevent an ANR when the Session Replay video encoder gets stuck (#5842)
    • Some hardware encoders never signal end-of-stream, which made the replay worker spin forever while holding the encoder lock. The app's lifecycle callbacks then blocked on that lock and the app froze until the system killed it. The encoder now gives up instead of spinning, and closing the replay cache no longer waits indefinitely for a wedged encoder.

Performance

  • Read the clock once per performance collection round instead of once per in-flight transaction (#5934)
  • Reduce allocations while collecting cpu usage during transactions by reading the process cpu time via Process.getElapsedCpuTime() instead of parsing /proc/self/stat (33.6kB to 16 bytes per sample on a Pixel 3) (#5926)
  • Store performance measurements as primitives, removing a boxed allocation per measurement per performance sample (#5935)

Dependencies

@github-actions github-actions Bot added the Dependencies Pull requests that update a dependency file label Aug 13, 2026
@bruno-garcia
bruno-garcia force-pushed the deps/scripts/update-java.ps1 branch from 242a4d9 to 7ffcc22 Compare August 13, 2026 03:42
@github-actions github-actions Bot added the risk: medium PR risk score: medium label Aug 13, 2026
@codecov

codecov Bot commented Aug 13, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 74.74%. Comparing base (4d46e68) to head (c29c83f).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #5484   +/-   ##
=======================================
  Coverage   74.73%   74.74%           
=======================================
  Files         513      513           
  Lines       18744    18744           
  Branches     3666     3666           
=======================================
+ Hits        14009    14010    +1     
+ Misses       3863     3861    -2     
- Partials      872      873    +1     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Java SDK 8.53.0 moved startChild(String, String, SentryDate) off ITransaction
and onto ISpan as a default method. The binding generator surfaces inherited
default methods on derived interfaces as explicit interface implementations,
but emits the qualifier without a global:: prefix:

    global::Sentry.JavaSdk.ISpan? Sentry.JavaSdk.ISpan.StartChild (...)

Inside the Sentry.JavaSdk namespace `Sentry` binds to the io.sentry.Sentry
class rather than the namespace, so ITransaction failed to compile with
CS0426/CS0538. We don't bind to any startChild overload, so remove the default
method from the generated API.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
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 risk: medium PR risk score: medium

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants