Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@

## Unreleased

### Fixes

- When targeting iOS, the SDK no longer crashes in `urlSessionTask:setState:` when handling an `AVAssetDownloadTask` ([#2677](https://github.com/getsentry/sentry-unity/pull/2677))

### Features

- Added `AndroidNativeAnrEnabled` (default `true`) to enable ANR detection through `sentry-java` SDK. The native ANR integration monitors the Android UI thread. On API ≥ 30 this uses [ANR v2](https://docs.sentry.io/platforms/android/configuration/app-not-respond/) via `ApplicationExitInfo` to report OS-detected ANRs from prior runs; on API < 30 it falls back to an in-process watchdog. This is complementary to the Unity SDK's C# watchdog, which monitors the Unity player loop. ([#2671](https://github.com/getsentry/sentry-unity/pull/2671))

### Dependencies

- Bump Cocoa SDK from v9.12.0 to v9.12.1 ([#2670](https://github.com/getsentry/sentry-unity/pull/2670))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#9121)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/9.12.0...9.12.1)
- Bump Cocoa SDK from v9.12.0 to v9.13.0 ([#2670](https://github.com/getsentry/sentry-unity/pull/2670), [#2677](https://github.com/getsentry/sentry-unity/pull/2677))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#9130)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/9.12.0...9.13.0)
- Bump Java SDK from v8.40.0 to v8.41.0 ([#2669](https://github.com/getsentry/sentry-unity/pull/2669))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8410)
- [diff](https://github.com/getsentry/sentry-java/compare/8.40.0...8.41.0)
Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa
Submodule sentry-cocoa updated 62 files
+6 −0 .codex/config.toml
+1 −1 .github/last-release-runid
+1 −1 .github/workflows/changelog-preview.yml
+3 −2 .github/workflows/codeql-analysis.yml
+2 −2 .github/workflows/release.yml
+1 −1 .github/workflows/test-cross-platform.yml
+1 −1 3rd-party-integrations/SentryCocoaLumberjack/Package.swift
+1 −1 3rd-party-integrations/SentryPulse/Package.swift
+1 −1 3rd-party-integrations/SentrySwiftLog/Package.swift
+1 −1 3rd-party-integrations/SentrySwiftyBeaver/Package.swift
+21 −3 CHANGELOG.md
+1 −1 Gemfile.lock
+10 −10 Package.swift
+10 −10 Package@swift-6.1.swift
+10 −10 Package@swift-6.2.swift
+1 −1 Sentry.podspec
+1 −1 Sentry.xcodeproj/project.pbxproj
+2 −2 SentrySwiftUI.podspec
+1 −1 Sources/Configuration/SDK.xcconfig
+1 −1 Sources/Configuration/SentrySwiftUI.xcconfig
+1 −1 Sources/Configuration/Versioning.xcconfig
+8 −5 Sources/Sentry/SentryCrashReportConverter.m
+1 −1 Sources/Sentry/SentryMeta.m
+4 −4 Sources/Sentry/SentryNetworkTracker.m
+11 −8 Sources/SentryCrash/Recording/SentryCrash.m
+1 −1 Sources/SentryCrash/Recording/Tools/SentryCrashJSONCodec.h
+17 −2 Sources/Swift/Protocol/SentryAttributeValue.swift
+1 −1 TestSamples/SwiftUICrashTest/test-crash-and-relaunch.sh
+175 −3 Tests/SentryTests/Protocol/SentryAttributeValuableTests.swift
+60 −0 Tests/SentryTests/SentryCrash/SentryCrashTests.m
+41 −0 Tests/SentryTests/SentryCrashReportConverterTests.m
+13 −5 agents.toml
+1 −1 fastlane/Fastfile
+1 −1 scripts/.clang-format-version
+6 −6 scripts/analyze-languages/analyze-languages.sh
+44 −4 scripts/assemble-xcframework.sh
+45 −0 scripts/build-xcframework-local.sh
+62 −2 scripts/build-xcframework-slice.sh
+43 −2 scripts/bump.sh
+4 −8 scripts/check-sentrycrash-imports.sh
+14 −14 scripts/check-ui-framework-linkage.sh
+45 −27 scripts/ci-boot-simulator.sh
+24 −15 scripts/ci-create-simulator.sh
+5 −5 scripts/ci-diagnostics.sh
+14 −2 scripts/ci-enable-permissions.sh
+43 −26 scripts/ci-ensure-runtime-loaded.sh
+26 −43 scripts/ci-select-xcode.sh
+174 −18 scripts/ci-utils.sh
+42 −6 scripts/compress-xcframework.sh
+0 −27 scripts/create-cherry-pick-branch.sh
+52 −10 scripts/generate_release_matrix.sh
+38 −6 scripts/pod-lib-lint.sh
+43 −27 scripts/prepare-package.sh
+47 −26 scripts/remove-architectures.sh
+22 −14 scripts/resolve-test-destination.sh
+31 −19 scripts/sentry-xcodebuild.sh
+29 −12 scripts/start-test-server.sh
+13 −13 scripts/update-api.sh
+6 −2 scripts/update-package-sha.sh
+90 −61 scripts/validate-xcframework-format.sh
+47 −24 scripts/verify-package-sha.sh
+357 −0 sdk_api.json
Loading