Skip to content

Commit

Permalink
Upgrade to core v14.10.2 (#8642)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne authored Jun 28, 2024
1 parent e3258a2 commit ae827ea
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 13 deletions.
24 changes: 17 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,32 @@
x.y.z Release notes (yyyy-MM-dd)
10.52.1 Release notes (2024-06-28)
=============================================================
### Enhancements
* None.

### Fixed
* <How to hit and notice issue? what was the impact?> ([#????](https://github.com/realm/realm-swift/issues/????), since v?.?.?)
* None.

<!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->
* Realm compaction (triggered by setting `shouldCompactOnLaunch`) on an
encrypted Realm file could produce an invalid file unless the encryption key
happened to be a valid nul-terminated string.
([Core #7842](https://github.com/realm/realm-core/issues/7842), since v10.52.0.
* Assigning a List or Dictionary to an AnyRealmValue property which already
stored that type of collection would only emit a clear instruction if the
collection was not already empty. This meant that assigning to the property
on two different clients would merge the collections if the property
initially stored an empty collection, but would pick one of the two
assignments to win if it was initially non-empty. If merging is the desired
behavior, appending to the List rather than assigning a new List will still
achieve that ([Core #7809](https://github.com/realm/realm-core/issues/7809), since v10.51.0).


### Compatibility

* Realm Studio: 15.0.0 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.4.0.
* CocoaPods: 1.10 or later.
* Xcode: 15.1.0-15.4.0.

### Internal
* Upgraded realm-core from ? to ?
* Upgraded realm-core from v14.10.1 to 14.10.2

10.52.0 Release notes (2024-06-18)
=============================================================
Expand Down Expand Up @@ -87,6 +96,7 @@ x.y.z Release notes (yyyy-MM-dd)

10.51.0 Release notes (2024-06-06)
=============================================================

### Enhancements

* Added support for storing nested collections (List and Map not ManagedSet) in a `AnyRealmValue`.
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.10.1")
let cocoaVersion = Version("10.52.0")
let coreVersion = Version("14.10.2")
let cocoaVersion = Version("10.52.1")

let cxxSettings: [CXXSetting] = [
.headerSearchPath("."),
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.52.0</string>
<string>10.52.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>10.52.0</string>
<string>10.52.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.52.0
REALM_CORE_VERSION=v14.10.1
VERSION=10.52.1
REALM_CORE_VERSION=v14.10.2
STITCH_VERSION=b4f0184c963eed8f6cc5e857fac147bef10966d7

0 comments on commit ae827ea

Please sign in to comment.