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
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
3
3
## Unreleased
4
4
5
+
### Improvements
6
+
7
+
- Improve SDK init performance by replacing `java.net.URI` with custom string parsing for DSN ([#5448](https://github.com/getsentry/sentry-java/pull/5448))
8
+
5
9
### Features
6
10
7
11
- Add support to configure reporting historical ANRs via `AndroidManifest.xml` using the `io.sentry.anr.report-historical` attribute ([#5387](https://github.com/getsentry/sentry-java/pull/5387))
Copy file name to clipboardExpand all lines: sentry/src/test/java/io/sentry/DsnTest.kt
+67Lines changed: 67 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -145,4 +145,71 @@ class DsnTest {
145
145
val dsn =Dsn("http://key@localhost:9000/456")
val dsn =Dsn("http://key:secret@host:8080/path/id")
fun`dsn with multiple double slashes in path is normalized`() {
187
+
val dsn =Dsn("http://key@host//path//id")
0 commit comments