Skip to content

Commit 5221a83

Browse files
committed
Upgrade to core v14.12.0
1 parent 13b12f8 commit 5221a83

File tree

4 files changed

+46
-6
lines changed

4 files changed

+46
-6
lines changed

CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
10.52.3 Release notes (2024-08-09)
2+
=============================================================
3+
4+
### Enhancements
5+
6+
* Improve performance of bulk object creation when the objects have embedded
7+
objects. This is particularly significant for applying sync bootstraps.
8+
([Core #7945](https://github.com/realm/realm-core/issues/7945))
9+
* Client reset cycle detection now checks if the previous recovery attempt was
10+
made by the same version of Realm, and if not attempts recovery again
11+
([Core #7944](https://github.com/realm/realm-core/pull/7944)).
12+
13+
### Fixed
14+
15+
* App change notifications were being sent too soon when a new user was logged
16+
in, resulting in the user's profile being empty if it was read from within
17+
the change notification (since v10.51.0).
18+
* A conflict resolution bug related to ArrayErase and Clear instructions could
19+
sometimes cause an "Invalid prior_size" exception when synchronizing
20+
([Core #7893](https://github.com/realm/realm-core/issues/7893), since v10.51.0.
21+
* Sync merges which resulted in a changeset's reciprotal transformation being
22+
empty were handled incorrectly, possibly resulting in data divergence. No
23+
instances of this actually happening have been reported.
24+
([Core #7955](https://github.com/realm/realm-core/pull/7955), since v10.51.0)
25+
* `Realm.writeCopy()` would sometimes incorrectly throw an exception claiming
26+
that there were unuploaded local changes when the source Realm is a
27+
synchronized Realm ([Core #7966](https://github.com/realm/realm-core/issues/7966), since v10.7.6).
28+
29+
### Compatibility
30+
31+
* Realm Studio: 15.0.0 or later.
32+
* APIs are backwards compatible with all previous releases in the 10.x.y series.
33+
* Carthage release for Swift is built with Xcode 15.4.0.
34+
* CocoaPods: 1.10 or later.
35+
* Xcode: 15.1.0-16 beta 5.
36+
37+
### Internal
38+
39+
* Upgraded realm-core from v14.11.1 to 14.12.0
40+
141
10.52.2 Release notes (2024-07-19)
242
=============================================================
343

Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import PackageDescription
44
import Foundation
55

6-
let coreVersion = Version("14.11.0")
7-
let cocoaVersion = Version("10.52.2")
6+
let coreVersion = Version("14.12.0")
7+
let cocoaVersion = Version("10.52.3")
88

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

Realm/Realm-Info.plist

+2-2
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.52.2</string>
20+
<string>10.52.3</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>10.52.2</string>
24+
<string>10.52.3</string>
2525
<key>NSHumanReadableCopyright</key>
2626
<string>Copyright © 2014-2021 Realm. All rights reserved.</string>
2727
<key>NSPrincipalClass</key>

dependencies.list

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION=10.52.2
2-
REALM_CORE_VERSION=v14.11.0
1+
VERSION=10.52.3
2+
REALM_CORE_VERSION=v14.12.0
33
STITCH_VERSION=2f308db6f65333728a101d1fecbb792f9659a5ce

0 commit comments

Comments
 (0)