Skip to content

build(deps): bump github.com/getsentry/sentry-cocoa from 8.53.1 to 9.13.0 in /ee/psso/authentikPlatform.xcodeproj#911

Merged
BeryJu merged 1 commit into
mainfrom
dependabot/swift/ee/psso/authentikPlatform.xcodeproj/github.com/getsentry/sentry-cocoa-9.13.0
May 18, 2026
Merged

build(deps): bump github.com/getsentry/sentry-cocoa from 8.53.1 to 9.13.0 in /ee/psso/authentikPlatform.xcodeproj#911
BeryJu merged 1 commit into
mainfrom
dependabot/swift/ee/psso/authentikPlatform.xcodeproj/github.com/getsentry/sentry-cocoa-9.13.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Bumps github.com/getsentry/sentry-cocoa from 8.53.1 to 9.13.0.

Release notes

Sourced from github.com/getsentry/sentry-cocoa's releases.

9.13.0

Fixes

  • Fix crash with AVAssetDownloadTask in urlSessionTask:setState: (#7891)
  • Prevent crash-loop from malformed recrash reports (#7892)

Features

  • Add Set conformance to SentryAttributeValue (#7876)

9.12.1

[!WARNING] ⚠️ Known Issue: Sentry Cocoa 9.12.0+ crashes apps using AVAssetDownloadURLSession. Pin to 9.11.x until a fix ships. (#7886)

Fixes

  • Prevent memory strings in stack overflow crash reports (#7841)
  • Report crashed thread for null function calls (#7866)
  • Add depth limits to data sanitization and JSON encoder (#7857)
  • Moved BinaryImageCache initialization to a background thread to reduce blocking on dyld reader locks on the main thread (#7823)
  • Init vars before task_threads and vm_deallocate (#7858)
  • Handle extra length call in SentryInvalidJSONString (#7859)

9.12.0

[!WARNING] ⚠️ Known Issue: Sentry Cocoa 9.12.0+ crashes apps using AVAssetDownloadURLSession. Pin to 9.11.x until a fix ships. (#7886)

[!WARNING] This release promotes Metrics out of experimental and removes options.experimental.enableMetrics and options.experimental.beforeSendMetric. If you set either of these, your app will fail to compile after upgrading. Migrate to options.enableMetrics and options.beforeSendMetric (top-level on Options) — the defaults and behavior are unchanged.

[!WARNING] Session Replay now runs on iOS 26 with Liquid Glass. Previously, the SDK auto-disabled Session Replay on iOS 26 builds that adopted Liquid Glass (built with Xcode 26+ and UIDesignRequiresCompatibility not set). Now that the underlying redaction issues have been addressed, replays will be captured in those environments — verify your masking still meets your privacy requirements. If you want to keep Session Replay disabled on Liquid Glass builds, you will need to gate the sample rates yourself. For reference, see how the SDK used to perform the check: https://github.com/getsentry/sentry-cocoa/blob/adef457c1344e5efda4b74a1f33913d4d49ef7e0/Sources/Swift/Integrations/SessionReplay/SentrySessionReplayEnvironmentChecker.swift

Example — disable Session Replay when Liquid Glass is active:

import Sentry
SentrySDK.start { options in
options.dsn = "PUBLIC_DSN"
var sessionRate: Float = 0.2
var errorRate: Float = 1.0
if #available(iOS 26.0, *) {
let compatibilityMode = Bundle.main.object(forInfoDictionaryKey: "UIDesignRequiresCompatibility") as? Bool ?? false
let xcodeVersion = Int(Bundle.main.object(forInfoDictionaryKey: "DTXcode") as? String ?? "") ?? 0
let builtWithXcode26OrLater = xcodeVersion >= 2600

... (truncated)

Changelog

Sourced from github.com/getsentry/sentry-cocoa's changelog.

Changelog

Unreleased

Fixes

  • Fix race conditions in scope observer iteration and propagation context locking (#7897)

9.13.0

Fixes

  • Fix crash with AVAssetDownloadTask in urlSessionTask:setState: (#7891)
  • Prevent crash-loop from malformed recrash reports (#7892)

Features

  • Add Set conformance to SentryAttributeValue (#7876)

9.12.1

[!WARNING] ⚠️ Known Issue: Sentry Cocoa 9.12.0+ crashes apps using AVAssetDownloadURLSession. Pin to 9.11.x until a fix ships. (#7886)

Fixes

  • Prevent memory strings in stack overflow crash reports (#7841)
  • Report crashed thread for null function calls (#7866)
  • Add depth limits to data sanitization and JSON encoder (#7857)
  • Moved BinaryImageCache initialization to a background thread to reduce blocking on dyld reader locks on the main thread (#7823)
  • Init vars before task_threads and vm_deallocate (#7858)
  • Handle extra length call in SentryInvalidJSONString (#7859)

9.12.0

[!WARNING] ⚠️ Known Issue: Sentry Cocoa 9.12.0+ crashes apps using AVAssetDownloadURLSession. Pin to 9.11.x until a fix ships. (#7886)

[!WARNING] This release promotes Metrics out of experimental and removes options.experimental.enableMetrics and options.experimental.beforeSendMetric. If you set either of these, your app will fail to compile after upgrading. Migrate to options.enableMetrics and options.beforeSendMetric (top-level on Options) — the defaults and behavior are unchanged.

[!WARNING] Session Replay now runs on iOS 26 with Liquid Glass. Previously, the SDK auto-disabled Session Replay on iOS 26 builds that adopted Liquid Glass (built with Xcode 26+ and UIDesignRequiresCompatibility not set). Now that the underlying redaction issues have been addressed, replays will be captured in those environments — verify your masking still meets your privacy requirements. If you want to keep Session Replay disabled on Liquid Glass builds, you will need to gate the sample rates yourself. For reference, see how the SDK used to perform the check: https://github.com/getsentry/sentry-cocoa/blob/adef457c1344e5efda4b74a1f33913d4d49ef7e0/Sources/Swift/Integrations/SessionReplay/SentrySessionReplayEnvironmentChecker.swift

Example — disable Session Replay when Liquid Glass is active:

import Sentry

... (truncated)

Commits
  • 64c9c5c release: 9.13.0
  • 6b08499 fix: Defensive type checks for malformed recrash reports (#7892)
  • e56c394 fix: Crash with AVAssetDownloadTask in setState (#7891)
  • 9b154ad chore(docs): 'succesful' -> 'successful' typo in doc comment (#7894)
  • 85ee155 docs: add AVAssetDownloadURLSession crash warning to 9.12.x changelogs (#7893)
  • 75eb224 chore(deps): bump nokogiri from 1.19.1 to 1.19.3 (#7887)
  • 670aba7 chore(deps): bump getsentry/craft/.github/workflows/changelog-preview.yml (#7...
  • a781a3d chore(deps): bump getsentry/craft from 2.26.2 to 2.26.3 (#7889)
  • d0b52d1 chore(ci): Reduce CI log noise and standardize shell scripts (#7879)
  • 1155f0c chore(dx): add and remove default .agents skills (#7885)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update swift_package_manager code labels May 18, 2026
@codecov
Copy link
Copy Markdown

codecov Bot commented May 18, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 37.88%. Comparing base (a8622a8) to head (b9a584d).
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #911      +/-   ##
==========================================
- Coverage   38.02%   37.88%   -0.14%     
==========================================
  Files         210      210              
  Lines        7208     7208              
==========================================
- Hits         2741     2731      -10     
- Misses       4126     4133       +7     
- Partials      341      344       +3     
Flag Coverage Δ
go-e2e 41.90% <ø> (-0.19%) ⬇️
go-integration 15.19% <ø> (ø)
go-macos-15 13.55% <ø> (ø)
go-ubuntu-24.04 13.08% <ø> (ø)
go-ubuntu-24.04-arm 12.70% <ø> (ø)
go-windows-2025 12.83% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@BeryJu
Copy link
Copy Markdown
Member

BeryJu commented May 18, 2026

@dependabot rebase

Bumps [github.com/getsentry/sentry-cocoa](https://github.com/getsentry/sentry-cocoa) from 8.53.1 to 9.13.0.
- [Release notes](https://github.com/getsentry/sentry-cocoa/releases)
- [Changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md)
- [Commits](getsentry/sentry-cocoa@8.53.1...64c9c5c)

---
updated-dependencies:
- dependency-name: github.com/getsentry/sentry-cocoa
  dependency-version: 9.13.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/swift/ee/psso/authentikPlatform.xcodeproj/github.com/getsentry/sentry-cocoa-9.13.0 branch from 9ab2379 to b9a584d Compare May 18, 2026 10:46
@BeryJu BeryJu merged commit 2395835 into main May 18, 2026
41 of 42 checks passed
@BeryJu BeryJu deleted the dependabot/swift/ee/psso/authentikPlatform.xcodeproj/github.com/getsentry/sentry-cocoa-9.13.0 branch May 18, 2026 11:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update swift_package_manager code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant