Skip to content

Commit d7947dc

Browse files
committed
Merge branch 'releases'
2 parents e8949fe + 73ff3b9 commit d7947dc

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## 2.0.0-SNAPSHOT (YYYY-MM-DD)
22

3-
[!NOTE]
4-
This release will bump the Realm file format 24. Opening a file with an older format will automatically upgrade it from file format v10. If you want to upgrade from an earlier file format version you will have to use Realm Kotlin v1.13.1 or earlier. Downgrading to a previous file format is not possible.
3+
> [!NOTE]
4+
> This release will bump the Realm file format 24. Opening a file with an older format will automatically upgrade it from file format v10. If you want to upgrade from an earlier file format version you will have to use Realm Kotlin v1.13.1 or earlier. Downgrading to a previous file format is not possible.
55
66
### Breaking changes
77
* Removed property `RealmLog.level`. Log levels can be set with `RealmLog.setLevel`. (Issue [#1691](https://github.com/realm/realm-kotlin/issues/1691) [JIRA](https://jira.mongodb.org/browse/RKOTLIN-1038))
@@ -12,7 +12,7 @@ This release will bump the Realm file format 24. Opening a file with an older fo
1212
* [Sync] Removed deprecated methods `User.identity` and `User.provider`, user identities can be accessed with the already existing `User.identities`. (Issue [#1751](https://github.com/realm/realm-kotlin/issues/1751) [JIRA](https://jira.mongodb.org/browse/RKOTLIN-1083))
1313
* [Sync] `App.allUsers` does no longer return a map, but only a list of users known locally. (Issue [#1751](https://github.com/realm/realm-kotlin/issues/1751) [JIRA](https://jira.mongodb.org/browse/RKOTLIN-1083))
1414
* [Sync] Removed deprecated `DiscardUnsyncedChangesStrategy.onError`. (Issue [#1755](https://github.com/realm/realm-kotlin/issues/1755) [JIRA](https://jira.mongodb.org/browse/RKOTLIN-1085))
15-
* [Sync] Sync progress notifications now reports an estimate ranged from `0.0` to `1.0` with `Progress.estimate` instead of `transferredBytes` and `totalBytes`. (Issue [#1744](https://github.com/realm/realm-kotlin/issues/1744) [RKOTLIN-1079](https://jira.mongodb.org/browse/RKOTLIN-1079)).
15+
* [Sync] Sync progress notifications now reports an estimate ranged from `0.0` to `1.0` with `Progress.estimate` instead of `transferredBytes` and `totalBytes`. (Issue [#1744](https://github.com/realm/realm-kotlin/issues/1744)/[RKOTLIN-1079](https://jira.mongodb.org/browse/RKOTLIN-1079)).
1616

1717
### Enhancements
1818
* Support for RealmLists and RealmDictionaries in `RealmAny`. (Issue [#1434](https://github.com/realm/realm-kotlin/issues/1434))
@@ -48,11 +48,8 @@ This release will bump the Realm file format 24. Opening a file with an older fo
4848

4949
## 1.16.0 (2024-05-01)
5050

51-
52-
## 1.16.0 (2024-05-01)
53-
54-
[!NOTE]
55-
This release will bump the Realm file format from version 23 to 24. Opening a file with an older format will automatically upgrade it from file format v10. If you want to upgrade from an earlier file format version you will have to use Realm Kotlin v1.13.1 or earlier. Downgrading to a previous file format is not possible.
51+
> [!NOTE]
52+
> This release will bump the Realm file format from version 23 to 24. Opening a file with an older format will automatically upgrade it from file format v10. If you want to upgrade from an earlier file format version you will have to use Realm Kotlin v1.13.1 or earlier. Downgrading to a previous file format is not possible.
5653
5754
### Breaking changes
5855
* None.

packages/test-sync/src/commonTest/kotlin/io/realm/kotlin/test/mongodb/common/PBSProgressListenerTests.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ import kotlinx.coroutines.withTimeout
5151
import kotlin.random.Random
5252
import kotlin.test.AfterTest
5353
import kotlin.test.BeforeTest
54+
import kotlin.test.Ignore
5455
import kotlin.test.Test
5556
import kotlin.test.assertEquals
5657
import kotlin.test.assertFailsWith
@@ -81,6 +82,7 @@ class PBSProgressListenerTests {
8182
}
8283

8384
@Test
85+
@Ignore // https://github.com/realm/realm-core/issues/7627
8486
fun downloadProgressListener_changesOnly() = runBlocking {
8587
Realm.open(createSyncConfig(app.createUserAndLogIn())).use { uploadRealm ->
8688
// Verify that we:
@@ -182,6 +184,7 @@ class PBSProgressListenerTests {
182184
}
183185

184186
@Test
187+
@Ignore // https://github.com/realm/realm-core/issues/7627
185188
fun worksAfterExceptions() = runBlocking {
186189
Realm.open(createSyncConfig(app.createUserAndLogIn())).use { realm ->
187190
realm.writeSampleData(TEST_SIZE, timeout = TIMEOUT)
@@ -205,6 +208,7 @@ class PBSProgressListenerTests {
205208
}
206209

207210
@Test
211+
@Ignore // https://github.com/realm/realm-core/issues/7627
208212
fun worksAfterCancel() = runBlocking {
209213
Realm.open(createSyncConfig(app.createUserAndLogIn())).use { realm ->
210214
realm.writeSampleData(TEST_SIZE, timeout = TIMEOUT)
@@ -236,6 +240,7 @@ class PBSProgressListenerTests {
236240
}
237241

238242
@Test
243+
@Ignore // https://github.com/realm/realm-core/issues/7627
239244
fun triggerImmediatelyWhenRegistered() = runBlocking {
240245
Realm.open(createSyncConfig(app.createUserAndLogIn())).use { realm ->
241246
withTimeout(10.seconds) {

0 commit comments

Comments
 (0)