From f1e962cd447f8b69f8f7cf46a188b1c6246923c5 Mon Sep 17 00:00:00 2001 From: Nicola Cabiddu Date: Fri, 14 Jul 2023 10:48:34 +0100 Subject: [PATCH] core v13.17.0 --- CHANGELOG.md | 3 +-- Package.swift | 2 +- dependencies.list | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 28585f48b4b..a17db0636a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,10 @@ -# NEXT RELEASE +# 13.17.0 Release notes ### Enhancements * Sync connection and session reconnect timing/backoff logic has been unified into a single implementation and is now configurable. Previously some errors would cause an hour-long wait before attempting to reconnect, now - by default - the sync client will wait for 1 second before retrying and double the timeout after each subsequent attempt up to 5 minutes, after which a retry will be attempted every 5 minutes. If the cause of the error changes, the backoff will be reset. If the sync client voluntarily disconnects, no backoff will be used. (PR [#6526](https://github.com/realm/realm-core/pull/6526)). * Add support for the SDK initializing the schema inside a before-client-reset callback ([PR #6780](https://github.com/realm/realm-core/pull/6780)). ### Fixed -* ([#????](https://github.com/realm/realm-core/issues/????), since v?.?.?) * Sync errors included the error message twice ([PR #6774](https://github.com/realm/realm-core/pull/6774), since v13.16.0). * Fix timestamp representation when serializing to json on different platforms. ([#5451](https://github.com/realm/realm-core/issues/5451)). diff --git a/Package.swift b/Package.swift index 496dcc21af4..2aab2f2387b 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription import Foundation -let versionStr = "13.16.1" +let versionStr = "13.17.0" let versionPieces = versionStr.split(separator: "-") let versionCompontents = versionPieces[0].split(separator: ".") let versionExtra = versionPieces.count > 1 ? versionPieces[1] : "" diff --git a/dependencies.list b/dependencies.list index 872af92c6f9..fe69e49f7bf 100644 --- a/dependencies.list +++ b/dependencies.list @@ -1,5 +1,5 @@ PACKAGE_NAME=realm-core -VERSION=13.16.1 +VERSION=13.17.0 OPENSSL_VERSION=3.0.8 ZLIB_VERSION=1.2.13 MDBREALM_TEST_SERVER_TAG=2023-07-07