Skip to content
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

[feature/privacy-manifests] Add required privacy manifests #1348

Merged
merged 4 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ownCloud admins and users.
## Summary

* Bugfix - Fix cleanup of Available Offline policies targeting unavailable spaces: [#1343](https://github.com/owncloud/ios-app/pull/1343)
* Change - Add required privacy manifests: [#1348](https://github.com/owncloud/ios-app/pull/1348)
* Enhancement - Improved sidebar with account-wide search: [#1320](https://github.com/owncloud/ios-app/pull/1320)
* Enhancement - Password Policy support: [#1325](https://github.com/owncloud/ios-app/pull/1325)

Expand All @@ -45,6 +46,19 @@ ownCloud admins and users.

https://github.com/owncloud/ios-app/pull/1343

* Change - Add required privacy manifests: [#1348](https://github.com/owncloud/ios-app/pull/1348)

Adds the [privacy
manifest](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api?language=objc)
[required by Apple starting May 1,
2024](https://developer.apple.com/news/?id=3d8a9yyh) to the app and upgrades
`krzyzanowskim/OpenSSL` to
[3.1.5001](https://github.com/krzyzanowskim/OpenSSL/releases/tag/3.1.5001) to
include a privacy manifest as [also required by
Apple](https://developer.apple.com/support/third-party-SDK-requirements/).

https://github.com/owncloud/ios-app/pull/1348

* Enhancement - Improved sidebar with account-wide search: [#1320](https://github.com/owncloud/ios-app/pull/1320)

This PR: - removes `Quick Access` from the sidebar, redistributing its prior
Expand Down
36 changes: 36 additions & 0 deletions PrivacyInfo.xcprivacy
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?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>
<key>NSPrivacyAccessedAPITypes</key>
<array>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>CA92.1</string>
<string>1C8F.1</string>
<string>AC6B.1</string>
</array>
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>35F9.1</string>
</array>
</dict>
<dict>
<key>NSPrivacyAccessedAPIType</key>
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
<key>NSPrivacyAccessedAPITypeReasons</key>
<array>
<string>DDA9.1</string>
<string>C617.1</string>
</array>
</dict>
</array>
</dict>
</plist>
5 changes: 5 additions & 0 deletions changelog/12.2.0_2024-04-23/1348
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Change: Add required privacy manifests

Adds the [privacy manifest](https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api?language=objc) [required by Apple starting May 1, 2024](https://developer.apple.com/news/?id=3d8a9yyh) to the app and upgrades `krzyzanowskim/OpenSSL` to [3.1.5001](https://github.com/krzyzanowskim/OpenSSL/releases/tag/3.1.5001) to include a privacy manifest as [also required by Apple](https://developer.apple.com/support/third-party-SDK-requirements/).

https://github.com/owncloud/ios-app/pull/1348
2 changes: 1 addition & 1 deletion ios-sdk
16 changes: 15 additions & 1 deletion ownCloud.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,12 @@
DCB6B20C292E428000D27573 /* AccountController+ExtraItems.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCB6B20B292E428000D27573 /* AccountController+ExtraItems.swift */; };
DCB6B20F292F843800D27573 /* CollectionViewAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCB6B20E292F843800D27573 /* CollectionViewAction.swift */; };
DCB796582BC535AD00D6D759 /* RemoveFromSidebarAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCB796572BC535AD00D6D759 /* RemoveFromSidebarAction.swift */; };
DCB86E8F2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = DCB86E8E2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy */; };
DCB86E902BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = DCB86E8E2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy */; };
DCB86E912BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = DCB86E8E2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy */; };
DCB86E922BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = DCB86E8E2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy */; };
DCB86E932BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = DCB86E8E2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy */; };
DCB86E942BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = DCB86E8E2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy */; };
DCBAEADB29A3674700BFF393 /* OCItemPolicy+UniversalItemListCellContentProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCBAEAD429A361C100BFF393 /* OCItemPolicy+UniversalItemListCellContentProvider.swift */; };
DCBAEADE29A5536F00BFF393 /* CollectionViewSupplementaryCellProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCBAEADD29A5536F00BFF393 /* CollectionViewSupplementaryCellProvider.swift */; };
DCBAEAE029A554CC00BFF393 /* CollectionViewSupplementaryItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCBAEADF29A554CC00BFF393 /* CollectionViewSupplementaryItem.swift */; };
Expand Down Expand Up @@ -1551,6 +1557,7 @@
DCB6B20E292F843800D27573 /* CollectionViewAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CollectionViewAction.swift; sourceTree = "<group>"; };
DCB6C4DD24559B1600C1EAE1 /* AccountAuthenticationUpdaterPasswordPromptViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountAuthenticationUpdaterPasswordPromptViewController.swift; sourceTree = "<group>"; };
DCB796572BC535AD00D6D759 /* RemoveFromSidebarAction.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RemoveFromSidebarAction.swift; sourceTree = "<group>"; };
DCB86E8E2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
DCBAEAD429A361C100BFF393 /* OCItemPolicy+UniversalItemListCellContentProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "OCItemPolicy+UniversalItemListCellContentProvider.swift"; sourceTree = "<group>"; };
DCBAEADD29A5536F00BFF393 /* CollectionViewSupplementaryCellProvider.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CollectionViewSupplementaryCellProvider.swift; sourceTree = "<group>"; };
DCBAEADF29A554CC00BFF393 /* CollectionViewSupplementaryItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CollectionViewSupplementaryItem.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -1851,6 +1858,7 @@
children = (
DC3BAC63282472A80057FCD4 /* KNOWN_ISSUES.md */,
DC9BFBB220A19AF3007064B5 /* doc */,
DCB86E8E2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy */,
233BDEBF204FEFF300C06732 /* ownCloudSDK.xcodeproj */,
233BDE9E204FEFE500C06732 /* ownCloud */,
DC7DBA10207F59C500E7337D /* External */,
Expand Down Expand Up @@ -4305,6 +4313,7 @@
39DF77D524EA854C0066E8F0 /* LaunchScreen.storyboard in Resources */,
3968C883239C54AD00AC28AC /* ReleaseNotes.plist in Resources */,
59D4895220C83F2E00369C2E /* InfoPlist.strings in Resources */,
DCB86E8F2BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */,
593A821120C7D4C5000E2A90 /* Localizable.strings in Resources */,
DCE684F6241BD4E800799C30 /* Branding.plist in Resources */,
DC9BFBB320A19AF4007064B5 /* doc in Resources */,
Expand All @@ -4325,6 +4334,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DCB86E942BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */,
391933DA2B0B9863007DF90B /* InfoPlist.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -4373,13 +4383,15 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DCB86E922BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
39DC7CCB25C2E1570001E08C /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DCB86E912BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */,
39DC7CD325C2E1570001E08C /* MainInterface.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand All @@ -4397,6 +4409,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
DCB86E902BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */,
DC576EC022647A070087316D /* Localizable.strings in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand All @@ -4408,6 +4421,7 @@
392DDAE624C8923B009E5406 /* Assets.xcassets in Resources */,
39534BC724EA903200AD7907 /* InfoPlist.strings in Resources */,
3949F6A224E6781600EC99A3 /* Localizable.strings in Resources */,
DCB86E932BD7B9EE00492C09 /* PrivacyInfo.xcprivacy in Resources */,
39E104CA24C585C30085FDDD /* (null) in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down Expand Up @@ -6313,7 +6327,7 @@
repositoryURL = "https://github.com/krzyzanowskim/OpenSSL.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 1.0.0;
minimumVersion = 3.1.5001;
};
};
DCEAF08B28084B3800980B6D /* XCRemoteSwiftPackageReference "Down" */ = {
Expand Down