You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
## Unreleased
4
4
5
+
### Fixes
6
+
7
+
- Fix main thread identification for tombstone (native crash) events ([#5742](https://github.com/getsentry/sentry-java/pull/5742))
8
+
9
+
## 8.48.0
10
+
5
11
### Features
6
12
7
13
- Add `Sentry.extendAppStart()`, `Sentry.finishExtendedAppStart()`, and `Sentry.getExtendedAppStartSpan()` to extend the app start measurement past the first frame for extra launch-time work on Android ([#5604](https://github.com/getsentry/sentry-java/pull/5604))
@@ -22,7 +28,7 @@
22
28
23
29
### Fixes
24
30
25
-
- Fix main thread identification for tombstone (native crash) events ([#5742](https://github.com/getsentry/sentry-java/pull/5742))
31
+
- Fix `NoSuchMethodError` when using `Math.floorDiv`/`Math.floorMod` on Android < 24 ([#5743](https://github.com/getsentry/sentry-java/pull/5743))
26
32
- Fix main thread identification parsing for ApplicationExitInfo ANRs ([#5733](https://github.com/getsentry/sentry-java/pull/5733))
27
33
- Do not send threads without stacktraces for ApplicationExitInfo ANRs ([#5733](https://github.com/getsentry/sentry-java/pull/5733))
28
34
- Record byte-level client reports when event processors discard logs or trace metrics ([#5718](https://github.com/getsentry/sentry-java/pull/5718))
**Copyright:** Copyright (C) 2011 The Guava Authors
42
+
43
+
### Scope
44
+
45
+
The Sentry Java SDK includes adapted floor division logic from Guava's `LongMath` class to support older Android API levels. The code resides in `io.sentry.vendor.SentryMath`.
46
+
47
+
```
48
+
Copyright (C) 2011 The Guava Authors
49
+
50
+
Licensed under the Apache License, Version 2.0 (the "License");
51
+
you may not use this file except in compliance with the License.
52
+
You may obtain a copy of the License at
53
+
54
+
http://www.apache.org/licenses/LICENSE-2.0
55
+
56
+
Unless required by applicable law or agreed to in writing, software
57
+
distributed under the License is distributed on an "AS IS" BASIS,
58
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
59
+
See the License for the specific language governing permissions and
0 commit comments