Skip to content

Releases: Zhuinden/realm-monarchy

Realm-Monarchy 2.2.0

26 Mar 15:45
Compare
Choose a tag to compare

Realm-Monarchy 2.2.0 (2024-03-26)

  • Update Realm-Java to 10.18.0.

Realm-Monarchy 2.1.0

29 Mar 11:31
Compare
Choose a tag to compare

Realm-Monarchy 2.1.0 (2023-03-29)

  • Update Realm-Java to 10.13.1.

  • Update androidx.lifecycle:lifecycle-livedata from 2.2.0 to 2.6.1.

  • Update compileSdk to 33.

Theoretically, there are no further changes involved with this update.

Realm-Monarchy 2.0.0

17 Dec 22:04
Compare
Choose a tag to compare

Realm-Monarchy 2.0.0 (2020-12-17)

  • Update Realm-Java to 10.2.0.

Due to a change on Realm-Java side (removal of isCompleteResult), this is probably not binary-compatible with Realm 7.0.x.

Realm-Monarchy 1.0.0

10 Oct 15:53
Compare
Choose a tag to compare

Realm-Monarchy 1.0.0 (2020-10-10)

  • BREAKING: Remove AndroidX Paging support. Due to the massive shift between Paging 2 and Paging 3, having the direct dependency on Paging is problematic.

Prefer frozen results instead, as it is more performant.

  • Add support for maxDepth on copied results. (#11)

  • Add some missing nullability annotations.

  • Update Realm-Java to 7.0.8.

Realm-Monarchy 0.7.1

25 Jun 18:39
Compare
Choose a tag to compare

Realm-Monarchy 0.7.1 (2020-06-25)

  • Add support for findAllFrozenWithChanges(Query).

  • INTERNAL: the internal RealmResults refs are no longer snapshot collections, although this doesn't seem to have any external effects.

Realm-Monarchy 0.7.0

25 Jun 18:21
Compare
Choose a tag to compare

Realm-Monarchy 0.7.0 (2020-06-25)

  • Update to AndroidX and Paging 2.

  • Update Realm to 7.0.0.

  • Increase minSDK to 16 (to match Realm).

Realm-Monarchy 0.5.1

08 Oct 10:11
6720963
Compare
Choose a tag to compare

Realm-Monarchy 0.5.1 (2018-10-08)

  • Remove createDataSourceFactory(Query, boolean asAsync) because it doesn't actually work with Sync. :(

  • Fix PagedLiveResults.updateQuery(). Now it re-creates the RealmResults as it was originally intended.

Monarchy 0.5.0

14 Sep 00:58
d39e73c
Compare
Choose a tag to compare

Monarchy 0.5.0 (2018-09-14)

  • Add openManually() and closeManually() methods for people who use Sync and need their session to stay alive in a controlled manner. Please note that this increments the Realm ref count by one, and cannot be called multiple times. (So openManually called once, then closeManually called once).

  • Add createDataSourceFactory(Query, boolean asAsync) to support creating a sync subscription through Paging. Please note that this is fairly experimental at this time.

Realm-Monarchy 0.4.3

14 Aug 23:10
Compare
Choose a tag to compare

Realm-Monarchy 0.4.3 (2018-08-15)

  • FIX: NPE when updateQuery() is called before a DataSource is created by DataSource.Factory

Realm-Monarchy 0.4.2

27 Jul 14:14
Compare
Choose a tag to compare

Realm-Monarchy 0.4.2

  • CHANGE/FIX: ManagedChangeSet uses setValue only for the initial load of synchronous query, otherwise uses postValue to prevent java.lang.IllegalStateException: Cannot call this method while RecyclerView is computing a layout or scrolling