From f213c28e294a2f2f3ecac938ef2cdd233e7968f5 Mon Sep 17 00:00:00 2001 From: Erwan Guyader Date: Sat, 8 Aug 2020 14:51:56 +0200 Subject: [PATCH] Release v3.22.0-beta.4 (#1930) Improvements for all users: - The list of recently synchronized files could be persisted multiple times concurrently, leading to malformed JSON content which could not be loaded back into the client's GUI during the next start. We're now making sure each write is done sequentially so that the list is always saved as valid JSON. --- CHANGELOG.md | 14 ++++++++++++++ package.json | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe1f13ccc..26e22e3f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Cozy Drive for Desktop: Changelog +## 3.22.0-beta.4 - 2020-08-08 + +Improvements for all users: + +- The list of recently synchronized files could be persisted multiple times + concurrently, leading to malformed JSON content which could not be loaded back + into the client's GUI during the next start. + We're now making sure each write is done sequentially so that the list is + always saved as valid JSON. + +See also [known issues](https://github.com/cozy-labs/cozy-desktop/blob/master/KNOWN_ISSUES.md). + +Happy syncing! + ## 3.22.0-beta.3 - 2020-07-31 Improvements for all users: diff --git a/package.json b/package.json index e33055265..3880c973e 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "CozyDrive", "productName": "Cozy Drive", "private": true, - "version": "3.22.0-beta.3", + "version": "3.22.0-beta.4", "description": "Cozy Drive is a synchronization tool for your files and folders with Cozy Cloud.", "homepage": "https://github.com/cozy-labs/cozy-desktop", "author": "Cozy Cloud (https://cozycloud.cc/)",