From 7475946d58b0d0cc96b0a1ea2ebae3724baeb1f9 Mon Sep 17 00:00:00 2001 From: Karl Heinz Struggl Date: Fri, 2 May 2025 15:18:16 +0200 Subject: [PATCH 1/2] fixes missing semicolons in objc snippets --- docs/platforms/apple/common/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/platforms/apple/common/index.mdx b/docs/platforms/apple/common/index.mdx index 4a88174b2d55a..d575394f13d55 100644 --- a/docs/platforms/apple/common/index.mdx +++ b/docs/platforms/apple/common/index.mdx @@ -134,7 +134,7 @@ func application(_ application: UIApplication, // Adds IP for users. // For more information, visit: https://docs.sentry.io/platforms/apple/data-management/data-collected/ - options.sendDefaultPii = YES + options.sendDefaultPii = YES; // ___PRODUCT_OPTION_START___ performance // Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring. @@ -231,7 +231,7 @@ func application(_ application: UIApplication, // Adds IP for users. // For more information, visit: https://docs.sentry.io/platforms/apple/data-management/data-collected/ - options.sendDefaultPii = YES + options.sendDefaultPii = YES; // ___PRODUCT_OPTION_START___ performance // Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring. From 44f0cf87b653702bc03b0473a56ee41ec742039e Mon Sep 17 00:00:00 2001 From: Karl Heinz Struggl Date: Fri, 2 May 2025 16:22:46 +0200 Subject: [PATCH 2/2] adds callout data collected is platform specific --- .../apple/common/data-management/data-collected.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/platforms/apple/common/data-management/data-collected.mdx b/docs/platforms/apple/common/data-management/data-collected.mdx index ce02a8da83d72..062688353f9c5 100644 --- a/docs/platforms/apple/common/data-management/data-collected.mdx +++ b/docs/platforms/apple/common/data-management/data-collected.mdx @@ -8,6 +8,14 @@ Sentry takes data privacy very seriously and has default settings in place that The category types and amount of data collected vary, depending on the integrations you've enabled in the Sentry SDK. This page lists data categories that the Apple SDK collects. + + + + The types and amount of information collected depends on the platform on which the Apple SDK is used. Refer to the respective platform guide to see information specific to the platform you're interested in. + + + + ## HTTP Headers The HTTP Client Errors, which are enabled by default, send the HTTP headers of the failed request and response to Sentry. The SDK uses a [denylist](https://github.com/getsentry/sentry-cocoa/blob/main/Sources/Swift/Tools/HTTPHeaderSanitizer.swift) to filter out any headers that contain sensitive data.