Skip to content

Commit

Permalink
Merge branch 'master' into kb/sync_progress_estimate_api
Browse files Browse the repository at this point in the history
  • Loading branch information
kiburtse committed Mar 22, 2024
2 parents 6585ddc + 33809e6 commit d1ae9fb
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@

### Fixed
* <How do the end-user experience this issue? what was the impact?> ([#????](https://github.com/realm/realm-core/issues/????), since v?.?.?)
* Fix pass a thread safe reference to init subscription callback. ([#7497](https://github.com/realm/realm-core/issues/7497), since v13.16.0)

* None.

### Breaking changes
* None.
Expand All @@ -22,6 +21,21 @@

----------------------------------------------

# 14.4.1 Release notes

### Fixed
* Fix pass a thread safe reference to init subscription callback. ([#7497](https://github.com/realm/realm-core/issues/7497), since v13.16.0)

### Compatibility
* Fileformat: Generates files with format v24. Reads and automatically upgrade from fileformat v10. If you want to upgrade from an earlier file format version you will have to use RealmCore v13.x.y or earlier.

-----------

### Internals
* Update Catch2 from v3.3.2 to v3.5.3 ([PR #7297](https://github.com/realm/realm-core/pull/7509)).

----------------------------------------------

# 14.4.0 Release notes

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import PackageDescription
import Foundation

let versionStr = "14.4.0"
let versionStr = "14.4.1"
let versionPieces = versionStr.split(separator: "-")
let versionCompontents = versionPieces[0].split(separator: ".")
let versionExtra = versionPieces.count > 1 ? versionPieces[1] : ""
Expand Down
4 changes: 3 additions & 1 deletion bindgen/spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ primitives:
- void
- std::string
- std::string_view
- std::chrono::milliseconds
# TODO: see if we need nullable versions of these. For now null buffers are treated as empty.
- StringData
- OwnedBinaryData
Expand Down Expand Up @@ -554,6 +555,7 @@ records:
schema_did_change: 'Nullable<util::UniqueFunction<(r: SharedRealm)>>' # new schema available as r.schema

ResumptionDelayInfo:
cppName: sync::ResumptionDelayInfo
fields:
max_resumption_delay_interval:
type: std::chrono::milliseconds
Expand Down Expand Up @@ -1353,7 +1355,7 @@ classes:
path: std::string
user: SharedSyncUser
config: SyncConfig
full_realm_url: std::optional<std::string>
full_realm_url: std::string
methods:
wait_for_upload_completion: '(callback: AsyncCallback<(err: Status) off_thread>)'
wait_for_download_completion: '(callback: AsyncCallback<(err: Status) off_thread>)'
Expand Down
2 changes: 1 addition & 1 deletion dependencies.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME: realm-core
VERSION: 14.4.0
VERSION: 14.4.1
OPENSSL_VERSION: 3.2.0
ZLIB_VERSION: 1.2.13
# https://github.com/10gen/baas/commits
Expand Down
2 changes: 1 addition & 1 deletion external/catch
Submodule catch updated 276 files

0 comments on commit d1ae9fb

Please sign in to comment.