Skip to content

Commit

Permalink
Upgrade to core 14.4.1 (#8526)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Mar 23, 2024
1 parent 0a97dda commit e0c2fbb
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 13 deletions.
31 changes: 26 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
10.49.1 Release notes (2024-03-22)
=============================================================

### Enhancements

* Improve file compaction performance on arm64 platforms for encrypted files
between 16kB and 4MB in size. ([PR #7492](https://github.com/realm/realm-core/pull/7492)).

### Fixed

* Opening a Realm with a cached user while offline would fail to retry some
steps of the connection process and instead report a fatal error.
([#7349](https://github.com/realm/realm-core/issues/7349), since v10.46.0)

### Compatibility

* Realm Studio: 14.0.1 or later.
* APIs are backwards compatible with all previous releases in the 10.x.y series.
* Carthage release for Swift is built with Xcode 15.3.0.
* CocoaPods: 1.10 or later.
* Xcode: 14.2-15.3.0.

### Internal

* Upgraded realm-core from v14.3.0 to 14.4.1

10.49.0 Release notes (2024-03-22)
=============================================================

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

### Fixed

Expand Down Expand Up @@ -45,9 +69,6 @@ restore the backup, or it will be deleted after three months.
([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)
* Fix a spurious crash related to opening a Realm on background thread while
the process was in the middle of exiting ([Core #7420](https://github.com/realm/realm-core/pull/7420)).
* Opening a Realm with a cached user while offline would fail to retry some
steps of the connection process and instead report a fatal error.
([#7349](https://github.com/realm/realm-core/issues/7349), since v10.46.0)

### Breaking Changes

Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
import PackageDescription
import Foundation

let coreVersion = Version("14.3.0")
let cocoaVersion = Version("10.49.0")
let coreVersion = Version("14.4.1")
let cocoaVersion = Version("10.49.1")

let cxxSettings: [CXXSetting] = [
.headerSearchPath("."),
Expand Down
5 changes: 3 additions & 2 deletions Realm/RLMSyncSession.mm
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,9 @@ - (RLMSyncConfiguration *)configuration {

- (NSURL *)realmURL {
if (auto session = _session.lock()) {
if (auto url = session->full_realm_url()) {
return [NSURL URLWithString:@(url->c_str())];
auto url = session->full_realm_url();
if (!url.empty() && session->state() == SyncSession::State::Active) {
return [NSURL URLWithString:@(url.c_str())];
}
}
return nil;
Expand Down
4 changes: 2 additions & 2 deletions Realm/Realm-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>10.49.0</string>
<string>10.49.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>10.49.0</string>
<string>10.49.1</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2014-2021 Realm. All rights reserved.</string>
<key>NSPrincipalClass</key>
Expand Down
4 changes: 2 additions & 2 deletions dependencies.list
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION=10.49.0
REALM_CORE_VERSION=v14.3.0
VERSION=10.49.1
REALM_CORE_VERSION=v14.4.1
STITCH_VERSION=8bf8ebcff6e804586c30a6ccbadb060753071a42

0 comments on commit e0c2fbb

Please sign in to comment.