You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+32-4Lines changed: 32 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,22 +1,50 @@
1
-
## 10.4.0 (YYYY-MM-DD)
1
+
## 10.4.0 (2021-03-26)
2
+
3
+
All releases from 10.4.0 and forward are now found on `mavenCentral()` instead of `jcenter()`.
4
+
5
+
A minimal supported setup will therefore now look like this:
6
+
7
+
```
8
+
allprojects {
9
+
buildscript {
10
+
repositories {
11
+
mavenCentral()
12
+
}
13
+
dependencies {
14
+
classpath "io.realm:realm-gradle-plugin:10.4.0"
15
+
}
16
+
}
17
+
18
+
repositories {
19
+
mavenCentral()
20
+
}
21
+
}
22
+
```
23
+
24
+
`SNAPSHOT` releases have also been moved from `http://oss.jfrog.org/artifactory/oss-snapshot-local`
25
+
to `https://oss.sonatype.org/content/repositories/snapshots/`. See [here](https://github.com/realm/realm-java/blob/master/README.md#using-snapshots)
26
+
for more information.
2
27
3
28
### Enhancements
4
29
* Added support for `java.util.UUID` as supported field in model classes.
5
30
* Added support for `java.util.UUID` as a primary key.
6
31
* Added support for the string-based Realm Query Language through `RealmQuery.rawPredicate(...)`. This allows many new type of queries not previously supported by the typed query API. See the Javadoc on this method for further details. (Issue [#6116](https://github.com/realm/realm-java/pull/6116))
32
+
* Performance of sorting on more than one property has been improved. Especially important if many elements match on the first property.
7
33
8
34
### Fixes
9
-
* None
35
+
* Calling max/min/sum/avg on a List may give wrong results (Realm Core [#4252](https://github.com/realm/realm-core/issues/4252), since v10.0.0)
36
+
* Fix an issue when using `RealmResults.freeze()` across threads with different transaction versions. Previously, copying the `RealmsResults`' native resource could result in a stale state or objects from a future version. (Realm Core [#4254](https://github.com/realm/realm-core/pull/4254)).
37
+
* On 32-bit devices you may get exception with "No such object" when upgrading to v10.* ([#7314](https://github.com/realm/realm-java/issues/7314), since v10.0.0)
10
38
11
39
### Compatibility
12
40
* File format: Generates Realms with format v20. Unsynced Realms will be upgraded from Realm Java 2.0 and later. Synced Realms can only be read and upgraded if created with Realm Java v10.0.0-BETA.1.
13
41
* APIs are backwards compatible with all previous release of realm-java in the 10.x.y series.
14
42
* Realm Studio 10.0.0 or above is required to open Realms created by this version.
15
43
16
44
### Internal
17
-
* Updated to Realm Core commit: df57de0101b5b817f8f4158cf45e11985cd640c2.
45
+
* Updated to Realm Core 10.5.6, commit 92129110dece2cee59839e20be3a7067084a1196.
0 commit comments