Skip to content

Commit 08be98f

Browse files
committed
chore(release): prepare for 1.156.0
1 parent 483f4ea commit 08be98f

File tree

12 files changed

+62
-15
lines changed

12 files changed

+62
-15
lines changed

CHANGELOG.md

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

3+
## [1.156.0] - 2025-02-26
4+
5+
### API-Changes
6+
7+
- Save messages API in JSON RPC ([#6554](https://github.com/deltachat/deltachat-core-rust/pull/6554)).
8+
- jsonrpc: Add `MessageObject.is_edited`.
9+
- jsonrpc: Add `send_edit_request`.
10+
- Deduplicate blob files in the JsonRPC API ([#6470](https://github.com/deltachat/deltachat-core-rust/pull/6470)).
11+
- Message deletion request API ([#6576](https://github.com/deltachat/deltachat-core-rust/pull/6576))
12+
13+
### Features / Changes
14+
15+
- Edit message's text ([#6550](https://github.com/deltachat/deltachat-core-rust/pull/6550))
16+
- Sync message deletion to other devices ([#6573](https://github.com/deltachat/deltachat-core-rust/pull/6573))
17+
- Allow scanning multiple securejoin QR codes in parallel.
18+
- When reactions are seen, remove notification from second device ([#6480](https://github.com/deltachat/deltachat-core-rust/pull/6480)).
19+
- Enable bcc-self automatically when doing Autocrypt Setup Message.
20+
- Don't send a notification when a group member left ([#6575](https://github.com/deltachat/deltachat-core-rust/pull/6575)).
21+
- Fail on too new backups ([#6580](https://github.com/deltachat/deltachat-core-rust/pull/6580)).
22+
23+
### Fixes
24+
25+
- Make it impossible to overwrite default key.
26+
- Do not allow to edit html messages ([#6564](https://github.com/deltachat/deltachat-core-rust/pull/6564)).
27+
- `get_config(Config::Selfavatar)` returns the path, not the name ([#6570](https://github.com/deltachat/deltachat-core-rust/pull/6570)).
28+
- `chat::save_msgs`: Interrupt inbox loop to send a sync message.
29+
- Do not delete files if cannot read their metadata.
30+
31+
### Build system
32+
33+
- nix: Update hashes of git dependencies.
34+
- Update some dependencies.
35+
36+
### CI
37+
38+
- Remove deprecated DeterminateSystems/magic-nix-cache-action.
39+
40+
### Refactor
41+
42+
- Use mail-builder instead of lettre_email.
43+
- Move even even more tests into their own files ([#6559](https://github.com/deltachat/deltachat-core-rust/pull/6559)).
44+
- Remove `Message.set_file()`, `dc_msg_set_file()` and related code ([#6558](https://github.com/deltachat/deltachat-core-rust/pull/6558)).
45+
- Remove unused blob functions ([#6563](https://github.com/deltachat/deltachat-core-rust/pull/6563)).
46+
- Let `BlobObject::from_name()` take `&str` ([#6571](https://github.com/deltachat/deltachat-core-rust/pull/6571)).
47+
- Don't use traits where it's not necessary ([#6567](https://github.com/deltachat/deltachat-core-rust/pull/6567)).
48+
349
## [1.155.6] - 2025-02-17
450

551
### Features / Changes
@@ -5828,3 +5874,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed
58285874
[1.155.4]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.3..v1.155.4
58295875
[1.155.5]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.4..v1.155.5
58305876
[1.155.6]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.5..v1.155.6
5877+
[1.156.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.155.6..v1.156.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.155.6"
3+
version = "1.156.0"
44
edition = "2021"
55
license = "MPL-2.0"
66
rust-version = "1.81"

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.155.6"
3+
version = "1.156.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.155.6"
3+
version = "1.156.0"
44
description = "DeltaChat JSON-RPC API"
55
edition = "2021"
66
default-run = "deltachat-jsonrpc-server"

deltachat-jsonrpc/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@
5858
},
5959
"type": "module",
6060
"types": "dist/deltachat.d.ts",
61-
"version": "1.155.6"
61+
"version": "1.156.0"
6262
}

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.155.6"
3+
version = "1.156.0"
44
license = "MPL-2.0"
55
edition = "2021"
66
repository = "https://github.com/deltachat/deltachat-core-rust"

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.155.6"
7+
version = "1.156.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.155.6"
3+
version = "1.156.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.155.6"
18+
"version": "1.156.0"
1919
}

python/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"
7-
version = "1.155.6"
7+
version = "1.156.0"
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2025-02-17
1+
2025-02-26

0 commit comments

Comments
 (0)