Skip to content

Commit d4f4fec

Browse files
authored
Merge branch 'main' into dependabot/github_actions/actions/create-github-app-token-1.11.2
2 parents d1fb838 + a4fd36f commit d4f4fec

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Fixes
6+
7+
- Do not log if `OtelContextScopesStorage` cannot be found ([#4127](https://github.com/getsentry/sentry-java/pull/4127))
8+
- Previously `java.lang.ClassNotFoundException: io.sentry.opentelemetry.OtelContextScopesStorage` was shown in the log if the class could not be found.
9+
- This is just a lookup the SDK performs to configure itself. The SDK also works without OpenTelemetry.
10+
11+
### Dependencies
12+
13+
- Bump Native SDK from v0.7.19 to v0.7.20 ([#4128](https://github.com/getsentry/sentry-java/pull/4128))
14+
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0720)
15+
- [diff](https://github.com/getsentry/sentry-native/compare/v0.7.19...0.7.20)
16+
317
## 8.1.0
418

519
### Features

buildSrc/src/main/java/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ object Config {
153153

154154
val apolloKotlin = "com.apollographql.apollo3:apollo-runtime:3.8.2"
155155

156-
val sentryNativeNdk = "io.sentry:sentry-native-ndk:0.7.19"
156+
val sentryNativeNdk = "io.sentry:sentry-native-ndk:0.7.20"
157157

158158
object OpenTelemetry {
159159
val otelVersion = "1.44.1"

sentry/src/main/java/io/sentry/Sentry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ private static void initScopesStorage(SentryOptions options) {
395395
if (SentryOpenTelemetryMode.OFF == options.getOpenTelemetryMode()) {
396396
scopesStorage = new DefaultScopesStorage();
397397
} else {
398-
scopesStorage = ScopesStorageFactory.create(new LoadClass(), options.getLogger());
398+
scopesStorage = ScopesStorageFactory.create(new LoadClass(), NoOpLogger.getInstance());
399399
}
400400
}
401401

0 commit comments

Comments
 (0)