Skip to content

Commit 0f27f4b

Browse files
authored
Merge branch 'main' into feat/spring-boot-3-4-1
2 parents f756b62 + 1eb21a0 commit 0f27f4b

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.craft.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,15 @@ targets:
4343
maven:io.sentry:sentry-openfeign:
4444
maven:io.sentry:sentry-opentelemetry-agent:
4545
maven:io.sentry:sentry-opentelemetry-agentcustomization:
46+
maven:io.sentry:sentry-opentelemetry-agentless:
47+
maven:io.sentry:sentry-opentelemetry-agentless-spring:
48+
maven:io.sentry:sentry-opentelemetry-bootstrap:
4649
maven:io.sentry:sentry-opentelemetry-core:
47-
# maven:io.sentry:sentry-opentelemetry-agentless:
48-
# maven:io.sentry:sentry-opentelemetry-agentless-spring:
4950
maven:io.sentry:sentry-apollo:
5051
maven:io.sentry:sentry-jdbc:
5152
maven:io.sentry:sentry-graphql:
52-
# maven:io.sentry:sentry-graphql-core:
53-
# maven:io.sentry:sentry-graphql-22:
53+
maven:io.sentry:sentry-graphql-22:
54+
maven:io.sentry:sentry-graphql-core:
5455
maven:io.sentry:sentry-quartz:
5556
maven:io.sentry:sentry-okhttp:
5657
maven:io.sentry:sentry-android-navigation:

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 8.0.0
44

55
Version 8 of the Sentry Android/Java SDK brings a variety of features and fixes. The most notable changes are:
66

@@ -295,6 +295,7 @@ If you have been using `8.0.0-rc.4` of the Java SDK, here's the new changes that
295295
- Due to how grouping works in Sentry currently sometimes the suppressed exception is treated as the main exception. This change ensures we keep using the main exception and not change how grouping works.
296296
- As a consequence the list of exceptions in the group on top of an issue is no longer shown in Sentry UI.
297297
- We are planning to improve this in the future but opted for this fix first.
298+
- Fix swallow NDK loadLibrary errors ([#4082](https://github.com/getsentry/sentry-java/pull/4082))
298299

299300
## 7.20.0
300301

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ android.useAndroidX=true
1313
android.defaults.buildfeatures.buildconfig=true
1414

1515
# Release information
16-
versionName=8.0.0-rc.4
16+
versionName=8.0.0
1717

1818
# Override the SDK name on native crashes on Android
1919
sentryAndroidSdkName=sentry.native.android

sentry-android-ndk/src/main/java/io/sentry/android/ndk/SentryNdk.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ private SentryNdk() {}
2222
try {
2323
//noinspection UnstableApiUsage
2424
io.sentry.ndk.SentryNdk.loadNativeLibraries();
25+
} catch (Throwable t) {
26+
// ignored
27+
// if loadLibrary() fails, the later init() will throw an exception anyway
2528
} finally {
2629
loadLibraryLatch.countDown();
2730
}

0 commit comments

Comments
 (0)