diff --git a/CHANGELOG.md b/CHANGELOG.md index 231a815bf..5b5413ce4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,71 @@ # Changelog +## [1.148.0] - 2024-10-22 + +### API-Changes + +- Create QR codes from any data ([#6090](https://github.com/deltachat/deltachat-core-rust/pull/6090)). +- Add delta chat logo to QR codes ([#6093](https://github.com/deltachat/deltachat-core-rust/pull/6093)). +- Add realtime advertisement received event ([#6043](https://github.com/deltachat/deltachat-core-rust/pull/6043)). +- Notify adding reactions ([#6072](https://github.com/deltachat/deltachat-core-rust/pull/6072)) +- Internal profile names ([#6088](https://github.com/deltachat/deltachat-core-rust/pull/6088)). + +### Features / Changes + +- IMAP COMPRESS support. +- Sort received outgoing message down if it's fresher than all non fresh messages. +- Prioritize cached results if DNS resolver returns many results. +- Add in-memory cache for DNS. +- deltachat-repl: Built-in QR code printer. +- Log the logic for (not) doing AEAP. +- Log when late Autocrypt header is ignored. +- Add more context to `send_msg` errors. + +### Fixes + +- Replace old draft with a new one atomically. +- ChatId::maybe_delete_draft: Don't delete message if it's not a draft anymore ([#6053](https://github.com/deltachat/deltachat-core-rust/pull/6053)). +- Call update_connection_history for proxified connections. +- sql: Set PRAGMA query_only to avoid writing on read-only connections. +- sql: Run `PRAGMA incremental_vacuum` on a write connection. +- Increase MAX_SECONDS_TO_LEND_FROM_FUTURE to 30. + +### Build system + +- Nix flake update. +- Resolve warning about default-features, and make it possible to disable vendoring ([#6079](https://github.com/deltachat/deltachat-core-rust/pull/6079)). +- Silence a rust-analyzer false-positive ([#6077](https://github.com/deltachat/deltachat-core-rust/pull/6077)). + +### CI + +- Update Rust to 1.82.0. + +### Documentation + +- Set_protection_for_timestamp_sort does not send messages. +- Document MimeFactory.req_mdn. +- Fix `too_long_first_doc_paragraph` clippy lint. + +### Refactor + +- Update_msg_state: Don't avoid downgrading OutMdnRcvd to OutDelivered. +- Fix elided_named_lifetimes warning. +- set_protection_for_timestamp_sort: Do not log bubbled up errors. +- Fix clippy::needless_lifetimes warnings. +- Use `HeaderDef` constant for Chat-Disposition-Notification-To. +- Resultify get_self_fingerprint(). +- sql: Move write mutex into connection pool. + +### Tests + +- test_qr_setup_contact_svg: Stop testing for no display name. +- Always gossip if gossip_period is set to 0. +- test_aeap_flow_verified: Wait for "member added" before sending messages ([#6057](https://github.com/deltachat/deltachat-core-rust/pull/6057)). +- Make test_verified_group_member_added_recovery more reliable. +- test_aeap_flow_verified: Do not start ac1new. +- Fix `test_securejoin_after_contact_resetup` flakiness. +- Message from old setup preserves contact verification, but breaks 1:1 protection. + ## [1.147.1] - 2024-10-13 ### Build system @@ -5008,3 +5074,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.146.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.145.0..v1.146.0 [1.147.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.146.0..v1.147.0 [1.147.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.147.0..v1.147.1 +[1.148.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.147.1..v1.148.0 diff --git a/Cargo.lock b/Cargo.lock index 5875f6883..4b4837cbc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1293,7 +1293,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.147.1" +version = "1.148.0" dependencies = [ "anyhow", "async-broadcast", @@ -1393,7 +1393,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.147.1" +version = "1.148.0" dependencies = [ "anyhow", "async-channel 2.3.1", @@ -1418,7 +1418,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.147.1" +version = "1.148.0" dependencies = [ "anyhow", "deltachat", @@ -1434,7 +1434,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.147.1" +version = "1.148.0" dependencies = [ "anyhow", "deltachat", @@ -1463,7 +1463,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.147.1" +version = "1.148.0" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index ac996aa52..61b4b5978 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.147.1" +version = "1.148.0" edition = "2021" license = "MPL-2.0" rust-version = "1.77" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 3c669168d..0996b5fad 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.147.1" +version = "1.148.0" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index 9cad17538..b45aeb4f0 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.147.1" +version = "1.148.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 e133760e7..dde70f120 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.147.1" + "version": "1.148.0" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 2b12b6958..324eafe42 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.147.1" +version = "1.148.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 8481c1d4a..d47eb9359 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.147.1" +version = "1.148.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 305bd5ee6..95c6dcffc 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.147.1" +version = "1.148.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 c2199f804..a8ab835d4 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.147.1" + "version": "1.148.0" } diff --git a/package.json b/package.json index 254be03f7..3dee62bbc 100644 --- a/package.json +++ b/package.json @@ -55,5 +55,5 @@ "test:mocha": "mocha node/test/test.mjs --growl --reporter=spec --bail --exit" }, "types": "node/dist/index.d.ts", - "version": "1.147.1" + "version": "1.148.0" } diff --git a/python/pyproject.toml b/python/pyproject.toml index 0bc71af53..3d00b6ddd 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.147.1" +version = "1.148.0" description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat" readme = "README.rst" requires-python = ">=3.7" diff --git a/release-date.in b/release-date.in index 2b7f34b67..0263692e9 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2024-10-13 \ No newline at end of file +2024-10-22 \ No newline at end of file