Skip to content

Commit 9640f92

Browse files
committed
chore(release): prepare for 1.150.0
1 parent 95ac764 commit 9640f92

File tree

13 files changed

+88
-16
lines changed

13 files changed

+88
-16
lines changed

CHANGELOG.md

+72
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,76 @@
11
# Changelog
22

3+
## [1.150.0] - 2024-11-21
4+
5+
### API-Changes
6+
7+
- Correct `DC_CERTCK_ACCEPT_*` values and docs ([#6176](https://github.com/deltachat/deltachat-core-rust/pull/6176)).
8+
9+
### Features / Changes
10+
11+
- Use Rustls for connections with strict TLS ([#6186](https://github.com/deltachat/deltachat-core-rust/pull/6186)).
12+
- Experimental header protection for Autocrypt.
13+
- Tune down io-not-started info in connectivity-html.
14+
- Clear config cache in start_io() ([#6228](https://github.com/deltachat/deltachat-core-rust/pull/6228)).
15+
- Line-before-quote may be up to 120 character long instead of 80.
16+
- Use i.delta.chat in qr codes ([#6223](https://github.com/deltachat/deltachat-core-rust/pull/6223)).
17+
18+
### Fixes
19+
20+
- Prevent accidental wrong-password-notifications ([#6122](https://github.com/deltachat/deltachat-core-rust/pull/6122)).
21+
- Remove footers from "Show Full Message...".
22+
- `send_msg_to_smtp`: Return Ok if `smtp` row is deleted in parallel.
23+
- Only add "member added/removed" messages if they actually do that ([#5992](https://github.com/deltachat/deltachat-core-rust/pull/5992)).
24+
- Do not fail to load chatlist summary if the message got removed.
25+
- deltachat-jsonrpc: Do not fail `get_chatlist_items_by_entries` if the message got deleted.
26+
- deltachat-jsonrpc: Do not fail `get_draft` if draft is deleted.
27+
- `markseen_msgs`: Limit not yet downloaded messages state to `InNoticed` ([#2970](https://github.com/deltachat/deltachat-core-rust/pull/2970)).
28+
- Update state of message when fully downloading it.
29+
- Dont overwrite equal drafts ([#6212](https://github.com/deltachat/deltachat-core-rust/pull/6212)).
30+
31+
### Build system
32+
33+
- Silence RUSTSEC-2024-0384.
34+
- cargo: Update rPGP from 0.13.2 to 0.14.0.
35+
- cargo: Update futures-concurrency from 7.6.1 to 7.6.2.
36+
- Update flake.nix ([#6200](https://github.com/deltachat/deltachat-core-rust/pull/6200))
37+
38+
### CI
39+
40+
- Ensure flake is formatted.
41+
42+
### Documentation
43+
44+
- Scanned proxies are added and normalized.
45+
46+
### Refactor
47+
48+
- Fix nightly clippy warnings.
49+
- Remove slicing from `is_file_in_use`.
50+
- Remove unnecessary `allow(clippy::indexing_slicing)`.
51+
- Don't use slicing in `remove_nonstandard_footer`.
52+
- Do not use slicing in `qr` module.
53+
- Eliminate indexing in `compute_mailinglist_name`.
54+
- Remove unused `allow(clippy::indexing_slicing)`.
55+
- Remove indexing/slicing from `remove_message_footer`.
56+
- Remove indexing/slicing from `squash_attachment_parts`.
57+
- Remove unused allow(clippy::indexing_slicing) for heuristically_parse_ndn.
58+
- Remove indexing/slicing from `parse_message_ids`.
59+
- Remove slicing from `remove_bottom_quote`.
60+
- Get rid of slicing in `remove_top_quote`.
61+
- Remove unused allow(clippy::indexing_slicing) from 'truncate'.
62+
- Forbid clippy::indexing_slicing.
63+
- Forbid clippy::string_slice.
64+
- Delete chat in a transaction.
65+
- Fix typo in `context.rs`.
66+
67+
### Tests
68+
69+
- Remove all calls to print() from deltachat-rpc-client tests.
70+
- Reply to protected group from MUA.
71+
- Mark not downloaded message as seen ([#2970](https://github.com/deltachat/deltachat-core-rust/pull/2970)).
72+
- Mark `receive_imf()` as only for tests and "internals" feature ([#6235](https://github.com/deltachat/deltachat-core-rust/pull/6235)).
73+
374
## [1.149.0] - 2024-11-05
475

576
### Build system
@@ -5229,3 +5300,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed
52295300
[1.148.6]: https://github.com/deltachat/deltachat-core-rust/compare/v1.148.5..v1.148.6
52305301
[1.148.7]: https://github.com/deltachat/deltachat-core-rust/compare/v1.148.6..v1.148.7
52315302
[1.149.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.148.7..v1.149.0
5303+
[1.150.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.149.0..v1.150.0

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.149.0"
3+
version = "1.150.0"
44
edition = "2021"
55
license = "MPL-2.0"
66
rust-version = "1.77"

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

deltachat-jsonrpc/typescript/package.json

+1-1
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.149.0"
61+
"version": "1.150.0"
6262
}

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

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.149.0"
7+
version = "1.150.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-rpc-server"
3-
version = "1.149.0"
3+
version = "1.150.0"
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.149.0"
18+
"version": "1.150.0"
1919
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@
5555
"test:mocha": "mocha node/test/test.mjs --growl --reporter=spec --bail --exit"
5656
},
5757
"types": "node/dist/index.d.ts",
58-
"version": "1.149.0"
58+
"version": "1.150.0"
5959
}

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.149.0"
7+
version = "1.150.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.7"

release-date.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-11-05
1+
2024-11-21

0 commit comments

Comments
 (0)