Skip to content

Commit

Permalink
Release v10.49.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgoyne committed Mar 22, 2024
1 parent 49c5912 commit 0a97dda
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
x.y.z Release notes (yyyy-MM-dd)
10.49.0 Release notes (2024-03-22)
=============================================================

This version introduces a new Realm file format version (v24). Opening existing
Expand All @@ -11,6 +11,7 @@ upgrade. Downgrading to older versions of Realm will attempt to automatically
restore the backup, or it will be deleted after three months.

### Enhancements

* Storage of Decimal128 properties has been optimised similarly to Int
properties so that the individual values will take up 0 bits (if all nulls),
32 bits, 64 bits or 128 bits depending on what is needed.
Expand All @@ -19,6 +20,7 @@ restore the backup, or it will be deleted after three months.
between 16kB and 4MB in size. ([PR #7492](https://github.com/realm/realm-core/pull/7492)).

### Fixed

* Sorting on binary Data was done by comparing bytes as signed char rather than
unsigned char, resulting in very strange orders (since sorting on Data was
enabled in v6.0.4)
Expand Down Expand Up @@ -48,9 +50,11 @@ restore the backup, or it will be deleted after three months.
([#7349](https://github.com/realm/realm-core/issues/7349), since v10.46.0)

### Breaking Changes

* Drop support for opening pre-v5.0.0 Realm files.

### 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.3.0.
Expand All @@ -59,6 +63,7 @@ restore the backup, or it will be deleted after three months.
Apple begins requiring Xcode 15 for app store submissions on April 29.

### Internal

* Upgraded realm-core from 13.26.0 to 14.3.0

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

let coreVersion = Version("14.3.0")
let cocoaVersion = Version("10.48.1")
let cocoaVersion = Version("10.49.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.48.1</string>
<string>10.49.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>10.48.1</string>
<string>10.49.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.48.1
VERSION=10.49.0
REALM_CORE_VERSION=v14.3.0
STITCH_VERSION=8bf8ebcff6e804586c30a6ccbadb060753071a42

0 comments on commit 0a97dda

Please sign in to comment.