Skip to content

Commit 8d6f4b0

Browse files
committed
chore(release): prepare for 2.36.0
1 parent 2844693 commit 8d6f4b0

File tree

12 files changed

+73
-15
lines changed

12 files changed

+73
-15
lines changed

CHANGELOG.md

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

3+
## [2.36.0] - 2026-01-03
4+
5+
### CI
6+
7+
- Pin GitHub Action references.
8+
9+
### API-Changes
10+
11+
- Add transports event to FFI.
12+
13+
### Features / Changes
14+
15+
- Add core version to `receive_imf` failure message.
16+
- Connectivity view: quota for all transports ([#7630](https://github.com/chatmail/core/pull/7630)).
17+
- Send sync messages over SMTP and do not move them to mvbox.
18+
19+
### Fixes
20+
21+
- When accepting group, add members with `Origin::IncomingTo` and sort them down in the contact list (7592).
22+
- Update fallback welcome message.
23+
- `inner_configure`: Check Config::OnlyFetchMvbox before MvboxMove for multi-transport ([#7637](https://github.com/chatmail/core/pull/7637)).
24+
- Reset options not available for chatmail on chatmail profiles.
25+
- Don't send webxdc notification for `notify: "*"` when chat is muted ([#7658](https://github.com/chatmail/core/pull/7658)).
26+
27+
### Documentation
28+
29+
- `delete_chat()`: don't lie that messages aren't deleted from server.
30+
- Remove references to removed `sentbox_watch` config.
31+
- Update documentation for `TransportsModified` event.
32+
33+
### Tests
34+
35+
- Contact list after accepting group with unknown contacts ([#7592](https://github.com/chatmail/core/pull/7592)).
36+
- Port test_import_export_online_all to JSON-RPC ([#7411](https://github.com/chatmail/core/pull/7411)).
37+
38+
### Refactor
39+
40+
- Turn `DC_VERSION_STR` into `&str`.
41+
- ffi: Remove one pointer indirection for `dc_accounts_t`.
42+
43+
### Miscellaneous Tasks
44+
45+
- deps: Bump actions/download-artifact from 6 to 7.
46+
- deps: Bump actions/upload-artifact from 5 to 6.
47+
- deps: Bump astral-sh/setup-uv from 7.1.4 to 7.1.6.
48+
- deps: Bump cachix/install-nix-action from 31.8.4 to 31.9.0.
49+
- cargo: Bump serde_json from 1.0.145 to 1.0.147.
50+
- cargo: Bump uuid from 1.18.1 to 1.19.0.
51+
- cargo: Bump toml from 0.9.8 to 0.9.10+spec-1.1.0.
52+
- cargo: Bump tempfile from 3.23.0 to 3.24.0.
53+
- cargo: Bump libc from 0.2.177 to 0.2.178.
54+
- cargo: Bump tracing from 0.1.41 to 0.1.44.
55+
- cargo: Bump hyper-util from 0.1.18 to 0.1.19.
56+
- cargo: Bump log from 0.4.28 to 0.4.29.
57+
- cargo: Bump rustls-pki-types from 1.13.0 to 1.13.2.
58+
- cargo: Bump criterion from 0.7.0 to 0.8.1.
59+
360
## [2.35.0] - 2025-12-16
461

562
### API-Changes
@@ -7449,3 +7506,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
74497506
[2.33.0]: https://github.com/chatmail/core/compare/v2.32.0..v2.33.0
74507507
[2.34.0]: https://github.com/chatmail/core/compare/v2.33.0..v2.34.0
74517508
[2.35.0]: https://github.com/chatmail/core/compare/v2.34.0..v2.35.0
7509+
[2.36.0]: https://github.com/chatmail/core/compare/v2.35.0..v2.36.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.35.0"
3+
version = "2.36.0"
44
edition = "2024"
55
license = "MPL-2.0"
66
rust-version = "1.88"

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.35.0"
3+
version = "2.36.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.35.0"
3+
version = "2.36.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.35.0"
57+
"version": "2.36.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.35.0"
3+
version = "2.36.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.35.0"
7+
version = "2.36.0"
88
license = "MPL-2.0"
99
description = "Python client for Delta Chat core JSON-RPC interface"
1010
classifiers = [

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.35.0"
3+
version = "2.36.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.35.0"
18+
"version": "2.36.0"
1919
}

0 commit comments

Comments
 (0)