-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Privacy Manifest #326
Add Privacy Manifest #326
Conversation
Fixes #319
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For Manifest completeness you can include the tracking KVPs as well.
<key>NSPrivacyTracking</key>
<false/>
<key>NSPrivacyCollectedDataTypes</key>
<array/>
<key>NSPrivacyTrackingDomains</key>
<array/>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, I've added the entries and a few changes that hopefully fix the tests
- Swap Cloudflare domain with Data Theorem for TSKEndToEndSwizzlingTests - Add PrivacyInfo.xcprivacy to Xcode project for all targets - Remove noop assign
Hello, Thanks. |
3.0.4 has been released for SPM and CocoaPods |
@uroboro Can you also mark it as a release, some scripts won't pull if it's only a tag. |
…1148) This PR contains the following updates: | Package | Update | Change | |---|---|---| | [datatheorem/TrustKit](https://togithub.com/datatheorem/TrustKit) | patch | `from: "3.0.3"` -> `from: "3.0.4"` | --- ### Release Notes <details> <summary>datatheorem/TrustKit (datatheorem/TrustKit)</summary> ### [`v3.0.4`](https://togithub.com/datatheorem/TrustKit/releases/tag/3.0.4) [Compare Source](https://togithub.com/datatheorem/TrustKit/compare/3.0.3...3.0.4) #### What's Changed - Add a [Privacy Manifest](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files?language=objc) declaring TrustKit's usage of the `NSUserDefaults` API. [https://github.com/datatheorem/TrustKit/pull/326](https://togithub.com/datatheorem/TrustKit/pull/326) **Full Changelog**: datatheorem/TrustKit@3.0.3...3.0.4 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDkuNCIsInVwZGF0ZWRJblZlciI6IjM4LjQwLjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=--> Co-authored-by: cgrindel-self-hosted-renovate[bot] <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Fixes #319