Releases: ftchirou/PredicateKit
Releases · ftchirou/PredicateKit
Release list
1.10.0
What's Changed
- Add support for
SectionedFetchRequestand for updating predicates in SwiftUI by @RCCoop in #29 - Allow enums, identifiables, and nils on the right hand side of the
!=operator by @ftchirou in #28
Full Changelog: 1.9.0...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 == attachmentNew Contributors
- @AliSoftware made their first contribution in #16
Full Changelog: 1.5.0...1.6.0
1.5.0
What's Changed
- Use
NSSecureUnarchiveFromDataTransformerNameby @jordanekay in #10 - Allow the
inexpression 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
1.2.1
- Set availability of the
@FetchRequestextensions to6.0for watchOS and13.0for tvOS.