Skip to content

Commit

Permalink
Release 10.45.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Dec 16, 2023
1 parent f2da7dc commit 2300f05
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
14 changes: 11 additions & 3 deletions CHANGELOG.md
@@ -1,6 +1,9 @@
x.y.z Release notes (yyyy-MM-dd)
10.45.0 Release notes (2023-12-15)
=============================================================

### Enhancements

* Update release packaging for Xcode 15.1.
* Expose waiting for upload/download on SyncSession, which will suspend
the current method (or call an asynchronous block) until an upload or download
completes for a given sync session, e.g.,:
Expand Down Expand Up @@ -33,6 +36,7 @@ x.y.z Release notes (yyyy-MM-dd)
([Core #7161](https://github.com/realm/realm-core/pull/7161)).

### Fixed

* Flexible sync subscriptions would sometimes not be sent to the server if they
were created while the client was downloading the bootstrap state for a
previous subscription change and the bootstrap did not complete successfully.
Expand Down Expand Up @@ -67,7 +71,8 @@ x.y.z Release notes (yyyy-MM-dd)
links. ([Core #7112](https://github.com/realm/realm-core/issues/7112),
since client reset recovery was implemented in v10.25.0).
* During a client reset recovery a Set of links could be missing items, or an
exception could be thrown that prevents recovery (e.g. "Requested index 1 calling get() on set 'source.collection' when max is 0")
exception could be thrown that prevents recovery (e.g. "Requested index 1
calling get() on set 'source.collection' when max is 0")
([Core #7112](https://github.com/realm/realm-core/issues/7112),
since client reset recovery was implemented in v10.25.0).
* Calling `sort()` or `distinct()` on a `MutableSet<Object>` that had
Expand All @@ -77,7 +82,8 @@ x.y.z Release notes (yyyy-MM-dd)
recovering a write which made an unrecoverable change to a list (i.e.
modifying or deleting a pre-existing entry), followed by a subscription
change, followed by a write which added an entry to the list
([Core #7155](https://github.com/realm/realm-core/pull/7155), since the introduction of automatic client reset recovery for flexible sync).
([Core #7155](https://github.com/realm/realm-core/pull/7155), since the
introduction of automatic client reset recovery for flexible sync).
* Fixed several causes of "decryption failed" exceptions that could happen when
opening multiple encrypted Realm files in the same process while using Realms
stored on an exFAT file system.
Expand Down Expand Up @@ -108,13 +114,15 @@ x.y.z Release notes (yyyy-MM-dd)
([Core #7161](https://github.com/realm/realm-core/pull/7161), since v10.29.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.1.0.
* CocoaPods: 1.10 or later.
* Xcode: 14.1-15.1.0.

### Internal

* Migrated our current CI Pipelines to Xcode Cloud.
* Upgraded realm-core from 13.23.1 to 13.24.1

Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -4,7 +4,7 @@ import PackageDescription
import Foundation

let coreVersion = Version("13.24.1")
let cocoaVersion = Version("10.44.0")
let cocoaVersion = Version("10.45.0")

let cxxSettings: [CXXSetting] = [
.headerSearchPath("."),
Expand Down
4 changes: 2 additions & 2 deletions Realm/Realm-Info.plist
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>10.44.0</string>
<string>10.45.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>10.44.0</string>
<string>10.45.0</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2014-2021 Realm. All rights reserved.</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion dependencies.list
@@ -1,3 +1,3 @@
VERSION=10.44.0
VERSION=10.45.0
REALM_CORE_VERSION=13.24.1
STITCH_VERSION=911b8db03b852f664af13880c42eb8178d4fb5f4

0 comments on commit 2300f05

Please sign in to comment.