From 5fb5fd4318927b287763fc44e68827454fd79ee3 Mon Sep 17 00:00:00 2001 From: link2xt Date: Tue, 23 Jul 2024 05:01:34 +0000 Subject: [PATCH] chore(release): prepare for 1.142.0 --- CHANGELOG.md | 59 ++++++++++++++++++- 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 +- package.json | 2 +- python/pyproject.toml | 2 +- release-date.in | 2 +- 13 files changed, 74 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99863891e..1f4b1c9e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,61 @@ # Changelog +## [1.142.0] - 2024-07-23 + +### API-Changes + +- deltachat-jsonrpc: Add `pinned` property to `FullChat` and `BasicChat`. +- deltachat-jsonrpc: Allow to set message quote text without referencing quoted message ([#5695](https://github.com/deltachat/deltachat-core-rust/pull/5695)). + +### Features / Changes + +- cargo: Update iroh from 0.17 to 0.20. +- iroh: Pass direct addresses from Endpoint to Gossip. +- New BACKUP2 transfer protocol. +- Use `[...]` instead of `...` for protected subject. +- Add email address and fingerprint to exported key file names ([#5694](https://github.com/deltachat/deltachat-core-rust/pull/5694)). +- Request `imap` ALPN for IMAP TLS connections and `smtp` ALPN for SMTP TLS connections. +- Limit the size of aggregated WebXDC update to 100 KiB ([#4825](https://github.com/deltachat/deltachat-core-rust/pull/4825)). +- Don't create ad-hoc group on a member removal message ([#5618](https://github.com/deltachat/deltachat-core-rust/pull/5618)). +- Don't unarchive a group on a member removal except SELF ([#5618](https://github.com/deltachat/deltachat-core-rust/pull/5618)). +- Use custom DNS resolver for HTTP(S). +- Promote fallback DNS results to cached on successful use. +- Set summary thumbnail path for WebXDCs to "webxdc-icon://last-msg-id" ([#5782](https://github.com/deltachat/deltachat-core-rust/pull/5782)). +- Do not show the address in invite QR code SVG. +- Report better error from DcKey::from_asc() ([#5539](https://github.com/deltachat/deltachat-core-rust/pull/5539)). +- Contact::create_ex: Don't send sync message if nothing changed ([#5705](https://github.com/deltachat/deltachat-core-rust/pull/5705)). + +### Fixes + +- `Message::set_quote`: Don't forget to remove `Param::ProtectQuote`. +- Randomize avatar blob filenames to work around caching. +- Correct copy-pasted DCACCOUNT parsing errors message. +- Call `send_sync_msg()` only from the SMTP loop ([#5780](https://github.com/deltachat/deltachat-core-rust/pull/5780)). +- Emit MsgsChanged if the number of unnoticed archived chats could decrease ([#5768](https://github.com/deltachat/deltachat-core-rust/pull/5768)). +- Reject message with forged From even if no valid signatures are found. + +### Refactor + +- Move key transfer into its own submodule. +- Move TempPathGuard into `tools` and use instead of `DeleteOnDrop`. +- Return error from export_backup() without logging. +- Reduce boilerplate for migration version increment. + +### Tests + +- Add test for `get_http_response` JSON-RPC call. + +### Build system + +- node: Pin node-gyp to version 10.1. + +### Miscellaneous Tasks + +- cargo: Update hashlink to remove allocator-api2 dependency. +- cargo: Update openssl to v0.10.66. +- deps: Bump openssl from 0.10.60 to 0.10.66 in /fuzz. +- cargo: Update `image` crate to 0.25.2. + ## [1.141.2] - 2024-07-09 ### Features / Changes @@ -24,7 +80,7 @@ - Protect from reusing migration versions ([#5719](https://github.com/deltachat/deltachat-core-rust/pull/5719)). - Move `quota_needs_update` calculation to a separate function ([#5683](https://github.com/deltachat/deltachat-core-rust/pull/5683)). -### Other +### Documentation - Document vCards in the specification ([#5724](https://github.com/deltachat/deltachat-core-rust/pull/5724)) @@ -4538,3 +4594,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed [1.141.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.140.2...v1.141.0 [1.141.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.141.0...v1.141.1 [1.141.2]: https://github.com/deltachat/deltachat-core-rust/compare/v1.141.1...v1.141.2 +[1.142.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.141.2...v1.142.0 diff --git a/Cargo.lock b/Cargo.lock index 512d10133..2769eb52f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1392,7 +1392,7 @@ dependencies = [ [[package]] name = "deltachat" -version = "1.141.2" +version = "1.142.0" dependencies = [ "ansi_term", "anyhow", @@ -1486,7 +1486,7 @@ dependencies = [ [[package]] name = "deltachat-jsonrpc" -version = "1.141.2" +version = "1.142.0" dependencies = [ "anyhow", "async-channel 2.3.1", @@ -1511,7 +1511,7 @@ dependencies = [ [[package]] name = "deltachat-repl" -version = "1.141.2" +version = "1.142.0" dependencies = [ "ansi_term", "anyhow", @@ -1526,7 +1526,7 @@ dependencies = [ [[package]] name = "deltachat-rpc-server" -version = "1.141.2" +version = "1.142.0" dependencies = [ "anyhow", "deltachat", @@ -1555,7 +1555,7 @@ dependencies = [ [[package]] name = "deltachat_ffi" -version = "1.141.2" +version = "1.142.0" dependencies = [ "anyhow", "deltachat", diff --git a/Cargo.toml b/Cargo.toml index 18e52ac25..b59718a8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.141.2" +version = "1.142.0" edition = "2021" license = "MPL-2.0" rust-version = "1.77" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index d5ab7d728..ddbb04a44 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat_ffi" -version = "1.141.2" +version = "1.142.0" description = "Deltachat FFI" edition = "2018" readme = "README.md" diff --git a/deltachat-jsonrpc/Cargo.toml b/deltachat-jsonrpc/Cargo.toml index bcba439a7..7486a1b53 100644 --- a/deltachat-jsonrpc/Cargo.toml +++ b/deltachat-jsonrpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-jsonrpc" -version = "1.141.2" +version = "1.142.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 d3c7b1392..89983f988 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.141.2" + "version": "1.142.0" } diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index 445029bab..7969fd57f 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-repl" -version = "1.141.2" +version = "1.142.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 204040d97..093ebe05f 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.141.2" +version = "1.142.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 2dea9e753..08db9029d 100644 --- a/deltachat-rpc-server/Cargo.toml +++ b/deltachat-rpc-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat-rpc-server" -version = "1.141.2" +version = "1.142.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 d8052da19..2c2fca253 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.141.2" + "version": "1.142.0" } diff --git a/package.json b/package.json index 25650acb7..03ab1c600 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.141.2" + "version": "1.142.0" } diff --git a/python/pyproject.toml b/python/pyproject.toml index f3665c5e1..ea9d3a540 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "deltachat" -version = "1.141.2" +version = "1.142.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 f69ed48d9..db139e6fd 100644 --- a/release-date.in +++ b/release-date.in @@ -1 +1 @@ -2024-07-09 \ No newline at end of file +2024-07-23 \ No newline at end of file