Skip to content

Commit 3efd949

Browse files
committed
chore(release): prepare for 1.158.0
1 parent 99a6756 commit 3efd949

File tree

12 files changed

+65
-15
lines changed

12 files changed

+65
-15
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# Changelog
22

3+
## [1.158.0] - 2025-03-29
4+
5+
### API-Changes
6+
7+
- deltachat-rpc-client: Accept `Account` as `Account.create_contact()` argument.
8+
- Rust: Add `ContactId.set_name()`.
9+
- JSON-RPC: Rename parameter name in `get_webxdc_href` to `info_msg_id` to reduce confusion potential ([#6681](https://github.com/chatmail/core/pull/6681)).
10+
11+
### Features / Changes
12+
13+
- Nicer configuration error ([#6684](https://github.com/chatmail/core/pull/6684)).
14+
- securejoin: Do not create 1:1 chat on Alice's side until `vc-request-with-auth`.
15+
- Understandable error message when accounts.lock can't be locked ([#6695](https://github.com/chatmail/core/pull/6695)).
16+
- Simplify e2ee decision logic, remove majority vote.
17+
- Stop saving txt_raw.
18+
19+
### Fixes
20+
21+
- Do not fail to send the message if some keys are missing.
22+
- Synchronize contact name changes.
23+
- Move group name timestamp update up in create_send_msg_jobs().
24+
- Fixes for transport JSON-RPC ([#6680](https://github.com/chatmail/core/pull/6680)).
25+
26+
### Build system
27+
28+
- deltachat-rpc-client: Move development dependencies from tox.ini to pyproject.toml.
29+
- Update resolve-conf from 0.7.0 to 0.7.1.
30+
31+
### Refactor
32+
33+
- Do not convert SQL arguments to `String` unnecessarily.
34+
- Factor out `update_chat_names()`.
35+
- Use `created_timestamp()` instead of duplicating its code ([#6692](https://github.com/chatmail/core/pull/6692)).
36+
- Use `chat_id.get_timestamp()` instead of duplicating its code ([#6691](https://github.com/chatmail/core/pull/6691)).
37+
- Move `mark_recipients_as_verified()` call out of `has_verified_encryption()`.
38+
- Move `proxy_config` out of `ConfiguredLoginParam` ([#6712](https://github.com/chatmail/core/pull/6712)).
39+
40+
### Tests
41+
42+
- Use vCard in TestContext.add_or_lookup_contact().
43+
- Remove test_group_with_removed_message_id.
44+
- Use add_or_lookup_email_contact() in get_chat().
45+
- Use add_or_lookup_email_contact in test_setup_contact_ex.
46+
- Use vCards more in Python tests.
47+
- Use TestContextManager in more tests.
48+
- Use vCards to create contacts in more Rust tests.
49+
- Set chat name multiple times in a row.
50+
- Online test for renaming the group multiple times.
51+
352
## [1.157.3] - 2025-03-19
453

554
### API-Changes
@@ -6051,3 +6100,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
60516100
[1.157.1]: https://github.com/chatmail/core/compare/v1.157.0..v1.157.1
60526101
[1.157.2]: https://github.com/chatmail/core/compare/v1.157.1..v1.157.2
60536102
[1.157.3]: https://github.com/chatmail/core/compare/v1.157.2..v1.157.3
6103+
[1.158.0]: https://github.com/chatmail/core/compare/v1.157.3..v1.158.0

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat"
3-
version = "1.157.3"
3+
version = "1.158.0"
44
edition = "2021"
55
license = "MPL-2.0"
66
rust-version = "1.81"

deltachat-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat_ffi"
3-
version = "1.157.3"
3+
version = "1.158.0"
44
description = "Deltachat FFI"
55
edition = "2018"
66
readme = "README.md"

deltachat-jsonrpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-jsonrpc"
3-
version = "1.157.3"
3+
version = "1.158.0"
44
description = "DeltaChat JSON-RPC API"
55
edition = "2021"
66
license = "MPL-2.0"

deltachat-jsonrpc/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,5 @@
5454
},
5555
"type": "module",
5656
"types": "dist/deltachat.d.ts",
57-
"version": "1.157.3"
57+
"version": "1.158.0"
5858
}

deltachat-repl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-repl"
3-
version = "1.157.3"
3+
version = "1.158.0"
44
license = "MPL-2.0"
55
edition = "2021"
66
repository = "https://github.com/chatmail/core"

deltachat-rpc-client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deltachat-rpc-client"
7-
version = "1.157.3"
7+
version = "1.158.0"
88
description = "Python client for Delta Chat core JSON-RPC interface"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

deltachat-rpc-server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-rpc-server"
3-
version = "1.157.3"
3+
version = "1.158.0"
44
description = "DeltaChat JSON-RPC server"
55
edition = "2021"
66
readme = "README.md"

deltachat-rpc-server/npm-package/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
},
1616
"type": "module",
1717
"types": "index.d.ts",
18-
"version": "1.157.3"
18+
"version": "1.158.0"
1919
}

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "deltachat"
7-
version = "1.157.3"
7+
version = "1.158.0"
88
description = "Python bindings for the Delta Chat Core library using CFFI against the Rust-implemented libdeltachat"
99
readme = "README.rst"
1010
requires-python = ">=3.8"

release-date.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-03-19
1+
2025-03-29

0 commit comments

Comments
 (0)