Skip to content

Commit 78d3044

Browse files
r10slink2xt
authored andcommitted
chore(release): prepare for 1.134.0
1 parent d6c24eb commit 78d3044

File tree

10 files changed

+44
-13
lines changed

10 files changed

+44
-13
lines changed

CHANGELOG.md

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

3+
## [1.134.0] - 2024-01-31
4+
5+
### API-Changes
6+
7+
- [**breaking**] JSON-RPC: device message api now requires `Option<MessageData>` instead of `String` for the message ([#5211](https://github.com/deltachat/deltachat-core-rust/pull/5211)).
8+
- CFFI: add `dc_accounts_background_fetch` and event `DC_EVENT_ACCOUNTS_BACKGROUND_FETCH_DONE`.
9+
- JSON-RPC: add `accounts_background_fetch`.
10+
11+
### Features / Changes
12+
13+
- `Qr::check_qr()`: Accept i.delta.chat invite links ([#5217](https://github.com/deltachat/deltachat-core-rust/pull/5217)).
14+
- Add support for IMAP METADATA, fetching `/shared/comment` and `/shared/admin` and displaying it in account info.
15+
16+
### Fixes
17+
18+
- Add tolerance for macOS and iOS changing `#` to `%23`.
19+
- Do not drop unknown report attachments, such as TLS reports.
20+
- Treat only "Auto-Submitted: auto-generated" messages as bot-sent ([#5213](https://github.com/deltachat/deltachat-core-rust/pull/5213)).
21+
- `Chat::resend_msgs`: Guarantee strictly increasing time in the `Date` header.
22+
- Delete resent messages on receiver side ([#5155](https://github.com/deltachat/deltachat-core-rust/pull/5155)).
23+
- Fix iOS build issue.
24+
25+
### CI
26+
27+
- Add/remove necessary newlines to fix Python lint.
28+
29+
### Tests
30+
31+
- `test_import_export_online_all`: Send the message to the existing address to avoid errors ([#5220](https://github.com/deltachat/deltachat-core-rust/pull/5220)).
32+
333
## [1.133.2] - 2024-01-24
434

535
### Fixes
@@ -3445,3 +3475,4 @@ https://github.com/deltachat/deltachat-core-rust/pulls?q=is%3Apr+is%3Aclosed
34453475
[1.133.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.132.1...v1.133.0
34463476
[1.133.1]: https://github.com/deltachat/deltachat-core-rust/compare/v1.133.0...v1.133.1
34473477
[1.133.2]: https://github.com/deltachat/deltachat-core-rust/compare/v1.133.1...v1.133.2
3478+
[1.134.0]: https://github.com/deltachat/deltachat-core-rust/compare/v1.133.2...v1.134.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.133.2"
3+
version = "1.134.0"
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.2"
3+
version = "1.134.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.133.2"
3+
version = "1.134.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
@@ -53,5 +53,5 @@
5353
},
5454
"type": "module",
5555
"types": "dist/deltachat.d.ts",
56-
"version": "1.133.2"
56+
"version": "1.134.0"
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.2"
3+
version = "1.134.0"
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.2"
3+
version = "1.134.0"
44
description = "DeltaChat JSON-RPC server"
55
edition = "2021"
66
readme = "README.md"

package.json

Lines changed: 1 addition & 1 deletion
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.133.2"
58+
"version": "1.134.0"
5959
}

release-date.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-01-24
1+
2024-01-31

0 commit comments

Comments
 (0)