Skip to content

Commit 192a6a2

Browse files
committed
chore(release): prepare for 2.0.0
1 parent 4ca0ce2 commit 192a6a2

File tree

12 files changed

+85
-15
lines changed

12 files changed

+85
-15
lines changed

CHANGELOG.md

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

3+
## [2.0.0] - 2025-07-09
4+
5+
This release changes the way the core handles contact keys.
6+
Instead of tracking OpenPGP keys corresponding to the
7+
contacts in [Autocrypt](https://autocrypt.org/) peerstate,
8+
the core creates a new "key-contact" for each known public key.
9+
Reception of a message signed with a new unknown key
10+
no longer results in warnings about setup changes,
11+
but creates a new contact and a new 1:1 chat if necessary.
12+
Additionally, there are "address-contacts" corresponding
13+
to the e-mail addresses.
14+
15+
### Features / Changes
16+
17+
- Key-contacts ([#6796](https://github.com/chatmail/core/pull/6796), [#6941](https://github.com/chatmail/core/pull/6941)).
18+
- Increase event channel size from 1000 to 10000.
19+
- Minimize the amount of data preserved for trashed messages.
20+
- Show broadcast channels in their own, proper "Channel" chat ([#6901](https://github.com/chatmail/core/pull/6901), [#6975](https://github.com/chatmail/core/pull/6975)).
21+
- Check images passed as `File` before making them `Image`.
22+
23+
### API-Changes
24+
25+
- CFFI: Add dc_contact_is_key_contact() ([#6955](https://github.com/chatmail/core/pull/6955)).
26+
- Contact::get_all(): Support listing address-contacts.
27+
- [**breaking**] Add InBroadcastChannel, OutBroadcastChannel chattypes, add create_broadcast_channel() ([#6901](https://github.com/chatmail/core/pull/6901)).
28+
- deltachat-rpc-client: Add Message.get_read_receipts().
29+
30+
### Fixes
31+
32+
- Remove display name from get_info(). This information usually goes at the top of the log and we don't want users to include it in bug reports.
33+
- Wait for scheduler tasks shutdown in parallel.
34+
- Update deltachat-repl help and autocomplete to match implementation ([#6978](https://github.com/chatmail/core/pull/6978), ([#6979](https://github.com/chatmail/core/pull/6979)).
35+
- Send Autocrypt header in MDNs. This is needed to assign MDNs to key-contacts.
36+
- Prefer encrypted List-Id header ([#6983](https://github.com/chatmail/core/pull/6983)).
37+
- Treat "tgs" as Viewtype::File.
38+
- Treat and send images that can't be decoded as Viewtype::File.
39+
- Decide on filename used for sending depending on the original Viewtype.
40+
- Migrate_key_contacts(): Remove "id>9" from encrypted messages SELECT.
41+
- Save msgs to key-contacts migration state and run migration periodically ([#6956](https://github.com/chatmail/core/pull/6956)).
42+
- Do not try to lookup key-contacts for unencrypted 1:1 messages.
43+
- Add query to post request for account creation ([#6989](https://github.com/chatmail/core/pull/6989)).
44+
45+
### CI
46+
47+
- Update Rust to 1.88.0.
48+
49+
### Documentation
50+
51+
- Remove outdated comment that says MDNs are unencrypted.
52+
53+
### Refactor
54+
55+
- Upgrade to Rust 2024.
56+
- Build_body_file(): Remove guessing mimetype by file extension.
57+
58+
### Tests
59+
60+
- Add online test for read receipts.
61+
- Add a test reproducing chat assignment bug.
62+
63+
### Miscellaneous Tasks
64+
65+
- cargo: Bump smallvec from 1.15.0 to 1.15.1.
66+
- cargo: Bump syn from 2.0.101 to 2.0.104.
67+
- cargo: Bump hyper-util from 0.1.13 to 0.1.14.
68+
- cargo: Bump toml from 0.8.19 to 0.8.23.
69+
- cargo: Bump proptest from 1.6.0 to 1.7.0.
70+
- cargo: Bump libc from 0.2.172 to 0.2.174.
71+
372
## [1.160.0] - 2025-06-22
473

574
### API-Changes
@@ -6356,3 +6425,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
63566425
[1.159.4]: https://github.com/chatmail/core/compare/v1.159.3..v1.159.4
63576426
[1.159.5]: https://github.com/chatmail/core/compare/v1.159.4..v1.159.5
63586427
[1.160.0]: https://github.com/chatmail/core/compare/v1.159.5..v1.160.0
6428+
[2.0.0]: https://github.com/chatmail/core/compare/v1.160.0..v2.0.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.160.0"
3+
version = "2.0.0"
44
edition = "2024"
55
license = "MPL-2.0"
66
rust-version = "1.85"

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.160.0"
3+
version = "2.0.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.160.0"
3+
version = "2.0.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.160.0"
57+
"version": "2.0.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.160.0"
3+
version = "2.0.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.160.0"
7+
version = "2.0.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.160.0"
3+
version = "2.0.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.160.0"
18+
"version": "2.0.0"
1919
}

0 commit comments

Comments
 (0)