Releases: ftchirou/PredicateKit
Releases · ftchirou/PredicateKit
1.10.0
1.9.0
1.8.0
1.7.0
1.6.1
What's Changed
- Fix an issue causing builds to fail on tvOS and watchOS.
Full Changelog: 1.6.0...1.6.1
1.6.0
What's Changed
Example
class Note: NSManagedObject {
@NSManaged var attachment: Attachment
}
class Attachment: NSManagedObject, Identifiable {
@NSManaged var id: String
}
let attachment: Attachment = // ...
let predicate = \Note.attachment == attachment
New Contributors
- @AliSoftware made their first contribution in #16
Full Changelog: 1.5.0...1.6.0
1.5.0
What's Changed
- Use
NSSecureUnarchiveFromDataTransformerName
by @jordanekay in #10 - Allow the
in
expression to have a list or a set as a parameter by @omiz in #11
New Contributors
- @jordanekay made their first contribution in #10
- @omiz made their first contribution in #11
Full Changelog: 1.4.0...1.5.0
1.4.0
1.3.0
- Fix build failure in Xcode 12.5 beta.
1.2.1
- Set availability of the
@FetchRequest
extensions to6.0
for watchOS and13.0
for tvOS.