diff --git a/CHANGELOG.md b/CHANGELOG.md index 02f0db1a3..23106bf0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,51 @@ # Changelog +## [1.156.0] - 2025-02-26 + +### API-Changes + +- Save messages API in JSON RPC ([#6554](https://github.com/deltachat/deltachat-core-rust/pull/6554)). +- jsonrpc: Add `MessageObject.is_edited`. +- jsonrpc: Add `send_edit_request`. +- Deduplicate blob files in the JsonRPC API ([#6470](https://github.com/deltachat/deltachat-core-rust/pull/6470)). +- Message deletion request API ([#6576](https://github.com/deltachat/deltachat-core-rust/pull/6576)) + +### Features / Changes + +- Edit message's text ([#6550](https://github.com/deltachat/deltachat-core-rust/pull/6550)) +- Sync message deletion to other devices ([#6573](https://github.com/deltachat/deltachat-core-rust/pull/6573)) +- Allow scanning multiple securejoin QR codes in parallel. +- When reactions are seen, remove notification from second device ([#6480](https://github.com/deltachat/deltachat-core-rust/pull/6480)). +- Enable bcc-self automatically when doing Autocrypt Setup Message. +- Don't send a notification when a group member left ([#6575](https://github.com/deltachat/deltachat-core-rust/pull/6575)). +- Fail on too new backups ([#6580](https://github.com/deltachat/deltachat-core-rust/pull/6580)). + +### Fixes + +- Make it impossible to overwrite default key. +- Do not allow to edit html messages ([#6564](https://github.com/deltachat/deltachat-core-rust/pull/6564)). +- `get_config(Config::Selfavatar)` returns the path, not the name ([#6570](https://github.com/deltachat/deltachat-core-rust/pull/6570)). +- `chat::save_msgs`: Interrupt inbox loop to send a sync message. +- Do not delete files if cannot read their metadata. + +### Build system + +- nix: Update hashes of git dependencies. +- Update some dependencies. + +### CI + +- Remove deprecated DeterminateSystems/magic-nix-cache-action. + +### Refactor + +- Use mail-builder instead of lettre_email. +- Move even even more tests into their own files ([#6559](https://github.com/deltachat/deltachat-core-rust/pull/6559)). +- Remove `Message.set_file()`, `dc_msg_set_file()` and related code ([#6558](https://github.com/deltachat/deltachat-core-rust/pull/6558)). +- Remove unused blob functions ([#6563](https://github.com/deltachat/deltachat-core-rust/pull/6563)). +- Let `BlobObject::from_name()` take `&str` ([#6571](https://github.com/deltachat/deltachat-core-rust/pull/6571)). +- Don't use traits where it's not necessary ([#6567](https://github.com/deltachat/deltachat-core-rust/pull/6567)). + ## [1.155.6] - 2025-02-17 ### Features / Changes @@ -5828,3 +5874,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.155.4]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.3..v1.155.4 [1.155.5]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.4..v1.155.5 [1.155.6]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.5..v1.155.6 +[1.156.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.6..v1.156.0 diff --git a/Cargo.lock b/Cargo.lock index a5f50a21e..18e41482d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1303,7 +1303,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.155.6" +version = "1.156.0" dependencies = [ "anyhow", "async-broadcast", @@ -1405,7 +1405,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.155.6" +version = "1.156.0" dependencies = [ "anyhow", "async-channel 2.3.1", @@ -1430,7 +1430,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.155.6" +version = "1.156.0" dependencies = [ "anyhow", "deltachat", @@ -1446,7 +1446,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.155.6" +version = "1.156.0" dependencies = [ "anyhow", "deltachat", @@ -1475,7 +1475,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.155.6" +version = "1.156.0" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index 64819b8f7..b5ad21454 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.155.6" +version = "1.156.0" edition = "2021" license = "MPL-2.0" rust-version = "1.81" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 8ba08d8cc..8dc8cf0b4 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.155.6" +version = "1.156.0" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 7ec9a0f2f..1111f4fb3 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.155.6" +version = "1.156.0" description = "DeltaChat JSON-RPC API" edition = "2021" default-run = "deltachat-jsonrpc-server" diff --git a/deltachat-jsonrpc/typescript/package.json b/deltachat-jsonrpc/typescript/package.json index 0cadf7942..905efb630 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -58,5 +58,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.155.6" + "version": "1.156.0" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 014ee0bcb..0f8e5904f 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.155.6" +version = "1.156.0" license = "MPL-2.0" edition = "2021" repository = "https://github.com/deltachat/deltachat-core-rust" diff --git a/deltachat-rpc-client/pyproject.toml b/deltachat-rpc-client/pyproject.toml index 95b6598d7..1b6432e05 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 = "1.155.6" +version = "1.156.0" description = "Python client for Delta Chat core JSON-RPC interface" classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/deltachat-rpc-server/Cargo.toml b/deltachat-rpc-server/Cargo.toml index 98cd7e748..f6a0b3486 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.155.6" +version = "1.156.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 ee2b34bdc..a6b94e8f1 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": "1.155.6" + "version": "1.156.0" } diff --git a/python/pyproject.toml b/python/pyproject.toml index cd5ee8d23..aa61f5136 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.155.6" +version = "1.156.0" description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat" readme = "README.rst" requires-python = ">=3.8" diff --git a/release-date.in b/release-date.in index 9ca9f08d9..85e029e49 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2025-02-17 \ No newline at end of file +2025-02-26 \ No newline at end of file