All Versions
20
Latest Version
Avg Release Cycle
29 days
Latest Release
2517 days ago

Changelog History
Page 2

  • v2.2.7 Changes

  • v2.2.5 Changes

    • โšก๏ธ Updated Carthage Quick/Nimble dependencies
  • v2.2.4 Changes

  • v2.1.6 Changes

    • Implemented example project.
    • ๐Ÿ›  Fixed a bug with the CoreDataDefaultStorage that didn't persist the changes.
  • v2.1.4 Changes

    • โ†” Integrated with Travis-CI
  • v2.1.3 Changes

    • โž• Added initializer to RealmDefaultStorage that takes a Realm.Configuration as initializer.
  • v2.1.2 Changes

    • ๐Ÿ‘ First version giving support to RxSwift
    • ๐Ÿ›  Fixed broken unit tests after the refactor for Carthage for having SugarRecordCoreData and SugarRecordRealm
  • v2.1.1 Changes

    • โž• Added Realm 0.97 version. That version includes:
      • Support for tvOS. You can use now SugarRecord+Realm with your tvOS.
      • Better integration with Carthage. Installing SugarRecord+Realm should be faster now.
    • ๐Ÿ‘Œ Improved Carthage integration. Now each platform has two schemes, SugarRecordRealm & SugarRecordCoreData. Drag only the one you need in your app plus Realm in case you are using the Realm integration.
  • v2.1.0 Changes

    Date: 13th December 2015 ๐Ÿ”„ Changelog

    • โœ‚ Removed Result dependency from context methods. Methods throw now instead of returning a Result object wrapping Error and Values.
    • ๐Ÿšš Reviewed the interface of Context to make it similar to Realm's one: add, create, new, fetch, remove.
    • Removed asynchrony from from operation methods in storage. Asynchrony has to be handled externally now (Realm inspired).
    • โž• Added LICENSE file.
    • โž• Added fetch method to Storage using internally the main context for fetching.
    • Implemented a Reactive API in Storage: swift func rac_operation(operation: (context: Context, save: Saver) -> Void) -> SignalProducer<Void, NoError> func rac_backgroundOperation(operation: (context: Context, save: Saver) -> Void) -> SignalProducer<Void, NoError> func rac_backgroundFetch<T, U>(request: Request<T>, mapper: T -> U) -> SignalProducer<[U], Error> func rac_fetch<T>(request: Request<T>) -> SignalProducer<[T], Error>
  • v2.0.0 Changes

    Date: 8th December 2015 ๐Ÿ”„ Changelog

    • ๐Ÿ†• New version with Swift 2.XX support.
    • ๐Ÿ†• New API.
    • โœ… Test coverage of core features.
    • ๐Ÿ‘ Realm and CoreData support.
    • ๐Ÿ‘ Carthage and CocoaPods support