Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 10.51.0 #8614

Merged
merged 1 commit into from
Jun 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,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`.
```swift
class MixedObject: Object {
Expand Down Expand Up @@ -34,6 +35,7 @@ x.y.z Release notes (yyyy-MM-dd)
([Core #6154](https://github.com/realm/realm-core/issues/6154))

### Fixed

* Accessing `App.currentUser` from within a notification produced by `App.switchToUser()`
(which includes notifications for a newly logged in user) would deadlock.
([Core #7670](https://github.com/realm/realm-core/issues/7670), since v10.50.0).
Expand All @@ -50,16 +52,16 @@ x.y.z Release notes (yyyy-MM-dd)
if `deleteRealmIfMigrationNeeded` is set to true.
([Core #7747](https://github.com/realm/realm-core/issues/7747), since v10.49.0).

<!-- ### Breaking Changes - ONLY INCLUDE FOR NEW MAJOR version -->

### 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 v14.6.2 to 14.9.0

10.50.1 Release notes (2024-05-21)
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PackageDescription
import Foundation

let coreVersion = Version("14.9.0")
let cocoaVersion = Version("10.50.1")
let cocoaVersion = Version("10.51.0")

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.50.1</string>
<string>10.51.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>10.50.1</string>
<string>10.51.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
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION=10.50.1
VERSION=10.51.0
REALM_CORE_VERSION=v14.9.0
STITCH_VERSION=b4f0184c963eed8f6cc5e857fac147bef10966d7
Loading