diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dad6132274..da1e191b74a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ > This version communicates with Atlas Device Services through a different URL (https://services.cloud.mongodb.com). While we consider this an internal detail of the SDK, you might need to update rules in firewalls or other configuration that you've used to limit connections made by your app. ### Enhancements +* Added [iOS Privacy Manifest](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files?language=objc). ([#6547](https://github.com/realm/realm-js/issues/6547) * Updated bundled OpenSSL version to 3.2.0. ([realm/realm-core#7303](https://github.com/realm/realm-core/pull/7303)) * Improved performance of object notifiers with complex schemas by ~20%. ([realm/realm-core#7424](https://github.com/realm/realm-core/pull/7424)) * Improved performance with very large number of notifiers by ~75%. ([realm/realm-core#7424](https://github.com/realm/realm-core/pull/7424)) diff --git a/packages/realm/PrivacyInfo.xcprivacy b/packages/realm/PrivacyInfo.xcprivacy new file mode 100644 index 00000000000..56c9b2f6e86 --- /dev/null +++ b/packages/realm/PrivacyInfo.xcprivacy @@ -0,0 +1,23 @@ + + + + + NSPrivacyTrackingDomains + + NSPrivacyCollectedDataTypes + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPITypeReasons + + C617.1 + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + + + NSPrivacyTracking + + + diff --git a/packages/realm/RealmJS.podspec b/packages/realm/RealmJS.podspec index c12bf2ba160..d41dff36071 100644 --- a/packages/realm/RealmJS.podspec +++ b/packages/realm/RealmJS.podspec @@ -43,6 +43,7 @@ Pod::Spec.new do |s| s.source_files = 'react-native/ios/RealmReact/*.mm' s.public_header_files = 'react-native/ios/RealmReact/*.h' + s.resource_bundles = { 'RealmJS_privacy' => ['PrivacyInfo.xcprivacy'] } s.frameworks = uses_frameworks ? ['React'] : []