Skip to content

Commit 2c17e78

Browse files
committed
chore(release): prepare for 1.133.1
1 parent 4ee646c commit 2c17e78

File tree

12 files changed

+42
-13
lines changed

12 files changed

+42
-13
lines changed

CHANGELOG.md

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

3+
## [1.133.1] - 2024-01-21
4+
5+
### API-Changes
6+
7+
- Add `is_bot` to cffi and jsonrpc ([#5197](https://github.com/deltachat/deltachat-core-rust/pull/5197)).
8+
9+
### Features / Changes
10+
11+
- Add system message when provider does not allow unencrypted messages ([#5195](https://github.com/deltachat/deltachat-core-rust/pull/5195)).
12+
13+
### Fixes
14+
15+
- `Chat::send_msg`: Remove encryption-related params from already sent message. This allows to send received encrypted `dc_msg_t` object to unencrypted chat, e.g. in a Python bot.
16+
- Set message download state to Failure on IMAP errors. This avoids partially downloaded messages getting stuck in "Downloading..." state without actually being in a download queue.
17+
- BCC-to-self even if server deletion is set to "at once". This is a workaround for SMTP servers which do not return response in time, BCC-self works as a confirmation that message was sent out successfully and does not need more retries.
18+
- node: Run tests with native ESM modules instead of `esm` ([#5194](https://github.com/deltachat/deltachat-core-rust/pull/5194)).
19+
- Use Quoted-Printable MIME encoding for the text part ([#3986](https://github.com/deltachat/deltachat-core-rust/pull/3986)).
20+
21+
### Tests
22+
23+
- python: Add `get_protected_chat` to testplugin.py.
24+
325
## [1.133.0] - 2024-01-14
426

527
### Features / Changes
@@ -3414,3 +3436,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed
34143436
[1.132.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.131.9...v1.132.0
34153437
[1.132.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.132.0...v1.132.1
34163438
[1.133.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.132.1...v1.133.0
3439+
[1.133.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.133.0...v1.133.1

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.133.0"
3+
version = "1.133.1"
44
edition = "2021"
55
license = "MPL-2.0"
66
rust-version = "1.70"

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.133.0"
3+
version = "1.133.1"
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.133.0"
3+
version = "1.133.1"
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
@@ -53,5 +53,5 @@
5353
},
5454
"type": "module",
5555
"types": "dist/deltachat.d.ts",
56-
"version": "1.133.0"
56+
"version": "1.133.1"
5757
}

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.133.0"
3+
version = "1.133.1"
44
license = "MPL-2.0"
55
edition = "2021"
66

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.133.0"
3+
version = "1.133.1"
44
description = "DeltaChat JSON-RPC server"
55
edition = "2021"
66
readme = "README.md"

node/constants.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ module.exports = {
8080
DC_INFO_EPHEMERAL_TIMER_CHANGED: 10,
8181
DC_INFO_GROUP_IMAGE_CHANGED: 3,
8282
DC_INFO_GROUP_NAME_CHANGED: 2,
83+
DC_INFO_INVALID_UNENCRYPTED_MAIL: 13,
8384
DC_INFO_LOCATIONSTREAMING_ENABLED: 8,
8485
DC_INFO_LOCATION_ONLY: 9,
8586
DC_INFO_MEMBER_ADDED_TO_GROUP: 4,
@@ -226,11 +227,13 @@ module.exports = {
226227
DC_STR_GROUP_NAME_CHANGED_BY_YOU: 124,
227228
DC_STR_IMAGE: 9,
228229
DC_STR_INCOMING_MESSAGES: 103,
230+
DC_STR_INVALID_UNENCRYPTED_MAIL: 174,
229231
DC_STR_LAST_MSG_SENT_SUCCESSFULLY: 111,
230232
DC_STR_LOCATION: 66,
231233
DC_STR_LOCATION_ENABLED_BY_OTHER: 137,
232234
DC_STR_LOCATION_ENABLED_BY_YOU: 136,
233235
DC_STR_MESSAGES: 114,
236+
DC_STR_MESSAGE_ADD_MEMBER: 173,
234237
DC_STR_MSGACTIONBYME: 63,
235238
DC_STR_MSGACTIONBYUSER: 62,
236239
DC_STR_MSGADDMEMBER: 17,

node/lib/constants.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export enum C {
8080
DC_INFO_EPHEMERAL_TIMER_CHANGED = 10,
8181
DC_INFO_GROUP_IMAGE_CHANGED = 3,
8282
DC_INFO_GROUP_NAME_CHANGED = 2,
83+
DC_INFO_INVALID_UNENCRYPTED_MAIL = 13,
8384
DC_INFO_LOCATIONSTREAMING_ENABLED = 8,
8485
DC_INFO_LOCATION_ONLY = 9,
8586
DC_INFO_MEMBER_ADDED_TO_GROUP = 4,
@@ -226,11 +227,13 @@ export enum C {
226227
DC_STR_GROUP_NAME_CHANGED_BY_YOU = 124,
227228
DC_STR_IMAGE = 9,
228229
DC_STR_INCOMING_MESSAGES = 103,
230+
DC_STR_INVALID_UNENCRYPTED_MAIL = 174,
229231
DC_STR_LAST_MSG_SENT_SUCCESSFULLY = 111,
230232
DC_STR_LOCATION = 66,
231233
DC_STR_LOCATION_ENABLED_BY_OTHER = 137,
232234
DC_STR_LOCATION_ENABLED_BY_YOU = 136,
233235
DC_STR_MESSAGES = 114,
236+
DC_STR_MESSAGE_ADD_MEMBER = 173,
234237
DC_STR_MSGACTIONBYME = 63,
235238
DC_STR_MSGACTIONBYUSER = 62,
236239
DC_STR_MSGADDMEMBER = 17,

0 commit comments

Comments
 (0)