Skip to content

Releases: 3lvis/Sync

Sync — 1.6.6

06 May 12:56
Compare
Choose a tag to compare

Updated to DATAStack 5.0.0

Release notes from DATAStack here:

  • Refactored all the things to have better error handling and better code coverage
  • Added a new method to create a background context, super useful when doing saves with NSOperations
public func newBackgroundContext() -> NSManagedObjectContext

BREAKING CHANGE

  • Removed the need to call persistWithCompletion or persist, you just need to save your used context and magic will happen
// Just kill this babies, they are no longer needed
dataStack.persist {error in
}

dataStack.persistWithCompletion {

}
  • Now drop() throws, before it was hiding the error message but now you can deal with that. If you're an Objective-C user this will no work for you, use forceDrop() instead

Before:

dataStack.drop()

After:

try dataStack.drop()

Sync — 1.6.5

03 May 07:51
Compare
Choose a tag to compare
  • Fix bug where many to many relationship didn't cleared contents of relationship when sending empty list of children. More information on: #202

Thanks to @xTheRamon for reporting this issue 👏

Sync — 1.6.4

19 Apr 13:03
Compare
Choose a tag to compare

Sync — 1.6.3

19 Apr 12:52
Compare
Choose a tag to compare
  • Converted forced unwrapped optionals into fatalErrors for better crash reporting

Sync — 1.6.2

13 Apr 13:06
Compare
Choose a tag to compare

Updated NSManagedObject-HYPPropertyMapper — 3.6.0, which now includes support for transformable types. Make sure to check the relevant pull request for more information.

@AlexKel kicks ass.

giphy-1

Sync — 1.6.1

12 Apr 08:51
Compare
Choose a tag to compare
  • Updated DATAStack containing fix for TestCheck not working fine in Xcode 7.3

Thanks @wh33ler, you rock!

Previously in 1.6.0

AUTOMATIC SUPPORT FOR CAMELCASE MAPPINGS!

🎉 🎉 OMG OMG OMG 🎉 🎉

This comes thanks to @wainglaister who added this feature to NSManagedObject-HYPPropertyMapper. Fuck yeah!

15bb05b8-fe45-11e5-9af6-c8d2479db503

Sync — 1.6.0

09 Apr 11:59
Compare
Choose a tag to compare

AUTOMATIC SUPPORT FOR CAMELCASE MAPPINGS!

🎉 🎉 OMG OMG OMG 🎉 🎉

This comes thanks to @wainglaister who added this feature to NSManagedObject-HYPPropertyMapper. Fuck yeah!

15bb05b8-fe45-11e5-9af6-c8d2479db503

Sync — 1.5.4

31 Mar 11:19
Compare
Choose a tag to compare
  • Updated NSManagedObject-HYPPropertyMapper dependecy to 3.4.3

Sync — 1.5.3

27 Mar 14:28
Compare
Choose a tag to compare
  • Updated for Swift 2.2

Sync — 1.5.2

04 Mar 11:48
Compare
Choose a tag to compare
  • Fixed an issue with using an entity that has multiple many-to-many relationships.

For example:

screen shot 2016-03-04 at 12 47 49

This comes thanks to the fantastic @wainglaister in #179. 👏 👏 👏 👏 👏 👏