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
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
# Changelog
2
2
3
+
## Unreleased
4
+
3
5
### Fixes
4
6
5
7
- The SDK now handles `null` on many APIs instead of expecting a non `null` value ([#4245](https://github.com/getsentry/sentry-java/pull/4245))
@@ -8,16 +10,30 @@
8
10
- If `null` is passed, the SDK will
9
11
- do nothing if a `null` key is passed, returning `null` for non void methods
10
12
- replace any previous value if the new value is set to `null`
13
+
- Add support for setting in-app-includes/in-app-excludes via AndroidManifest.xml ([#4240](https://github.com/getsentry/sentry-java/pull/4240))
14
+
- Modifications to OkHttp requests are now properly propagated to the affected span / breadcrumbs ([#4238](https://github.com/getsentry/sentry-java/pull/4238))
15
+
- Please ensure the SentryOkHttpInterceptor is added last to your OkHttpClient, as otherwise changes to the `Request` by subsequent interceptors won't be considered
11
16
12
17
### Features
13
18
14
19
- The SDK now automatically propagates the trace-context to the native layer. This allows to connect errors on different layers of the application. ([#4137](https://github.com/getsentry/sentry-java/pull/4137))
- OpenTelemetry spans may have exceptions attached to them (`openTelemetrySpan.recordException`). We can now send those to Sentry as errors.
22
+
- Set `capture-open-telemetry-events=true` in `sentry.properties` to enable it
23
+
- Set `sentry.capture-open-telemetry-events=true` in Springs `application.properties` to enable it
24
+
- Set `sentry.captureOpenTelemetryEvents: true` in Springs `application.yml` to enable it
15
25
16
26
### Behavioural Changes
17
27
18
28
- Use `java.net.URI` for parsing URLs in `UrlUtils` ([#4210](https://github.com/getsentry/sentry-java/pull/4210))
19
29
- This could affect grouping for issues with messages containing URLs that fall in known corner cases that were handled incorrectly previously (e.g. email in URL path)
20
30
31
+
### Internal
32
+
33
+
- Also use port when checking if a request is made to Sentry DSN ([#4231](https://github.com/getsentry/sentry-java/pull/4231))
34
+
- For our OpenTelemetry integration we check if a span is for a request to Sentry
35
+
- We now also consider the port when performing this check
36
+
21
37
### Dependencies
22
38
23
39
- Bump Native SDK from v0.7.20 to v0.8.1 ([#4137](https://github.com/getsentry/sentry-java/pull/4137))
0 commit comments