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
+
### Fixes
6
+
7
+
- Remove authority from URLs sent to Sentry ([#2366](https://github.com/getsentry/sentry-java/pull/2366))
8
+
5
9
### Dependencies
6
10
7
11
- Bump Native SDK from v0.5.3 to v0.5.4 ([#2500](https://github.com/getsentry/sentry-java/pull/2500))
Copy file name to clipboardExpand all lines: sentry-servlet-jakarta/src/main/java/io/sentry/servlet/jakarta/SentryRequestHttpServletRequestProcessor.java
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@
6
6
importio.sentry.protocol.Request;
7
7
importio.sentry.util.HttpUtils;
8
8
importio.sentry.util.Objects;
9
+
importio.sentry.util.UrlUtils;
9
10
importjakarta.servlet.http.HttpServletRequest;
10
11
importjava.util.Collections;
11
12
importjava.util.Enumeration;
@@ -30,8 +31,10 @@ public SentryRequestHttpServletRequestProcessor(@NotNull HttpServletRequest http
Copy file name to clipboardExpand all lines: sentry-spring-jakarta/src/main/java/io/sentry/spring/jakarta/tracing/SentrySpanClientHttpRequestInterceptor.java
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,8 @@
14
14
importio.sentry.SpanStatus;
15
15
importio.sentry.util.Objects;
16
16
importio.sentry.util.PropagationTargetsUtils;
17
+
importio.sentry.util.UrlUtils;
18
+
17
19
importjava.io.IOException;
18
20
importorg.jetbrains.annotations.NotNull;
19
21
importorg.jetbrains.annotations.Nullable;
@@ -47,7 +49,9 @@ public SentrySpanClientHttpRequestInterceptor(final @NotNull IHub hub) {
0 commit comments