Skip to content

Releases: modo-studio/SugarRecord

Bug fixing version

15 Dec 17:00
Compare
Choose a tag to compare
  • 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

06 Oct 14:38
Compare
Choose a tag to compare
  • 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

30 Sep 11:28
Compare
Choose a tag to compare

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