Releases: modo-studio/SugarRecord
Releases · modo-studio/SugarRecord
Bug fixing version
- Checked SugarRecord can be used on iOS 7.0
- Solved some problems on the
by(...)
method - Added feature to cancel transaction
- Added auto-saving feature to CoreData default stack
- Filled the Wiki page
- Removed some optionals that caused compilation errors with the last SDK
- Created an example project.
- Generated documentation with Jazzy
- Returned arrays from fetches are now always non-optionals
Version 1.0.1
- Playground tutorial to learn how to use SugaRecord
- Migrations support
- Count methods
CoreDataObject.all().count()
- Swift custom operators
var person = context <- Person.self // Object creation in a given context
var person = Person.self++ // Object creation in the default context
Person.self += person // Object saving
Person.self -= person // Object deletion
- FetchedResultsController support
CoreDataObject.all().fetchedResultsController("name")
- Stack for iCloud
Version 1.0.0
Version 1.0.0 of SugarRecord completely refactored from the initial versions.
- Support to Realm and CoreData
- Implementation based on user selected stack
- 100% Unit Test coverage
- Fully documented.
- Default stacks for CoreData and Realm
- Support to RestKit with a custom stack