Skip to content

Commit

Permalink
Release 10.46.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Jan 23, 2024
1 parent 1ef89df commit eafdd37
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,8 @@
x.y.z Release notes (yyyy-MM-dd)
10.46.0 Release notes (2024-01-23)
=============================================================

### Enhancements

* Add a privacy manifest to both frameworks.
* Internal C++ symbols are no longer exported from Realm.framework when
installing via CocoaPods, which reduces the size of the binary by ~5%,
Expand All @@ -14,6 +16,7 @@ x.y.z Release notes (yyyy-MM-dd)
a flexible sync realm.

### Fixed

* `@Persisted`'s Encodable implementation did not allow the encoder to
customize the encoding of values, which broke things like JSONEncoder's
`dateEncodingStrategy` ([#8425](https://github.com/realm/realm-swift/issues/8425)).
Expand All @@ -28,13 +31,15 @@ x.y.z Release notes (yyyy-MM-dd)
synchronized Realms and the field was previously not read.

### 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.2.0.
* CocoaPods: 1.10 or later.
* Xcode: 14.2-15.2.0.

### Internal

* Upgraded realm-core from 13.25.1 to 13.26.0

10.45.3 Release notes (2024-01-08)
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Expand Up @@ -4,7 +4,7 @@ import PackageDescription
import Foundation

let coreVersion = Version("13.26.0")
let cocoaVersion = Version("10.45.3")
let cocoaVersion = Version("10.46.0")

let cxxSettings: [CXXSetting] = [
.headerSearchPath("."),
Expand Down
6 changes: 3 additions & 3 deletions Realm/RLMRealmConfiguration.h
Expand Up @@ -79,9 +79,9 @@ typedef void(^RLMFlexibleSyncInitialSubscriptionsBlock)(RLMSyncSubscriptionSet *
/// setting one of the two properties will automatically nil out the other.
@property (nonatomic, copy, nullable) NSURL *fileURL;

/// A string used to identify a particular in-memory Realm. Mutually exclusive with `fileURL`,
/// `seedFilePath`.
/// setting an in-memory identifier will automatically nil out the other two.
/// A string used to identify a particular in-memory Realm. Mutually exclusive
/// with `fileURL` and `seedFilePath`.
/// Setting an in-memory identifier will automatically nil out the other two.
@property (nonatomic, copy, nullable) NSString *inMemoryIdentifier;

/// A 64-byte key to use to encrypt the data, or `nil` if encryption is not enabled.
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.45.3</string>
<string>10.46.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>10.45.3</string>
<string>10.46.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.45.3
VERSION=10.46.0
REALM_CORE_VERSION=13.26.0
STITCH_VERSION=8bf8ebcff6e804586c30a6ccbadb060753071a42

0 comments on commit eafdd37

Please sign in to comment.