Skip to content

Commit e0c2fbb

Browse files
authored
Upgrade to core 14.4.1 (#8526)
1 parent 0a97dda commit e0c2fbb

File tree

5 files changed

+35
-13
lines changed

5 files changed

+35
-13
lines changed

CHANGELOG.md

Lines changed: 26 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
10.49.1 Release notes (2024-03-22)
2+
=============================================================
3+
4+
### Enhancements
5+
6+
* Improve file compaction performance on arm64 platforms for encrypted files
7+
between 16kB and 4MB in size. ([PR #7492](https://github.com/realm/realm-core/pull/7492)).
8+
9+
### Fixed
10+
11+
* Opening a Realm with a cached user while offline would fail to retry some
12+
steps of the connection process and instead report a fatal error.
13+
([#7349](https://github.com/realm/realm-core/issues/7349), since v10.46.0)
14+
15+
### Compatibility
16+
17+
* Realm Studio: 14.0.1 or later.
18+
* APIs are backwards compatible with all previous releases in the 10.x.y series.
19+
* Carthage release for Swift is built with Xcode 15.3.0.
20+
* CocoaPods: 1.10 or later.
21+
* Xcode: 14.2-15.3.0.
22+
23+
### Internal
24+
25+
* Upgraded realm-core from v14.3.0 to 14.4.1
26+
127
10.49.0 Release notes (2024-03-22)
228
=============================================================
329

@@ -16,8 +42,6 @@ restore the backup, or it will be deleted after three months.
1642
properties so that the individual values will take up 0 bits (if all nulls),
1743
32 bits, 64 bits or 128 bits depending on what is needed.
1844
([Core #6111](https://github.com/realm/realm-core/pull/6111))
19-
* Improve file compaction performance on arm64 platforms for encrypted files
20-
between 16kB and 4MB in size. ([PR #7492](https://github.com/realm/realm-core/pull/7492)).
2145

2246
### Fixed
2347

@@ -45,9 +69,6 @@ restore the backup, or it will be deleted after three months.
4569
([Core #6670](https://github.com/realm/realm-core/pull/6670), since 2.0.0 for indexes, and since since the introduction of sets in v10.8.0)
4670
* Fix a spurious crash related to opening a Realm on background thread while
4771
the process was in the middle of exiting ([Core #7420](https://github.com/realm/realm-core/pull/7420)).
48-
* Opening a Realm with a cached user while offline would fail to retry some
49-
steps of the connection process and instead report a fatal error.
50-
([#7349](https://github.com/realm/realm-core/issues/7349), since v10.46.0)
5172

5273
### Breaking Changes
5374

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import PackageDescription
44
import Foundation
55

6-
let coreVersion = Version("14.3.0")
7-
let cocoaVersion = Version("10.49.0")
6+
let coreVersion = Version("14.4.1")
7+
let cocoaVersion = Version("10.49.1")
88

99
let cxxSettings: [CXXSetting] = [
1010
.headerSearchPath("."),

Realm/RLMSyncSession.mm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,9 @@ - (RLMSyncConfiguration *)configuration {
121121

122122
- (NSURL *)realmURL {
123123
if (auto session = _session.lock()) {
124-
if (auto url = session->full_realm_url()) {
125-
return [NSURL URLWithString:@(url->c_str())];
124+
auto url = session->full_realm_url();
125+
if (!url.empty() && session->state() == SyncSession::State::Active) {
126+
return [NSURL URLWithString:@(url.c_str())];
126127
}
127128
}
128129
return nil;

Realm/Realm-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>10.49.0</string>
20+
<string>10.49.1</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>10.49.0</string>
24+
<string>10.49.1</string>
2525
<key>NSHumanReadableCopyright</key>
2626
<string>Copyright © 2014-2021 Realm. All rights reserved.</string>
2727
<key>NSPrincipalClass</key>

dependencies.list

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION=10.49.0
2-
REALM_CORE_VERSION=v14.3.0
1+
VERSION=10.49.1
2+
REALM_CORE_VERSION=v14.4.1
33
STITCH_VERSION=8bf8ebcff6e804586c30a6ccbadb060753071a42

0 commit comments

Comments
 (0)