diff --git a/CHANGELOG.md b/CHANGELOG.md index 83a1a450c..d7f34727d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,44 @@ # Changelog +## [2.34.0] - 2025-12-11 + +### API-Changes + +- rpc-client: Accept `Account` for `Chat.{add,remove}_contact()`. +- rpc-client: Add `Chat.num_contacts()`. +- Forwarding messages to another profile ([#7491](https://github.com/chatmail/core/pull/7491)). + +### Features / Changes + +- Double ringing time to 120 seconds. +- Better logging for failing securejoin messages ([#7593](https://github.com/chatmail/core/pull/7593)). +- Add multi-transport information to `Context.get_info` ([#7583](https://github.com/chatmail/core/pull/7583)) + +### Fixes + +- Multi-transport: all transports were shown as "inbox" in connectivity view, now they are shown by their hostname ([#7582](https://github.com/chatmail/core/pull/7582)). +- Multi-transport: Synchronize primary transport immediately after changing it. +- Use u64 instead of usize to calculate storage usage. +- Use u64 to represent the number of bytes in backup files. +- Use u64 to count the number of bytes sent/received over the network. +- Use logging macros instead of emitting event directly, so that it is also logged by tracing ([#7459](https://github.com/chatmail/core/pull/7459)). +- Let securejoin succeed even if the chat was deleted in the meantime ([#7594](https://github.com/chatmail/core/pull/7594)). + +### Miscellaneous Tasks + +- Add RUSTSEC-2025-0134 exception to deny.toml. + +### Refactor + +- Use u16 instead of usize to represent progress bar. +- Remove EncryptHelper.prefer_encrypt. +- Add params when forwarding message instead of removing unneeded ones. + +### Tests + +- Port test_synchronize_member_list_on_group_rejoin to JSON-RPC. +- Test setting up second device between core versions. + ## [2.33.0] - 2025-12-05 ### Features / Changes @@ -7371,3 +7410,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed [2.31.0]: https://github.com/chatmail/core/compare/v2.30.0..v2.31.0 [2.32.0]: https://github.com/chatmail/core/compare/v2.31.0..v2.32.0 [2.33.0]: https://github.com/chatmail/core/compare/v2.32.0..v2.33.0 +[2.34.0]: https://github.com/chatmail/core/compare/v2.33.0..v2.34.0 diff --git a/Cargo.lock b/Cargo.lock index 03664d850..9930f6c7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1304,7 +1304,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "2.33.0" +version = "2.34.0" dependencies = [ "anyhow", "astral-tokio-tar", @@ -1413,7 +1413,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "2.33.0" +version = "2.34.0" dependencies = [ "anyhow", "async-channel 2.5.0", @@ -1435,7 +1435,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "2.33.0" +version = "2.34.0" dependencies = [ "anyhow", "deltachat", @@ -1451,7 +1451,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "2.33.0" +version = "2.34.0" dependencies = [ "anyhow", "deltachat", @@ -1480,7 +1480,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "2.33.0" +version = "2.34.0" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index 3904885f6..c502647ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "2.33.0" +version = "2.34.0" edition = "2024" license = "MPL-2.0" rust-version = "1.88" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index ed7ae04df..e23606592 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "2.33.0" +version = "2.34.0" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index bb55708b8..543586c76 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "2.33.0" +version = "2.34.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 00ba337b6..9fb5e2767 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.33.0" + "version": "2.34.0" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 38b3cf0bb..6b46474db 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "2.33.0" +version = "2.34.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 049127e6f..d0cad5f2b 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.33.0" +version = "2.34.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 f4f735e83..eb039d01a 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "2.33.0" +version = "2.34.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 907b2242a..aa74cfd31 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.33.0" + "version": "2.34.0" } diff --git a/python/pyproject.toml b/python/pyproject.toml index 3b0c93138..ed998e91f 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "2.33.0" +version = "2.34.0" license = "MPL-2.0" description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat" readme = "README.rst" diff --git a/release-date.in b/release-date.in index 8f5e47019..1572935a0 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2025-12-05 \ No newline at end of file +2025-12-11 \ No newline at end of file