From d844f29c68f682043f9fd25cb3b7dc3037786360 Mon Sep 17 00:00:00 2001 From: link2xt Date: Mon, 15 Jun 2026 21:26:11 +0200 Subject: [PATCH] chore(release): prepare for 2.53.0 --- CHANGELOG.md | 44 +++++++++++++++++++ Cargo.lock | 10 ++--- Cargo.toml | 2 +- deltachat-ffi/Cargo.toml | 2 +- deltachat-jsonrpc/Cargo.toml | 2 +- deltachat-jsonrpc/typescript/package.json | 2 +- deltachat-repl/Cargo.toml | 2 +- deltachat-rpc-client/pyproject.toml | 2 +- deltachat-rpc-server/Cargo.toml | 2 +- deltachat-rpc-server/npm-package/package.json | 2 +- python/pyproject.toml | 2 +- 11 files changed, 58 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f6d226325..8de3dc77e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,48 @@ # Changelog +## [2.53.0] - 2026-06-15 + +### Features / Changes + +- Make quality of images sent in chats more consistent between images with different aspect ratio. +- `MsgId::get_html`: Make only one db query. +- Do not log the recipient list for sent messages. + +### Fixes + +- Do not trash pre-messages without text but with a webxdc update. +- Don't send or process webxdc status updates in pre-messages. +- Ignore SecureJoin messages from blocked contacts ([#8295](https://github.com/chatmail/core/pull/8295)). +- Do not abort IMAP connection if setting the push token fails. + +### Documentation + +- STYLE.md: Require to list columns explicitly in `INSERT` statements. + +### Build system + +- nix: switch to the "master" branch for naersk. +- flake.nix: Use hostPlatform.rust.rustcTarget instead of hardcoding it. + +### Miscellaneous Tasks + +- Bump version to 2.52.0-dev. +- deps: bump taiki-e/install-action from 2.79.10 to 2.81.1. +- deps: bump EmbarkStudios/cargo-deny-action from 2.0.19 to 2.0.20. +- Bump version to 2.53.0-dev. + +### Refactor + +- Move the definition of the `target_wh`-variable. +- Remove timesmearing. + +### Tests + +- Print multiline chat descriptions with debug formatter. +- `exec_securejoin_qr_multi_device()`: Make inviter devices receive each other messages. +- Fixup the tests after removing timesmearing. +- Remove timeout from `pop_sent_msg_ex()`. + ## [2.52.0] - 2026-06-09 ### Fixes @@ -8330,3 +8373,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed [2.50.0]: https://github.com/chatmail/core/compare/v2.49.0..v2.50.0 [2.51.0]: https://github.com/chatmail/core/compare/v2.50.0..v2.51.0 [2.52.0]: https://github.com/chatmail/core/compare/v2.51.0..v2.52.0 +[2.53.0]: https://github.com/chatmail/core/compare/v2.52.0..v2.53.0 diff --git a/Cargo.lock b/Cargo.lock index e223430ee..bdecc0602 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1350,7 +1350,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "2.53.0-dev" +version = "2.53.0" dependencies = [ "anyhow", "astral-tokio-tar", @@ -1459,7 +1459,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "2.53.0-dev" +version = "2.53.0" dependencies = [ "anyhow", "async-channel 2.5.0", @@ -1480,7 +1480,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "2.53.0-dev" +version = "2.53.0" dependencies = [ "anyhow", "deltachat", @@ -1496,7 +1496,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "2.53.0-dev" +version = "2.53.0" dependencies = [ "anyhow", "deltachat", @@ -1525,7 +1525,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "2.53.0-dev" +version = "2.53.0" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index cfc4d4961..20002d725 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "2.53.0-dev" +version = "2.53.0" edition = "2024" license = "MPL-2.0" rust-version = "1.89" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 9f4d164ac..2884669a0 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "2.53.0-dev" +version = "2.53.0" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 61541a73b..6f436dbfd 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "2.53.0-dev" +version = "2.53.0" description = "DeltaChat JSON-RPC API" edition = "2021" license = "MPL-2.0" diff --git a/deltachat-jsonrpc/typescript/package.json b/deltachat-jsonrpc/typescript/package.json index 9f14eacd4..04d134bea 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -54,5 +54,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "2.53.0-dev" + "version": "2.53.0" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 9f897818e..a2e33294e 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "2.53.0-dev" +version = "2.53.0" license = "MPL-2.0" edition = "2021" repository = "https://github.com/chatmail/core" diff --git a/deltachat-rpc-client/pyproject.toml b/deltachat-rpc-client/pyproject.toml index af79d46b6..534b7d2f4 100644 --- a/deltachat-rpc-client/pyproject.toml +++ b/deltachat-rpc-client/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat-rpc-client" -version = "2.53.0-dev" +version = "2.53.0" license = "MPL-2.0" description = "Python client for Delta Chat core JSON-RPC interface" classifiers = [ diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index 6e6d3d62f..c6e010791 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "2.53.0-dev" +version = "2.53.0" description = "DeltaChat JSON-RPC server" edition = "2021" readme = "README.md" diff --git a/deltachat-rpc-server/npm-package/package.json b/deltachat-rpc-server/npm-package/package.json index 31b0696ea..bbbf977e6 100644 --- a/deltachat-rpc-server/npm-package/package.json +++ b/deltachat-rpc-server/npm-package/package.json @@ -15,5 +15,5 @@ }, "type": "module", "types": "index.d.ts", - "version": "2.53.0-dev" + "version": "2.53.0" } diff --git a/python/pyproject.toml b/python/pyproject.toml index 1b70d135c..41180d5f9 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "2.53.0-dev" +version = "2.53.0" license = "MPL-2.0" description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat" readme = "README.rst"