From 236faafe0f3bed1990fb26bbe009d8735af5027b Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sat, 24 Oct 2020 15:59:44 +0200 Subject: [PATCH 1/4] update changelog for 1.48 --- CHANGELOG.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 15167714a..1f2c577b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 1.48.0 + +- `fetch_existing_msgs` disabled by default #2035 + +- skip fetch existing messages/contacts if config-option `bot` set #2017 + +- fix handling when getting empty autoconfigure files #2027 + +- fix adding saved messages to wrong chats on multi-device #2034 #2039 + +- fix hang on android4.4 and other systems + by adding a workaround to executer-blocking-handling bug #2040 + +- improve python bindings #2021 #2036 #2038 + +- update provider-database #2037 + + ## 1.47.0 - breaking change: `dc_update_device_chats()` removed; From ea759f17d039c2f39557f1f4c7e26ed659091c6c Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sat, 24 Oct 2020 16:00:44 +0200 Subject: [PATCH 2/4] bump version to 1.48 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- deltachat-ffi/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e7f540458..0acdece90 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1003,7 +1003,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.47.0" +version = "1.48.0" dependencies = [ "ansi_term 0.12.1", "anyhow", @@ -1079,7 +1079,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.47.0" +version = "1.48.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index d4f7d052d..612297f94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.47.0" +version = "1.48.0" authors = ["Delta Chat Developers (ML) "] edition = "2018" license = "MPL-2.0" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 905155aa1..4983c40a3 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.47.0" +version = "1.48.0" description = "Deltachat FFI" authors = ["Delta Chat Developers (ML) "] edition = "2018" From f7a4f5debf079ae08c08e663d03609bbb0bab99c Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sat, 24 Oct 2020 21:39:56 +0200 Subject: [PATCH 3/4] correct/enhance 1.47 changelog --- CHANGELOG.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f2c577b0..e0ac03541 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,8 @@ ## 1.48.0 -- `fetch_existing_msgs` disabled by default #2035 +- `fetch_existing` renamed to `fetch_existing_msgs` and disabled by default + #2035 #2042 - skip fetch existing messages/contacts if config-option `bot` set #2017 @@ -44,7 +45,8 @@ - speed up and clean up account creation #1912 #1927 #1960 #1961 - configure now collects recent contacts and fetches last messages - unless disabled by `fetch_existing_msgs` config-option #1913 #2003 + unless disabled by `fetch_existing` config-option #1913 #2003 + EDIT: `fetch_existing` renamed to `fetch_existing_msgs` in 1.48.0 #2042 - emit `DC_EVENT_CHAT_MODIFIED` on contact rename and set contact-id on `DC_EVENT_CONTACTS_CHANGED` #1935 #1936 #1937 @@ -58,6 +60,8 @@ - mark all failed messages as failed when receiving an NDN #1993 +- check some easy cases for bad system clock and outdated app #1901 + - fix import temporary directory usage #1929 - fix forcing encryption for reset peers #1998 From d30bedda966352f97f0e954ff73478a9e6030bdd Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sun, 25 Oct 2020 19:35:53 +0100 Subject: [PATCH 4/4] update changelog to most recent changes --- CHANGELOG.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e0ac03541..5ab4c8d57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,13 +7,33 @@ - skip fetch existing messages/contacts if config-option `bot` set #2017 -- fix handling when getting empty autoconfigure files #2027 +- always log why a message is sorted to trash #2045 + +- display a quote if top posting is detected #2047 + +- add ephemeral task cancellation to `dc_stop_io()`; + before, there was no way to quickly terminate pending ephemeral tasks #2051 + +- when saved-messages chat is deleted, + a device-message about recreation is added #2050 + +- use `max_smtp_rcpt_to` from provider-db, + sending messages to many recipients in configurable chunks #2056 + +- fix handling of empty autoconfigure files #2027 - fix adding saved messages to wrong chats on multi-device #2034 #2039 - fix hang on android4.4 and other systems by adding a workaround to executer-blocking-handling bug #2040 +- fix secret key export/import roundtrip #2048 + +- fix mistakenly unarchived chats #2057 + +- fix outdated-reminder test that fails only 7 days a year, + including halloween :) #2059 + - improve python bindings #2021 #2036 #2038 - update provider-database #2037