Skip to content
Open
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
- Bump Java SDK from v8.26.0 to v8.28.0 ([#4761](https://github.com/getsentry/sentry-dotnet/pull/4761), [#4791](https://github.com/getsentry/sentry-dotnet/pull/4791))
- [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#8280)
- [diff](https://github.com/getsentry/sentry-java/compare/8.26.0...8.28.0)
- Bump Cocoa SDK from v8.57.3 to v9.0.0 ([#4781](https://github.com/getsentry/sentry-dotnet/pull/4781))
- [changelog](https://github.com/getsentry/sentry-cocoa/blob/main/CHANGELOG.md#900)
- [diff](https://github.com/getsentry/sentry-cocoa/compare/8.57.3...9.0.0)

## 6.0.0-rc.2

Expand Down
2 changes: 1 addition & 1 deletion modules/sentry-cocoa.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 8.57.3
version = 9.0.0
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: iOS minimum version mismatch with Cocoa SDK 9.0.0

Bumping to Cocoa SDK 9.0.0 introduces a minimum iOS version mismatch. The Cocoa SDK 9.0.0 requires iOS 15.0 minimum, but Directory.Build.props declares SupportedOSPlatformVersion as 13.0 for iOS. Apps built with this SDK version would claim iOS 13.0 support but could crash or fail at runtime on iOS 13.x and 14.x devices due to the Cocoa SDK's higher minimum requirement. The minimum platform versions in the build configuration need to be updated to match the Cocoa SDK's requirements.

Fix in Cursor Fix in Web

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bug: Patch script whitelist outdated for Cocoa SDK v9.0.0

The Cocoa SDK version is being bumped to v9.0.0, which renamed SentryMechanismMeta to SentryMechanismContext and removed SentryDebugImageProvider. The patch script at scripts/patch-cocoa-bindings.cs has a KeepInterfaces whitelist that still references the old SentryMechanismMeta name (line 132) and SentryDebugImageProvider (line 112). When bindings are regenerated, the new SentryMechanismContext type will be filtered out since it's not whitelisted, but SentryMechanism.Meta property will still reference it, causing compilation failures. The whitelist needs to be updated to match the v9.0.0 API changes.

Fix in Cursor Fix in Web

repo = https://github.com/getsentry/sentry-cocoa
Loading