Skip to content

Commit dab7ca1

Browse files
committed
chore(release): prepare for 2.49.0
1 parent 520cd0e commit dab7ca1

12 files changed

Lines changed: 77 additions & 15 deletions

File tree

CHANGELOG.md

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

3+
## [2.49.0] - 2026-04-13
4+
5+
### Features / Changes
6+
7+
- Flipped Exif orientations ([#8057](https://github.com/chatmail/core/pull/8057)).
8+
9+
### Fixes
10+
11+
- Determine whether a message is an own message by looking at signature. multiple devices can temporarly have different sets of self addresses, and still need to properly recognize incoming versus outgoing messages. Disclaimer: some LLM tooling was initially involved but i went over everything by hand, and also addressed review comments..
12+
- Mark a message as delivered only after it has been fully sent out ([#8062](https://github.com/chatmail/core/pull/8062)).
13+
- Do not create 1:1 chat on second device when scanning a QR code.
14+
- Do not URL-encode proxy hostnames.
15+
- Assign webxdc updates from post-message to webxdc instance.
16+
- Let search also return hidden contacts if search value is an email address.
17+
- Add missing `extern "C"` to `dc_array_is_independent`.
18+
- Make start messages stick to the top of the chat.
19+
- For bots, wait with emitting IncomingMsg until the Post-Msg arrived ([#8104](https://github.com/chatmail/core/pull/8104)).
20+
- Trash message about group name change from non-member.
21+
22+
### API-Changes
23+
24+
- [**breaking**] remove `dc_msg_force_plaintext`.
25+
- @deltachat/stdio-rpc-server: also export a class.
26+
27+
### CI
28+
29+
- Make sure `-dev` version suffix is not forgotten after release.
30+
31+
### Documentation
32+
33+
- Document that events are broadcasted to all event emitters.
34+
- Fix broken link for i-d "Common PGP/MIME Message Mangling".
35+
36+
### Refactor
37+
38+
- ignore ForcePlaintext in saved messages chat.
39+
- @deltachat/stdio-rpc-server: make `getRPCServerPath` and `startDeltaChat` synchronous.
40+
- @deltachat/stdio-rpc-server: remove `await` from README example.
41+
- less nested `remove_contact_from_chat`.
42+
43+
### Tests
44+
45+
- Add test for `tweak_sort_timestamp()`.
46+
- Test that messages are only marked as delivered after being fully sent out ([#8077](https://github.com/chatmail/core/pull/8077)).
47+
- Fix flaky `test_no_old_msg_is_fresh`: Wait for incoming message before sending outgoing one.
48+
- Use TestContextManager in `test_keep_member_list_if_possibly_nomember`.
49+
50+
### Miscellaneous Tasks
51+
52+
- cargo: bump chrono from 0.4.43 to 0.4.44.
53+
- cargo: bump tracing-subscriber from 0.3.22 to 0.3.23.
54+
- cargo: bump tempfile from 3.26.0 to 3.27.0.
55+
- cargo: bump pin-project from 1.1.10 to 1.1.11.
56+
- cargo: bump tokio from 1.49.0 to 1.50.0.
57+
- cargo: bump libc from 0.2.182 to 0.2.183.
58+
- cargo: bump quote from 1.0.44 to 1.0.45.
59+
- cargo: bump image from 0.25.9 to 0.25.10.
60+
- cargo: bump proptest from 1.10.0 to 1.11.0.
61+
- deps: bump dependabot/fetch-metadata from 2.4.0 to 3.0.0.
62+
- bump version to 2.49.0-dev.
63+
364
## [2.48.0] - 2026-03-30
465

566
### Fixes
@@ -8041,3 +8102,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
80418102
[2.46.0]: https://github.com/chatmail/core/compare/v2.45.0..v2.46.0
80428103
[2.47.0]: https://github.com/chatmail/core/compare/v2.46.0..v2.47.0
80438104
[2.48.0]: https://github.com/chatmail/core/compare/v2.47.0..v2.48.0
8105+
[2.49.0]: https://github.com/chatmail/core/compare/v2.48.0..v2.49.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.49.0-dev"
3+
version = "2.49.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.49.0-dev"
3+
version = "2.49.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.49.0-dev"
3+
version = "2.49.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.49.0-dev"
57+
"version": "2.49.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.49.0-dev"
3+
version = "2.49.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.49.0-dev"
7+
version = "2.49.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.49.0-dev"
3+
version = "2.49.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.49.0-dev"
18+
"version": "2.49.0"
1919
}

0 commit comments

Comments
 (0)