Skip to content

chore(deps): update Cocoa SDK to v9.6.0#4958

Merged
jamescrosswell merged 2 commits intomainfrom
deps/modules/sentry-cocoa.properties
Mar 12, 2026
Merged

chore(deps): update Cocoa SDK to v9.6.0#4958
jamescrosswell merged 2 commits intomainfrom
deps/modules/sentry-cocoa.properties

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions bot commented Feb 26, 2026

Bumps modules/sentry-cocoa.properties from 9.5.0 to 9.6.0.

Auto-generated by a dependency updater.

Changelog

9.6.0

Features

  • Add watchdog termination hang tracker using RunLoop observer. Can be enabled by setting options.experimental.enableWatchdogTerminationsV2 = true (#7464)

Fixes

  • Preserve NSException and C++ exception reason instead of overwriting with unrelated crash_info_message from libswiftCore.dylib (#7515)
  • Fix unexpected null value when unwrapping view controller window (#7508)

9.5.1

Fixes

  • Don't report NSException subclasses as C++ exceptions (#7420)

  • Write reports on concurrent crashes (#7340)

  • Resolve data race crash in monitorCachedData (#7423)

  • Don't finish network spans for suspended URL session tasks (#7471)

  • Use different fallback for when MetricKit does not have file path (#7473)

  • Remove launch profiling logs in sandboxed environments breaking CLI tools (#7294)

  • Enable MetricKit Integration for visionOS (#7466)

Improvements

  • The watchdog termination integration uses a runloop observer instead of fixed interval main thread work to avoid creating a busy runloop (#7464)
  • SentryRedactViewHelper had been erroneously made public, it has been removed from the public interface (#7474)

8.58.0

Features

  • Add options options.sessionReplay.includedViewClasses and options.sessionReplay.excludedViewClasses to ignore views from subtree traversal (#7063)

Fixes

  • Encode SwiftUI internal class names in session replay redaction to avoid false-positive App Store review rejections (#7123)

    • Add layer class filtering for views used in multiple contexts (e.g., SwiftUI._UIGraphicsView)
Full CHANGELOG.md diff
 -1,14 +1,40 
 # Changelog
 
+## 9.6.0
+
+### Features
+
+- Add watchdog termination hang tracker using RunLoop observer. Can be enabled by setting `options.experimental.enableWatchdogTerminationsV2 = true` ([#7464](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7464))
+
+### Fixes
+
+- Preserve NSException and C++ exception reason instead of overwriting with unrelated `crash_info_message` from `libswiftCore.dylib` ([#7515](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7515))
+- Fix unexpected null value when unwrapping view controller window ([#7508](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7508))
+
+## 9.5.1
+
+### Fixes
+
+- Don't report NSException subclasses as C++ exceptions ([#7420](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7420))
+- Write reports on concurrent crashes ([#7340](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7340))
+- Resolve data race crash in monitorCachedData ([#7423](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7423))
+- Don't finish network spans for suspended URL session tasks ([#7471](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7471))
+- Use different fallback for when MetricKit does not have file path ([#7473](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7473))
+- Remove launch profiling logs in sandboxed environments breaking CLI tools ([#7294](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7294))
+
 ## 9.5.0
 
 ### Features
 
-- Enable MetricKit Integration for visionOS ([#7466](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/pull/7466))
+- Enable MetricKit Integration for visionOS ([#7466](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7466))
+
+### Improvements
+
+- The watchdog termination integration uses a runloop observer instead of fixed interval main thread work to avoid creating a busy runloop ([#7464](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/pull/7464))
 
 ### Fixes
 
-- SentryRedactViewHelper had been erroneously made public, it has been removed from the public interface ([#7474](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/pull/7474))
+- SentryRedactViewHelper had been erroneously made public, it has been removed from the public interface ([#7474](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7474))
 - Write reports on concurrent crashes ([#7340](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7340))
 
 ## 9.4.1
 -470,6 +496,16  This changelog lists every breaking change. For a high-level overview and upgrad
 - Move `enableDataSwizzling` from experimental options to top-level options ([#6592](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/6592)). This option remains enabled by default.
 - Add `sentry.replay_id` attribute to logs ([#6515](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/pull/6515))
 
+## 8.58.0
+
+### Features
+
+- Add options `options.sessionReplay.includedViewClasses` and `options.sessionReplay.excludedViewClasses` to ignore views from subtree traversal ([#7063](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7063))
+
+### Fixes
+
+- Encode SwiftUI internal class names in session replay redaction to avoid false-positive App Store review rejections ([#7123](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/7123))
+
 ## 8.57.3
 
 ### Fixes
 -488,7 +524,7  This changelog lists every breaking change. For a high-level overview and upgrad
   - Fix UISwitch internal images being incorrectly redacted
   - Fix UITextField placeholder text (UITextFieldLabel) not being detected for redaction
   - Use string-based class comparison to avoid triggering Objective-C +initialize on background threads
-  - Add layer class filtering for views used in multiple contexts (e.g., SwiftUI._UIGraphicsView)
+  - Add layer class filtering for views used in multiple contexts (e.g., SwiftUI.\_UIGraphicsView)
   - Improve transform calculations for views with custom anchor points
   - Fix axis-aligned transform detection for optimized opaque view clipping
 - Fix conversion of frame rate to time interval for session replay ([#6623](https://github-redirect.dependabot.com/getsentry/sentry-cocoa/issues/6623))

@github-actions github-actions bot added the Dependencies Pull requests that update a dependency file label Feb 26, 2026
@github-actions github-actions bot requested a review from Flash0ver as a code owner February 26, 2026 03:45
@github-actions github-actions bot added the Dependencies Pull requests that update a dependency file label Feb 26, 2026
@codecov
Copy link
Copy Markdown

codecov bot commented Feb 26, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 73.87%. Comparing base (6cda3b5) to head (a87be69).
⚠️ Report is 19 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #4958      +/-   ##
==========================================
- Coverage   73.88%   73.87%   -0.02%     
==========================================
  Files         496      496              
  Lines       17951    17951              
  Branches     3516     3516              
==========================================
- Hits        13263    13261       -2     
- Misses       3826     3832       +6     
+ Partials      862      858       -4     

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

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@bruno-garcia bruno-garcia force-pushed the deps/modules/sentry-cocoa.properties branch from 55a83d3 to a8b227b Compare March 3, 2026 03:45
@github-actions
Copy link
Copy Markdown
Contributor Author

github-actions bot commented Mar 3, 2026

Semver Impact of This PR

None (no version bump detected)

📋 Changelog Preview

This is how your changes will appear in the changelog.
Entries from this PR are highlighted with a left border (blockquote style).


Features ✨

  • feat: Network calls for Session Replay on Android by jamescrosswell in #4860

Fixes 🐛

  • fix: Log Warning instead of Error when ratelimited by bitsandfoxes in #4927

Dependencies ⬆️

Deps

  • chore(deps): update Cocoa SDK to v9.6.0 by github-actions[bot] in #4958
  • chore(deps): update Native SDK to v0.13.1 by github-actions in #4964
  • chore(deps): update Cocoa SDK to v9.5.0 by github-actions in #4944
  • chore(deps): update Native SDK to v0.13.0 by github-actions in #4941
  • chore(deps): update CLI to v3.2.2 by github-actions in #4943
  • chore(deps): update Java SDK to v8.33.0 by github-actions in #4933
  • chore(deps): update CLI to v3.2.0 by github-actions in #4805
    • NOTE: Sentry CLI v3 removed support for the legacy API key authentication method. Sentry CLI now only supports authenticating with Auth Tokens. If you are using API key authentication via SentryApiKey, you need to generate an Auth Token and use SentryAuthToken, instead.
  • chore(deps): update Cocoa SDK to v9.4.1 by github-actions in #4928
  • chore(deps): update Native SDK to v0.12.8 by github-actions in #4929
  • Apps built using the Sentry SDK for .NET must now target iOS version 15 or higher. Previously only version 13 or higher was required. (#4781) by github-actions in #4781
  • Bump Cocoa SDK from v8.57.3 to v9.2.0 (#4781) by github-actions in #4781
  • chore(deps): update Native SDK to v0.12.7 by github-actions in #4920

Other

  • ci: move from dotnet-format tool to .NET SDK command by Flash0ver in #4918
  • test(blazor): Add Playwright E2E tests for navigation breadcrumbs by bruno-garcia in #4908
  • test(android): Use volatile to produce SIGSEGV in native crash test by jpnurmi in #4919

🤖 This preview updates automatically when you update the PR.

@bruno-garcia bruno-garcia force-pushed the deps/modules/sentry-cocoa.properties branch from a8b227b to 86ef439 Compare March 4, 2026 03:42
@github-actions github-actions bot changed the title chore(deps): update Cocoa SDK to v9.5.1 chore(deps): update Cocoa SDK to v9.6.0 Mar 5, 2026
@bruno-garcia bruno-garcia force-pushed the deps/modules/sentry-cocoa.properties branch from 86ef439 to 7540526 Compare March 5, 2026 03:43
@jamescrosswell jamescrosswell merged commit 6dca24d into main Mar 12, 2026
56 of 59 checks passed
@jamescrosswell jamescrosswell deleted the deps/modules/sentry-cocoa.properties branch March 12, 2026 00:38
evgenygunko pushed a commit to evgenygunko/CopyWordsDA that referenced this pull request Mar 31, 2026
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [Sentry.Maui](https://sentry.io/) ([source](https://github.com/getsentry/sentry-dotnet)) | nuget | minor | `6.2.0` -> `6.3.0` |

---

### Release Notes

<details>
<summary>getsentry/sentry-dotnet (Sentry.Maui)</summary>

### [`v6.3.0`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#630)

[Compare Source](getsentry/sentry-dotnet@6.2.0...6.3.0)

##### Features

-   The *Metrics* APIs are now stable: removed `Experimental` from `SentrySdk`, `SentryOptions` and `IHub` ([#&#8203;5023](getsentry/sentry-dotnet#5023))
-   Report a new *Diagnostic* (`SENTRY1001`) when a Metrics-API is invoked with an unsupported numeric type ([#&#8203;4840](getsentry/sentry-dotnet#4840))

##### Fixes

-   Common tags such as `Environment` and `Release` and custom event processors are all now correctly applied to CaptureFeedback events ([#&#8203;4942](getsentry/sentry-dotnet#4942))
-   Include `Data` set via `ITransactionTracer` in `SentryTransaction` ([#&#8203;4148](getsentry/sentry-dotnet#4148))

##### Dependencies

-   Bump Cocoa SDK from v9.5.0 to v9.7.0 ([#&#8203;4958](getsentry/sentry-dotnet#4958), [#&#8203;5015](getsentry/sentry-dotnet#5015))
-   Bump CLI from v3.3.0 to v3.3.3 ([#&#8203;5002](getsentry/sentry-dotnet#5002))
-   Bump Java SDK from v8.34.1 to v8.35.0 ([#&#8203;5017](getsentry/sentry-dotnet#5017))
-   Bump Native SDK from v0.13.2 to v0.13.3 ([#&#8203;5045](getsentry/sentry-dotnet#5045))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or PR is renamed to start with "rebase!".

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
github-merge-queue bot pushed a commit to DFE-Digital/teaching-record-system that referenced this pull request Apr 1, 2026
…3244)

Pinned [Sentry.AspNetCore](https://github.com/getsentry/sentry-dotnet)
at 6.3.0.

<details>
<summary>Release notes</summary>

_Sourced from [Sentry.AspNetCore's
releases](https://github.com/getsentry/sentry-dotnet/releases)._

## 6.3.0

### Features

- The _Metrics_ APIs are now stable: removed `Experimental` from
`SentrySdk`, `SentryOptions` and `IHub`
([#​5023](getsentry/sentry-dotnet#5023))
- Report a new _Diagnostic_ (`SENTRY1001`) when a Metrics-API is invoked
with an unsupported numeric type
([#​4840](getsentry/sentry-dotnet#4840))

### Fixes

- Common tags such as `Environment` and `Release` and custom event
processors are all now correctly applied to CaptureFeedback events
([#​4942](getsentry/sentry-dotnet#4942))
- Include `Data` set via `ITransactionTracer` in `SentryTransaction`
([#​4148](getsentry/sentry-dotnet#4148))

### Dependencies

- Bump Cocoa SDK from v9.5.0 to v9.7.0
([#​4958](getsentry/sentry-dotnet#4958),
[#​5015](getsentry/sentry-dotnet#5015))
- Bump CLI from v3.3.0 to v3.3.3
([#​5002](getsentry/sentry-dotnet#5002))
- Bump Java SDK from v8.34.1 to v8.35.0
([#​5017](getsentry/sentry-dotnet#5017))
- Bump Native SDK from v0.13.2 to v0.13.3
([#​5045](getsentry/sentry-dotnet#5045))

Commits viewable in [compare
view](getsentry/sentry-dotnet@6.2.0...6.3.0).
</details>

Updated
[Sentry.Extensions.Logging](https://github.com/getsentry/sentry-dotnet)
from 6.2.0 to 6.3.0.

<details>
<summary>Release notes</summary>

_Sourced from [Sentry.Extensions.Logging's
releases](https://github.com/getsentry/sentry-dotnet/releases)._

## 6.3.0

### Features

- The _Metrics_ APIs are now stable: removed `Experimental` from
`SentrySdk`, `SentryOptions` and `IHub`
([#​5023](getsentry/sentry-dotnet#5023))
- Report a new _Diagnostic_ (`SENTRY1001`) when a Metrics-API is invoked
with an unsupported numeric type
([#​4840](getsentry/sentry-dotnet#4840))

### Fixes

- Common tags such as `Environment` and `Release` and custom event
processors are all now correctly applied to CaptureFeedback events
([#​4942](getsentry/sentry-dotnet#4942))
- Include `Data` set via `ITransactionTracer` in `SentryTransaction`
([#​4148](getsentry/sentry-dotnet#4148))

### Dependencies

- Bump Cocoa SDK from v9.5.0 to v9.7.0
([#​4958](getsentry/sentry-dotnet#4958),
[#​5015](getsentry/sentry-dotnet#5015))
- Bump CLI from v3.3.0 to v3.3.3
([#​5002](getsentry/sentry-dotnet#5002))
- Bump Java SDK from v8.34.1 to v8.35.0
([#​5017](getsentry/sentry-dotnet#5017))
- Bump Native SDK from v0.13.2 to v0.13.3
([#​5045](getsentry/sentry-dotnet#5045))

Commits viewable in [compare
view](getsentry/sentry-dotnet@6.2.0...6.3.0).
</details>

Pinned [Sentry.Serilog](https://github.com/getsentry/sentry-dotnet) at
6.3.0.

<details>
<summary>Release notes</summary>

_Sourced from [Sentry.Serilog's
releases](https://github.com/getsentry/sentry-dotnet/releases)._

## 6.3.0

### Features

- The _Metrics_ APIs are now stable: removed `Experimental` from
`SentrySdk`, `SentryOptions` and `IHub`
([#​5023](getsentry/sentry-dotnet#5023))
- Report a new _Diagnostic_ (`SENTRY1001`) when a Metrics-API is invoked
with an unsupported numeric type
([#​4840](getsentry/sentry-dotnet#4840))

### Fixes

- Common tags such as `Environment` and `Release` and custom event
processors are all now correctly applied to CaptureFeedback events
([#​4942](getsentry/sentry-dotnet#4942))
- Include `Data` set via `ITransactionTracer` in `SentryTransaction`
([#​4148](getsentry/sentry-dotnet#4148))

### Dependencies

- Bump Cocoa SDK from v9.5.0 to v9.7.0
([#​4958](getsentry/sentry-dotnet#4958),
[#​5015](getsentry/sentry-dotnet#5015))
- Bump CLI from v3.3.0 to v3.3.3
([#​5002](getsentry/sentry-dotnet#5002))
- Bump Java SDK from v8.34.1 to v8.35.0
([#​5017](getsentry/sentry-dotnet#5017))
- Bump Native SDK from v0.13.2 to v0.13.3
([#​5045](getsentry/sentry-dotnet#5045))

Commits viewable in [compare
view](getsentry/sentry-dotnet@6.2.0...6.3.0).
</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants