-
Notifications
You must be signed in to change notification settings - Fork 518
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
[CloudKit] Add support for Xcode13 beta1. #11961
[CloudKit] Add support for Xcode13 beta1. #11961
Conversation
@@ -9,6 +9,7 @@ | |||
## Not intended to be used directly by client code | |||
!missing-protocol! CKRecordKeyValueSetting not bound | |||
!missing-protocol-conformance! CKRecord should conform to CKRecordKeyValueSetting (defined in 'CKRecordKeyValueSettingConformance' category) | |||
!missing-selector! CKRecord::encryptedValues not bound |
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.
Not to be added due to the same reason, also intro says the type cannot be loaded.
src/CloudKit/Enums.cs
Outdated
@@ -14,7 +14,9 @@ public enum CKAccountStatus : long { | |||
CouldNotDetermine = 0, | |||
Available = 1, | |||
Restricted = 2, | |||
NoAccount = 3 | |||
NoAccount = 3, | |||
[Mac(12,0), iOS(15,0), TV(15,0), MacCatalyst(15,0)] |
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.
minor: space before (
but that looks like an error enum... and those, being output only, do not need availability
src/CloudKit/Enums.cs
Outdated
@@ -82,6 +84,8 @@ public enum CKErrorCode : long { | |||
ParticipantMayNeedVerification = 33, | |||
ResponseLost = 34, | |||
AssetNotAvailable = 35, | |||
[Mac(12,0), iOS(15,0), TV(15,0), MacCatalyst (15,0)] |
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.
not needed
src/CloudKit/Enums.cs
Outdated
[iOS (10,0), TV (10,0), Mac (10,12)] Sharing = 1 << 2, | ||
[iOS (10,0), TV (10,0), Mac (10,12)] | ||
Sharing = 1 << 2, | ||
[Mac(12,0), iOS(15,0), TV(15,0)] |
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.
minor: space before (
src/cloudkit.cs
Outdated
@@ -115,6 +119,10 @@ interface CKShareMetadata : NSCopying, NSSecureCoding | |||
|
|||
[NullAllowed, Export ("rootRecord", ArgumentSemantic.Strong)] | |||
CKRecord RootRecord { get; } | |||
|
|||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst(15,0)] |
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.
minor: space before (
src/cloudkit.cs
Outdated
@@ -129,6 +137,11 @@ interface CKShare | |||
[DesignatedInitializer] | |||
IntPtr Constructor (CKRecord rootRecord, CKRecordID shareID); | |||
|
|||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst(15,0)] |
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.
minor: space before (
src/cloudkit.cs
Outdated
@@ -1764,6 +1883,9 @@ interface CKDiscoverAllUserIdentitiesOperation | |||
Action<NSError> Completed { get; set; } | |||
} | |||
|
|||
[iOS (15,0), Watch (8,0), TV (15,0), Mac (12,0)] |
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.
catalyst ?
[Deprecated (PlatformName.WatchOS, 8, 0, message: "Use 'PerShareParticipantCompletionHandler' instead.")] | ||
[Deprecated (PlatformName.TvOS, 15, 0, message: "Use 'PerShareParticipantCompletionHandler' instead.")] | ||
[Deprecated (PlatformName.iOS, 15, 0, message: "Use 'PerShareParticipantCompletionHandler' instead.")] | ||
[Deprecated (PlatformName.MacOSX, 12, 0, message: "Use 'PerShareParticipantCompletionHandler' instead.")] |
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.
catalyst ?
src/cloudkit.cs
Outdated
[NullAllowed, Export ("shareParticipantFetchedBlock", ArgumentSemantic.Copy)] | ||
Action<CKShareParticipant> Fetched { get; set; } | ||
|
||
[NullAllowed, Export ("fetchShareParticipantsCompletionBlock", ArgumentSemantic.Copy)] | ||
Action<NSError> Completed { get; set; } | ||
|
||
[NullAllowed] | ||
[iOS (15,0), Watch (8,0), TV (15,0), Mac (12,0), MacCatalyst(15,0)] |
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.
f&r
src/cloudkit.cs
Outdated
@@ -1885,5 +2016,9 @@ interface CKFetchDatabaseChangesOperation | |||
|
|||
[NullAllowed, Export ("fetchDatabaseChangesCompletionBlock", ArgumentSemantic.Copy)] | |||
CKFetchDatabaseChangesCompletionHandler ChangesCompleted { get; set; } | |||
|
|||
[Watch (8,0), TV (15,0), Mac (12,0), iOS (15,0), MacCatalyst(15,0)] |
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.
f&r
@@ -9,6 +9,7 @@ | |||
## Not intended to be used directly by client code | |||
!missing-protocol! CKRecordKeyValueSetting not bound | |||
!missing-protocol-conformance! CKRecord should conform to CKRecordKeyValueSetting (defined in 'CKRecordKeyValueSettingConformance' category) | |||
!missing-selector! CKRecord::encryptedValues not bound |
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.
is the comment above applicable here ?
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.
yes, same issue.
❌ [PR Build] Tests failed on Build ❌Tests failed on Build. API diff✅ API Diff from stable View API diffAPI & Generator diffℹ️ API Diff (from PR only) (please review changes) GitHub pagesResults can be found in the following github pages (it might take some time to publish): Test results1 tests failed, 85 tests passed.Failed tests
Pipeline on Agent XAMBOT-1097.BigSur' |
No description provided.