Skip to content
Merged
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
ed98d11
Various fixes to instrumentations running on the main thread (#4051)
romtsn Jan 16, 2025
e509503
Fix BroadcastReceivers (#4052)
romtsn Jan 16, 2025
0b511c9
Only provide {{auto}} ip-address if sendDefaultPii is enabled
markushi Jan 20, 2025
ef02e3a
Update changelog
markushi Jan 20, 2025
6381921
Reduce the number of IPC calls (#4058)
romtsn Jan 20, 2025
0126da6
release: 7.20.1
getsentry-bot Jan 20, 2025
3cdb905
Only send {{auto}} ip-adress if sendDefaultPii is enabled (7.x.x) (#4…
markushi Jan 20, 2025
e040da6
Merge branch 'release/7.20.1' into markushi/release-branch-for-7.20.1
Jan 20, 2025
af27480
Merge branch 'markushi/release-branch-for-7.20.1' into 7.x.x
markushi Jan 20, 2025
b1c5c1b
release: 7.21.0-beta.1
getsentry-bot Jan 20, 2025
1e796d8
Merge branch 'release/7.21.0-beta.1' into 7.x.x
Jan 20, 2025
5a70546
Prep changelog for 7.21.0 release
markushi Jan 27, 2025
56c8730
release: 7.21.0
getsentry-bot Jan 27, 2025
63342b7
Merge branch 'release/7.21.0' into 7.x.x
Jan 27, 2025
47a3903
Modifier.sentryTag uses Modifier.Node (#4029)
richkzad Feb 6, 2025
1eac2fc
Cherry-pick: Session Replay: Fix various crashes and issues (#4135) (…
romtsn Feb 7, 2025
d714dc8
feat(android-ndk): add api for getting debug images by addresses (#4159)
markushi Feb 11, 2025
8be0587
release: 7.22.0
getsentry-bot Feb 11, 2025
373370e
Merge branch 'release/7.22.0' into 7.x.x
Feb 11, 2025
f10c73c
Fix Ensure app start type is set, even when ActivityLifecycleIntegrat…
markushi Mar 10, 2025
90fd679
Fix properly reset application/content-provider timespans (#4244)
markushi Mar 10, 2025
2384975
release: 7.22.1
getsentry-bot Mar 10, 2025
3bb3cbe
Merge branch 'release/7.22.1' into 7.x.x
Mar 10, 2025
7c028eb
Fix AbstractMethodError when using SentryTraced for Jetpack Compose (…
markushi Mar 13, 2025
434c803
release: 7.22.2
getsentry-bot Mar 13, 2025
391b000
Merge branch 'release/7.22.2' into 7.x.x
Mar 13, 2025
9c964d0
Reduce excessive CPU usage when serializing breadcrumbs to disk (#418…
romtsn Mar 17, 2025
5e52d65
release: 7.22.3
getsentry-bot Mar 17, 2025
b326f55
Merge branch 'release/7.22.3' into 7.x.x
Mar 17, 2025
b14c7bf
Avoid reading floats as ints from the manifest in case it's not neces…
markushi Mar 19, 2025
bd16527
fix(session-replay): Do not crash if navigation breadcrumb has no de…
romtsn Mar 20, 2025
8a2fd32
release: 7.22.4
getsentry-bot Mar 20, 2025
a72b4b1
Merge branch 'release/7.22.4' into 7.x.x
Mar 20, 2025
ec00123
Merge branch 'main' into rz/chore/7.x.x-changelog
romtsn Mar 21, 2025
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
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,26 @@ If you have been using `8.0.0-rc.4` of the Java SDK, here's the new changes that
- We are planning to improve this in the future but opted for this fix first.
- Fix swallow NDK loadLibrary errors ([#4082](https://github.com/getsentry/sentry-java/pull/4082))

## 7.22.4

### Fixes

- Session Replay: Fix crash when a navigation breadcrumb does not have "to" destination ([#4185](https://github.com/getsentry/sentry-java/pull/4185))
- Session Replay: Cap video segment duration to maximum 5 minutes to prevent endless video encoding in background ([#4185](https://github.com/getsentry/sentry-java/pull/4185))
- Avoid logging an error when a float is passed in the manifest ([#4266](https://github.com/getsentry/sentry-java/pull/4266))

## 7.22.3

### Fixes

- Reduce excessive CPU usage when serializing breadcrumbs to disk for ANRs ([#4181](https://github.com/getsentry/sentry-java/pull/4181))

## 7.22.2

### Fixes

- Fix AbstractMethodError when using SentryTraced for Jetpack Compose ([#4256](https://github.com/getsentry/sentry-java/pull/4256))

## 7.22.1

### Fixes
Expand Down
Loading