Skip to content

Commit 8104eda

Browse files
authored
Merge branch 'main' into dependabot/github_actions/gradle/actions-5.0.0
2 parents 62f8ca5 + 189e917 commit 8104eda

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66

77
- Use logger from options for JVM profiler ([#4771](https://github.com/getsentry/sentry-java/pull/4771))
88

9+
### Miscellaneous
10+
11+
- Mark SentryClient(SentryOptions) constructor as not internal ([#4787](https://github.com/getsentry/sentry-java/pull/4787))
12+
13+
### Dependencies
14+
15+
- Bump Native SDK from v0.10.1 to v0.11.2 ([#4775](https://github.com/getsentry/sentry-java/pull/4775))
16+
- [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0112)
17+
- [diff](https://github.com/getsentry/sentry-native/compare/0.10.1...0.11.2)
18+
919
## 8.23.0
1020

1121
### Features

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ quartz = { module = "org.quartz-scheduler:quartz", version = "2.3.0" }
132132
reactor-core = { module = "io.projectreactor:reactor-core", version = "3.5.3" }
133133
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" }
134134
retrofit-gson = { module = "com.squareup.retrofit2:converter-gson", version.ref = "retrofit" }
135-
sentry-native-ndk = { module = "io.sentry:sentry-native-ndk", version = "0.10.1" }
135+
sentry-native-ndk = { module = "io.sentry:sentry-native-ndk", version = "0.11.2" }
136136
servlet-api = { module = "javax.servlet:javax.servlet-api", version = "3.1.0" }
137137
servlet-jakarta-api = { module = "jakarta.servlet:jakarta.servlet-api", version = "6.1.0" }
138138
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" }

sentry/src/main/java/io/sentry/SentryClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ public boolean isEnabled() {
4848
return enabled;
4949
}
5050

51-
@ApiStatus.Internal
5251
public SentryClient(final @NotNull SentryOptions options) {
5352
this.options = Objects.requireNonNull(options, "SentryOptions is required.");
5453
this.enabled = true;

0 commit comments

Comments
 (0)