Skip to content

Commit 73095bc

Browse files
committedMar 19, 2025·
chore(release): prepare for 1.157.3
1 parent ea5f778 commit 73095bc

File tree

12 files changed

+51
-15
lines changed

12 files changed

+51
-15
lines changed
 

‎CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Changelog
22

3+
## [1.157.3] - 2025-03-19
4+
5+
### API-Changes
6+
7+
- jsonrpc: Add `copy_to_blob_dir` api ([#6660](https://github.com/chatmail/core/pull/6660)).
8+
- Add "delete_for_all" function in json-rpc ([#6672](https://github.com/chatmail/core/pull/6672)).
9+
- Sketch add_transport_from_qr(), add_transport(), list_transports(), delete_transport() APIs ([#6589](https://github.com/chatmail/core/pull/6589)).
10+
11+
### Build system
12+
13+
- Remove websocket support from deltachat-jsonrpc.
14+
- Remove encoded-words dependency.
15+
16+
### Fixes
17+
18+
- Never send empty `To:` header ([#6663](https://github.com/chatmail/core/pull/6663)).
19+
- Use protected `Date` header for signed messages.
20+
- Fix setting up a profile and immediately transferring to a second device ([#6657](https://github.com/chatmail/core/pull/6657)).
21+
- Don't SMTP-send self-only messages if DeleteServerAfter is "immediate" ([#6661](https://github.com/chatmail/core/pull/6661)).
22+
- Use protected `Date` with protected Autocrypt.
23+
24+
### Miscellaneous Tasks
25+
26+
- cargo: Bump uuid from 1.12.1 to 1.15.1.
27+
- Update `strum` dependency.
28+
29+
### Refactor
30+
31+
- deltachat-rpc-client: Use wait_for_event() type argument.
32+
33+
### Tests
34+
35+
- Avoid creating contacts in `test_sync_{accept,block}_before_first_msg()`.
36+
- Fix `test_no_old_msg_is_fresh` flakiness.
37+
338
## [1.157.2] - 2025-03-15
439

540
### Fixes
@@ -6015,3 +6050,4 @@ https://github.com/chatmail/core/pulls?q=is%3Apr+is%3Aclosed
60156050
[1.157.0]: https://github.com/chatmail/core/compare/v1.156.3..v1.157.0
60166051
[1.157.1]: https://github.com/chatmail/core/compare/v1.157.0..v1.157.1
60176052
[1.157.2]: https://github.com/chatmail/core/compare/v1.157.1..v1.157.2
6053+
[1.157.3]: https://github.com/chatmail/core/compare/v1.157.2..v1.157.3

‎Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎Cargo.toml

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

‎deltachat-ffi/Cargo.toml

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

‎deltachat-jsonrpc/Cargo.toml

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

‎deltachat-jsonrpc/typescript/package.json

+1-1
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.2"
57+
"version": "1.157.3"
5858
}

‎deltachat-repl/Cargo.toml

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

‎deltachat-rpc-client/pyproject.toml

+1-1
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.2"
7+
version = "1.157.3"
88
description = "Python client for Delta Chat core JSON-RPC interface"
99
classifiers = [
1010
"Development Status :: 5 - Production/Stable",

‎deltachat-rpc-server/Cargo.toml

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

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

+1-1
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.2"
18+
"version": "1.157.3"
1919
}

‎python/pyproject.toml

+1-1
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.2"
7+
version = "1.157.3"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-03-15
1+
2025-03-19

0 commit comments

Comments
 (0)
Please sign in to comment.