diff --git a/CHANGELOG.md b/CHANGELOG.md index cc0dd17fe..c492f4e3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,57 @@ # Changelog +## [1.160.0] - 2025-06-22 + +### API-Changes + +- [**breaking**] jsonrpc: remove webxdc info from MessageObject. + Users need to call `get_webxdc_info` separately now + and expect that the call may fail e.g. if WebXDC is not a valid ZIP archive. +- [**breaking**] Deprecate `DC_GCL_VERIFIED_ONLY`. +- [**breaking**] Make logging macros private. + +### Features / Changes + +- Add more IMAP logging. +- Sort apps by recently-updated ([#6875](https://github.com/chatmail/core/pull/6875)). +- Better error for quoting a message from another chat. +- Put "biography" in the vCard ([#6819](https://github.com/chatmail/core/pull/6819)). + +### Fixes + +- Do not allow chat creation if decryption failed. +- Remove faulty test ([#6880](https://github.com/chatmail/core/pull/6880)). +- Reduce the scope of the last_full_folder_scan lock in scan_folders. +- Ignore verification error if the chat is not protected yet. +- Create group chats unprotected on verification error. +- `fetch_url`: return err on non 2xx reponses. +- Sort multiple saved messages by timestamp ([#6862](https://github.com/chatmail/core/pull/6862)). +- contact-tools: Escape commas in vCards' FN, KEY, PHOTO, NOTE ([#6912](https://github.com/chatmail/core/pull/6912)). +- Don't change ConfiguredAddr when adding a transport ([#6804](https://github.com/chatmail/core/pull/6804)). + +### Build system + +- Increase MSRV to 1.85.0. +- Update Doxygen config and layout file. +- Update to rPGP 0.16.0 ([#6719](https://github.com/chatmail/core/pull/6719)). +- Enable async-native-tls/vendored feature. +- Update rusqlite to 0.36.0. + +### CI + +- Update Rust to 1.87.0. +- nix: Test build on macOS without cross-compilation. +- Use installed toolchain to lint Rust. + +### Refactor + +- Remove explicit lock drop at the end of scope. +- Use CancellationToken instead of a 1-message channel. + +### Documentation + +- Add more code style guide references. + ## [1.159.5] - 2025-05-14 ### Fixes @@ -6303,3 +6355,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed [1.159.3]: https://github.com/chatmail/core/compare/v1.159.2..v1.159.3 [1.159.4]: https://github.com/chatmail/core/compare/v1.159.3..v1.159.4 [1.159.5]: https://github.com/chatmail/core/compare/v1.159.4..v1.159.5 +[1.160.0]: https://github.com/chatmail/core/compare/v1.159.5..v1.160.0 diff --git a/Cargo.lock b/Cargo.lock index ea0ec2798..007e2eac6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1285,7 +1285,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.159.5" +version = "1.160.0" dependencies = [ "anyhow", "async-broadcast", @@ -1394,7 +1394,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.159.5" +version = "1.160.0" dependencies = [ "anyhow", "async-channel 2.3.1", @@ -1416,7 +1416,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.159.5" +version = "1.160.0" dependencies = [ "anyhow", "deltachat", @@ -1432,7 +1432,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.159.5" +version = "1.160.0" dependencies = [ "anyhow", "deltachat", @@ -1461,7 +1461,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.159.5" +version = "1.160.0" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index bee7b4e1f..3f7118b9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.159.5" +version = "1.160.0" edition = "2021" license = "MPL-2.0" rust-version = "1.85" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index d768690f8..9f87b8ecb 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.159.5" +version = "1.160.0" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 89d9944bb..61f82a713 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.159.5" +version = "1.160.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 fe08315b2..80fa13ad7 100644 --- a/deltachat-jsonrpc/typescript/package.json +++ b/deltachat-jsonrpc/typescript/package.json @@ -24,9 +24,9 @@ }, "exports": { ".": { - "types": "./dist/deltachat.d.ts", "import": "./dist/deltachat.js", - "require": "./dist/deltachat.cjs" + "require": "./dist/deltachat.cjs", + "types": "./dist/deltachat.d.ts" } }, "license": "MPL-2.0", @@ -54,5 +54,5 @@ }, "type": "module", "types": "dist/deltachat.d.ts", - "version": "1.159.5" + "version": "1.160.0" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index a13ea8041..fa310214f 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.159.5" +version = "1.160.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 53dcc506a..16ec5a7bc 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.159.5" +version = "1.160.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 f5678301c..fe6c808f6 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.159.5" +version = "1.160.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 0ea58135d..e631919a0 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.159.5" + "version": "1.160.0" } diff --git a/python/pyproject.toml b/python/pyproject.toml index 080660906..adfa22965 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.159.5" +version = "1.160.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 47a3b0301..684ade132 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2025-05-14 \ No newline at end of file +2025-06-22 \ No newline at end of file