Philipp Hofmann
Philipp Hofmann
### Description As pointed out in the [docs](https://docs.sentry.io/platforms/apple/guides/ios/tracing/instrumentation/automatic-instrumentation/#file-io-tracing), we currently don't support automatic instrumentation for file IO with [FileHandle](https://developer.apple.com/documentation/foundation/filehandle). Please upvote if you would like to have this feature.
Add a sample app for macOS with SwiftUI using the NSApplicationDelegateAdaptor. This is required because a customer has this setup and would like to make uncaught NSExceptions work correctly. With...
Remove duplicated AppIcon assets by using one shared samples assets. #skip-changelog
### Description See https://github.com/getsentry/team-mobile/issues/195.
#skip-changelog
### Description The HTTPTransport only checks if we receive any type of response from the server and then deletes the envelopes. Instead, it should only delete the envelope when receiving...
### Description The SDK sometimes crashes with. See also [internal SDK crashes](https://sentry.sentry.io/issues/5058264690/?project=4505469596663808&query=is%3Aunresolved%20sdk.version%3A8.36.0&referrer=issue-stream&sort=freq&statsPeriod=14d&stream_index=0) for reference. This is our most frequent SDK crash in our latest stable release [8.36.0](https://sentry.sentry.io/issues/?project=4505469596663808&query=is%3Aunresolved%20sdk.version%3A8.36.0&referrer=issue-stream&statsPeriod=14d&stream_index=0). ``` Exception Type:...
### Description A customer reported that they called `SentrySDK.captureException` in a tight loop to report failed HTTP requests, and the watchdog terminated their app due to OOM. Not only `captureException`,...
### Description Replace https://github.com/getsentry/sentry-react-native/blob/a3712749433c1ad536f4faf9a94520fabc9c791e/ios/RNSentry.mm#L323 with either `SentryDebugImageProvider.getDebugImagesFromCacheForFrames` or `SentryDebugImageProvider.getDebugImagesFromCacheForThreads` added in https://github.com/getsentry/sentry-cocoa/pull/4435, which will most likely ship with Cocoa 8.39.0. `getDebugImagesForAddresses` is slow and caused AppHangs on iOS; see https://github.com/getsentry/sentry-cocoa/issues/4399.
### Description The Dart SDK attaches the client report before applying the rate limit in the `client`. https://github.com/getsentry/sentry-dart/blob/0880a97f2be69b0bbd4e9fb8460afd39a73b5033/dart/lib/src/sentry_client.dart#L630-L637 In the `http_trasnport`, it then applies the rate limit https://github.com/getsentry/sentry-dart/blob/fe6dcac6041d41f2b6ff38f507a75470ea94b2f4/dart/lib/src/transport/http_transport.dart#L37-L42 Because clients...