forked from vicpinm/Kotlin-Realm-Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangelog
More file actions
36 lines (28 loc) · 1.18 KB
/
Changelog
File metadata and controls
36 lines (28 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
###1.1.5
- Separated library into modules.
###1.1.2
- Removed deprecated methods
- Code cleaned up and refactored
- New sorted methods for observable, flowable and single methods
###1.1.1
- Support for realm 3.5.0 and Kotlin 1.1.3
- Avoid NPE when RealmObject instance does not belong to realm instance
###1.0.9
- Added support for rxjava 2
- allItemsAsObservable method deprecated. Use queryAllAsObservable() instead.
###1.0.8
- Added count method to RealmObject
###1.0.7
- Updated to Kotlin 1.1.2 and Realm 3.1.3
###1.0.6
- firstItem property deprecated. Use queryFirst() instead. Same for async version.
- lastItem property deprecated. Use queryLast() instead. Same for async version.
- allItems property deprecatd. Use queryAll() instead. Same for async version.
- If you perform observable queries on a background thread, now those queries are executed on a background thread with a looper attached, instead of execute them on the main thread.
- Added new method queryLast with a condition.
- Removed manifest params from library module.
###1.0.5
- Added new method queryFirst()
- Added new methods of the family querySorted()
###1.0.4
- Added saveManaged() methods