Skip to content

Sync — 3.1.0

Compare
Choose a tag to compare
@3lvis 3lvis released this 22 Mar 14:06
· 350 commits to master since this release
  • Improved Sync helpers (#381)
// For example now you can do
dataStack.sync(objectsB, inEntityNamed: "User", operations: [.update], completion: nil)

// Instead of
Sync.changes(objectsB, inEntityNamed: "User", dataStack: dataStack, operations: [.update], completion: nil)
  • Improved performance when using operations filtering will be done only in the requested operations (#384)

  • Added support for deep-mapping for to-many relationships (#385)

  • Added support for sync.isPrimaryKey as an alternative to hyper.isPrimaryKey and sync.remoteKey to be used instead of hyper.remoteKey. All of this without breaking backward compatibility so you don't have to change anything. (#388 and #390)