PredicateKit Versions Save

🎯 PredicateKit allows Swift developers to write expressive and type-safe predicates for CoreData using key-paths, comparisons and logical operators, literal values, and functions.

1.9.0

1 month ago

What's Changed

Full Changelog: https://github.com/ftchirou/PredicateKit/compare/1.8.0...1.9.0

1.8.0

1 month ago

What's Changed

Full Changelog: https://github.com/ftchirou/PredicateKit/compare/1.7.0...1.8.0

1.7.0

5 months ago

What's Changed

  • Add a privacy manifest

Full Changelog: https://github.com/ftchirou/PredicateKit/compare/1.6.1...1.7.0

1.6.1

11 months ago

What's Changed

  • Fix an issue causing builds to fail on tvOS and watchOS.

Full Changelog: https://github.com/ftchirou/PredicateKit/compare/1.6.0...1.6.1

1.6.0

11 months ago

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

Full Changelog: https://github.com/ftchirou/PredicateKit/compare/1.5.0...1.6.0

1.5.0

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/ftchirou/PredicateKit/compare/1.4.0...1.5.0

1.4.0

3 years ago
  • Add support for predicates on optionals. Fixes #5.

1.3.0

3 years ago

1.2.1

3 years ago
  • Set availability of the @FetchRequest extensions to 6.0 for watchOS and 13.0 for tvOS.

1.2.0

3 years ago

✨ Thanks to the Twitter user erλend for suggesting this feature.