Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Releases: polqf/RealmResultsController

0.5.0 - Swift 3

24 Sep 16:58
Compare
Choose a tag to compare

This release drops support for Swift 2.X (you can still have it on swift-2.3 branch)

It also updates to the latest Realm version (v1.1.0)

0.4.4

06 Jun 21:14
Compare
Choose a tag to compare

Update to the last Realm version (1.0.0)

0.4.3

05 May 21:30
Compare
Choose a tag to compare

Hot fix:

  • When RRC was being installed through CocoaPods, we were not restricting the Realm version to a RRC compatible one. (#78)

0.4.2

12 Apr 18:54
Compare
Choose a tag to compare

WHAT'S NEW?

  • Update Dependecies Realm to 0.98.6
  • Adapt to Swift 2.2
  • Fix a warning due to an unnexisting path in framework paths
  • Update travis to use xcode7.3

⚠️ DISCLAIMER
This version contains Swift 2.2 syntax, if you are using <2.2, please use 0.4.1 version

0.4.1

10 Feb 16:32
Compare
Choose a tag to compare
  • Updating Realm to 0.98 (#68 @poolqf)
  • When subscribed to a single object change, now sending a RealmChange as object of the NSNotification. (#67 @poolqf)
  • Fixed a bug when sending two events (add/delete/update) for an object inside the same realm write block. (#67 @poolqf )
    • Showing a warn message when that happens.
    • Set a symbolic breakpoint RealmResultsController.warnDuplicated to debug it
    • More information about this change here: #66

0.4.0

13 Jan 15:58
Compare
Choose a tag to compare

FIXES AND IMPROVEMENTS:

  • Updating Realm dependency to 0.97 (@poolqf #52 )
    • Many thanks to @bigfish24 for helping to workaround the runloop check Realm is doing in this version
  • Defending against deleteOutdatedObject returning -1 (@poolqf #53 )
  • Fix incorrect thread access when having relationships in the predicate (@ngs #56)
  • Method to mirror Objects(getMirror()) is now available as an Object Extension ( @bronenos #57 )
  • Speed up initial RealmCache population ( @bronenos #58 )
  • Support for descending sections sort ( @bronenos #60 )

0.3.1

14 Dec 11:59
Compare
Choose a tag to compare
  • Added TravisCI for all branches (embedded status images on the README)
  • Removed implicit unwraps all around the code

⬇️ Added precompiled framework

0.3.0

11 Dec 11:05
Compare
Choose a tag to compare
  • Operations on each RRC are now enqueued to avoid unordered calls to willChangeResults and didChangeResults.
  • Each RRC has its own queue. (Managed by RealmQueueManager)

⬇️ Added precompiled framework

0.2.5

09 Dec 16:17
Compare
Choose a tag to compare

Update Realm dependency version to v0.96.3

0.2.4

30 Nov 11:11
Compare
Choose a tag to compare

When using RRC embedded framework in an Extension, it is required to have the APPLICATION_EXTENSION_API_ONLY flag set to YES.

If not, Xcode shows the following warning
⚠️ linking against dylib not safe for use in application extensions

More info here: https://developer.apple.com/library/prerelease/ios/documentation/General/Conceptual/ExtensibilityPG/ExtensionScenarios.html#//apple_ref/doc/uid/TP40014214-CH21-SW5car

⬇️ Added precompiled framework