|
1 | | -0.72.0 (??) |
2 | | - * Extending sorting to more types: boolean, short, int, long, float, double, Date, |
3 | | - and String fields are now supported |
4 | | - * Support for directly adding data to Realm using Json. |
| 1 | +0.74.0 (??) |
| 2 | + * Adding case sensitive versions of string comparison operators equalTo and notEqualTo |
| 3 | + |
| 4 | + |
| 5 | +0.73.1 (05 Nov 2014) |
| 6 | + * Fixed a bug that would send infinite notifications in some instances |
| 7 | + |
| 8 | +0.73.0 (04 Nov 2014) |
| 9 | + * Fixed a bug not allowing queries with more than 1024 conditions |
| 10 | + * Rewritten the notification system. The API did not change but it's now much more reliable |
| 11 | + * Added support for switching auto-refresh on and off (Realm.setAutoRefresh) |
| 12 | + * Added RealmBaseAdapter and an example using it |
| 13 | + * Added deleteFromRealm() method to RealmObject |
| 14 | + |
| 15 | +0.72.0 (27 Oct 2014) |
| 16 | + * Extended sorting support to more types: boolean, byte, short, int, long, float, double, Date, and String |
| 17 | + fields are now supported |
| 18 | + * Better support for Java 7 and 8 in the annotations processor |
| 19 | + * Better support for the Eclipse annotations processor |
| 20 | + * Added Eclipse support to the distribution folder |
| 21 | + * Added Realm.cancelTransaction() to cancel/abort/rollback a write transaction |
| 22 | + * Faster implementation of RealmQuery.findFirst() |
| 23 | + * Upgraded core to 0.85.1 (deep copying of strings in queries; preparation for link queries) |
| 24 | + * Added support for link queries in the form realm.where(Owner.class).equalTo("cat.age", 12).findAll() |
5 | 25 |
|
6 | 26 | 0.71.0 (07 Oct 2014) |
7 | 27 | * Simplified the release artifact to a single Jar file |
|
10 | 30 | * Throw exception if nested write transactions are used (it's not allowed) |
11 | 31 | * Javadoc updated |
12 | 32 | * Fixed bug in RealmResults: https://github.com/realm/realm-java/issues/453 |
13 | | - * New annotation @Index to add search index to a field (currently only supporting String fields) |
| 33 | + * New annotation @Index to add search index to a field (currently only supporting String fields) |
14 | 34 | * Made the annotations processor more verbose and strict |
15 | 35 | * Adding RealmQuery.count() method |
16 | 36 | * Added a new example about concurrency |
|
0 commit comments