mirror of
https://github.com/chatmail/core.git
synced 2026-04-28 19:06:35 +03:00
chore(release): prepare for 1.159.1
This commit is contained in:
41
CHANGELOG.md
41
CHANGELOG.md
@@ -1,5 +1,45 @@
|
||||
# Changelog
|
||||
|
||||
## [1.159.1] - 2025-04-12
|
||||
|
||||
### API-Changes
|
||||
|
||||
- deltachat-rpc-client: Add `Account.add_transport()`.
|
||||
- Add jsonrpc for info_contact_id.
|
||||
|
||||
### Build system
|
||||
|
||||
- Update crossbeam-channel from 0.5.14 to 0.5.15.
|
||||
- Increase MSRV to 1.82.0.
|
||||
|
||||
### CI
|
||||
|
||||
- Don't make ruff format quiet ([#6785](https://github.com/chatmail/core/pull/6785)).
|
||||
|
||||
### Documentation
|
||||
|
||||
- MimeFactory.member_timestamps has the same order as To: rather than RCPT TO:.
|
||||
- Two JsonRPC doc improvements ([#6778](https://github.com/chatmail/core/pull/6778)).
|
||||
|
||||
### Features / Changes
|
||||
|
||||
- Improve error message when the user tries to do AEAP ([#6786](https://github.com/chatmail/core/pull/6786)).
|
||||
- Pass email and password via env in python-jsonrpc.
|
||||
- Track gossiping per (chat, fingerprint) pair.
|
||||
|
||||
### Fixes
|
||||
|
||||
- Add missing ChatDeleted event to python jsonrpc client.
|
||||
- Never send Autocrypt-Gossip in broadcast lists.
|
||||
- Restart I/O when mvbox_move setting is changed.
|
||||
|
||||
### Tests
|
||||
|
||||
- Port test_delete_deltachat_folder to JSON-RPC.
|
||||
- Autocrypt-Gossip header isn't sent in broadcast messages.
|
||||
- Encrypt test_subject_in_group().
|
||||
- Encrypt test_remove_member_bcc.
|
||||
|
||||
## [1.159.0] - 2025-04-08
|
||||
|
||||
### API-Changes
|
||||
@@ -6191,3 +6231,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
|
||||
[1.157.3]: https://github.com/chatmail/core/compare/v1.157.2..v1.157.3
|
||||
[1.158.0]: https://github.com/chatmail/core/compare/v1.157.3..v1.158.0
|
||||
[1.159.0]: https://github.com/chatmail/core/compare/v1.158.0..v1.159.0
|
||||
[1.159.1]: https://github.com/chatmail/core/compare/v1.159.0..v1.159.1
|
||||
|
||||
10
Cargo.lock
generated
10
Cargo.lock
generated
@@ -1255,7 +1255,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deltachat"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-broadcast",
|
||||
@@ -1364,7 +1364,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deltachat-jsonrpc"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-channel 2.3.1",
|
||||
@@ -1387,7 +1387,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deltachat-repl"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"deltachat",
|
||||
@@ -1403,7 +1403,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deltachat-rpc-server"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"deltachat",
|
||||
@@ -1432,7 +1432,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "deltachat_ffi"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"deltachat",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deltachat"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
rust-version = "1.82"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deltachat_ffi"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
description = "Deltachat FFI"
|
||||
edition = "2018"
|
||||
readme = "README.md"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deltachat-jsonrpc"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
description = "DeltaChat JSON-RPC API"
|
||||
edition = "2021"
|
||||
license = "MPL-2.0"
|
||||
|
||||
@@ -54,5 +54,5 @@
|
||||
},
|
||||
"type": "module",
|
||||
"types": "dist/deltachat.d.ts",
|
||||
"version": "1.159.0"
|
||||
"version": "1.159.1"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deltachat-repl"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
license = "MPL-2.0"
|
||||
edition = "2021"
|
||||
repository = "https://github.com/chatmail/core"
|
||||
|
||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "deltachat-rpc-client"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
description = "Python client for Delta Chat core JSON-RPC interface"
|
||||
classifiers = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "deltachat-rpc-server"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
description = "DeltaChat JSON-RPC server"
|
||||
edition = "2021"
|
||||
readme = "README.md"
|
||||
|
||||
@@ -15,5 +15,5 @@
|
||||
},
|
||||
"type": "module",
|
||||
"types": "index.d.ts",
|
||||
"version": "1.159.0"
|
||||
"version": "1.159.1"
|
||||
}
|
||||
|
||||
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "deltachat"
|
||||
version = "1.159.0"
|
||||
version = "1.159.1"
|
||||
description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat"
|
||||
readme = "README.rst"
|
||||
requires-python = ">=3.8"
|
||||
|
||||
@@ -1 +1 @@
|
||||
2025-04-08
|
||||
2025-04-12
|
||||
Reference in New Issue
Block a user