Skip to content

Commit eafdd37

Browse files
committed
Release 10.46.0
1 parent 1ef89df commit eafdd37

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
x.y.z Release notes (yyyy-MM-dd)
1+
10.46.0 Release notes (2024-01-23)
22
=============================================================
3+
34
### Enhancements
5+
46
* Add a privacy manifest to both frameworks.
57
* Internal C++ symbols are no longer exported from Realm.framework when
68
installing via CocoaPods, which reduces the size of the binary by ~5%,
@@ -14,6 +16,7 @@ x.y.z Release notes (yyyy-MM-dd)
1416
a flexible sync realm.
1517

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

3033
### Compatibility
34+
3135
* Realm Studio: 14.0.1 or later.
3236
* APIs are backwards compatible with all previous releases in the 10.x.y series.
3337
* Carthage release for Swift is built with Xcode 15.2.0.
3438
* CocoaPods: 1.10 or later.
3539
* Xcode: 14.2-15.2.0.
3640

3741
### Internal
42+
3843
* Upgraded realm-core from 13.25.1 to 13.26.0
3944

4045
10.45.3 Release notes (2024-01-08)

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import PackageDescription
44
import Foundation
55

66
let coreVersion = Version("13.26.0")
7-
let cocoaVersion = Version("10.45.3")
7+
let cocoaVersion = Version("10.46.0")
88

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

Realm/RLMRealmConfiguration.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ typedef void(^RLMFlexibleSyncInitialSubscriptionsBlock)(RLMSyncSubscriptionSet *
7979
/// setting one of the two properties will automatically nil out the other.
8080
@property (nonatomic, copy, nullable) NSURL *fileURL;
8181

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

8787
/// A 64-byte key to use to encrypt the data, or `nil` if encryption is not enabled.

Realm/Realm-Info.plist

Lines changed: 2 additions & 2 deletions
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.45.3</string>
20+
<string>10.46.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>10.45.3</string>
24+
<string>10.46.0</string>
2525
<key>NSHumanReadableCopyright</key>
2626
<string>Copyright © 2014-2021 Realm. All rights reserved.</string>
2727
<key>NSPrincipalClass</key>

dependencies.list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
VERSION=10.45.3
1+
VERSION=10.46.0
22
REALM_CORE_VERSION=13.26.0
33
STITCH_VERSION=8bf8ebcff6e804586c30a6ccbadb060753071a42

0 commit comments

Comments
 (0)