Skip to content

Commit 69a3a31

Browse files
committed
chore(release): prepare for 2.26.0
1 parent 1cb0a25 commit 69a3a31

File tree

12 files changed

+57
-15
lines changed

12 files changed

+57
-15
lines changed

CHANGELOG.md

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

3+
## [2.26.0] - 2025-11-11
4+
5+
### API-Changes
6+
7+
- [**breaking**] JSON-RPC: `chat_type` now contains a variant of a string enum/union. Affected places: `FullChat.chat_type`, `BasicChat.chat_type`, `ChatListItemFetchResult::ChatListItem.chat_type`, `Event:: SecurejoinInviterProgress.chat_type` and `MessageSearchResult.chat_type` ([#7285](https://github.com/chatmail/core/pull/7285))
8+
9+
### Features / Changes
10+
11+
- Error toast for "Not creating securejoin QR for old broadcast".
12+
13+
### Fixes
14+
15+
- `is_encrypted()` should be true for Saved Messages chat so messages there are editable.
16+
- Do not return an error from `receive_imf` if we fail to add a member because we are not in chat.
17+
- Do not add QR inviter to groups immediately.
18+
- Do not ignore I/O errors in `BlobObject::store_from_base64`.
19+
20+
### Miscellaneous Tasks
21+
22+
- Rustfmt.
23+
24+
### Refactor
25+
26+
- imap: Move resync request from Context to Imap.
27+
- Replace imap:: calls in migration 73 with SQL queries.
28+
- Remove unused imports.
29+
30+
### Documentation
31+
32+
- Readme: update language binding section to avoid usage of cffi in new projects ([#7380](https://github.com/chatmail/core/pull/7380)).
33+
- Fix Context::set_stock_translation reference.
34+
35+
### Tests
36+
37+
- Test editing saved messages.
38+
- Remove ThreadPoolExecutor from test_wait_next_messages.
39+
- Move test_two_group_securejoins from receive_imf to securejoin module.
40+
- At the end of securejoin Bob has two members in a group chat.
41+
- Bob has 0 members in the chat until securejoin finishes.
42+
- Do not add QR inviter to groups right after scanning the code.
43+
344
## [2.25.0] - 2025-11-05
445

546
### Features / Changes
@@ -7101,3 +7142,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
71017142
[2.23.0]: https://github.com/chatmail/core/compare/v2.22.0..v2.23.0
71027143
[2.24.0]: https://github.com/chatmail/core/compare/v2.23.0..v2.24.0
71037144
[2.25.0]: https://github.com/chatmail/core/compare/v2.24.0..v2.25.0
7145+
[2.26.0]: https://github.com/chatmail/core/compare/v2.25.0..v2.26.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 = "2.25.0"
3+
version = "2.26.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 = "2.25.0"
3+
version = "2.26.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 = "2.25.0"
3+
version = "2.26.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": "2.25.0"
57+
"version": "2.26.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 = "2.25.0"
3+
version = "2.26.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 = "2.25.0"
7+
version = "2.26.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 = "2.25.0"
3+
version = "2.26.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": "2.25.0"
18+
"version": "2.26.0"
1919
}

0 commit comments

Comments
 (0)