mirror of
https://github.com/chatmail/core.git
synced 2026-05-09 01:46:30 +03:00
chore(release): prepare for 1.136.0
This commit is contained in:
59
CHANGELOG.md
59
CHANGELOG.md
@@ -1,5 +1,64 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [1.136.0] - 2024-03-04
|
||||||
|
|
||||||
|
### Features / Changes
|
||||||
|
|
||||||
|
- Recognise Trash folder by name ([#5275](https://github.com/deltachat/deltachat-core-rust/pull/5275)).
|
||||||
|
- Send Chat-Group-Avatar as inline base64 ([#5253](https://github.com/deltachat/deltachat-core-rust/pull/5253)).
|
||||||
|
- Self-Reporting: Report number of protected/encrypted/unencrypted chats ([#5292](https://github.com/deltachat/deltachat-core-rust/pull/5292)).
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
- Don't send sync messages on self-{status,avatar} update from self-sent messages ([#5289](https://github.com/deltachat/deltachat-core-rust/pull/5289)).
|
||||||
|
- imap: Allow `maybe_network` to interrupt connection ratelimit.
|
||||||
|
- imap: Set connectivity to "connecting" only after ratelimit.
|
||||||
|
- Remove `Group-ID` from `Message-ID`.
|
||||||
|
- Prioritize protected `Message-ID` over `X-Microsoft-Original-Message-ID`.
|
||||||
|
|
||||||
|
### API-Changes
|
||||||
|
|
||||||
|
- Make `store_self_keypair` private.
|
||||||
|
- Add `ContextBuilder.build()` to build Context without opening.
|
||||||
|
- `dc_accounts_set_push_device_token` and `dc_get_push_state` APIs for iOS push notifications.
|
||||||
|
|
||||||
|
### Build system
|
||||||
|
|
||||||
|
- Tag armv6 wheels with tags accepted by PyPI.
|
||||||
|
- Unpin OpenSSL.
|
||||||
|
- Remove deprecated `unmaintained` field from deny.toml.
|
||||||
|
- Do not vendor OpenSSL when cross-compiling ([#5316](https://github.com/deltachat/deltachat-core-rust/pull/5316)).
|
||||||
|
- Increase MSRV to 1.74.0.
|
||||||
|
|
||||||
|
### CI
|
||||||
|
|
||||||
|
- Upgrade setup-python GitHub Action.
|
||||||
|
- Update to Rust 1.76 and fix clippy warnings.
|
||||||
|
- Build Python docs with Nix.
|
||||||
|
- Upload python docs without GH actions.
|
||||||
|
- Upload cffi docs without GH actions.
|
||||||
|
- Build c.delta.chat docs with nix.
|
||||||
|
|
||||||
|
### Other
|
||||||
|
|
||||||
|
- refactor: move more methods from Imap into Session.
|
||||||
|
- Add deltachat-time to sources.
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- Remove Session from Imap structure.
|
||||||
|
- Merge ImapConfig into Imap.
|
||||||
|
- Get rid of ImapActionResult.
|
||||||
|
- Build contexts using ContextBuilder.
|
||||||
|
- Do not send `Secure-Join-Group` in `vg-request`.
|
||||||
|
|
||||||
|
### Tests
|
||||||
|
|
||||||
|
- Fix `test_verified_oneonone_chat_broken_by_device_change()` ([#5280](https://github.com/deltachat/deltachat-core-rust/pull/5280)).
|
||||||
|
- `get_protected_chat()`: Use FFIEventTracker instead of `dc_wait_next_msgs()` ([#5207](https://github.com/deltachat/deltachat-core-rust/pull/5207)).
|
||||||
|
- Fixup `tests/test_3_offline.py::TestOfflineAccountBasic::test_wrong_db`.
|
||||||
|
- Fix pytest compat ([#5317](https://github.com/deltachat/deltachat-core-rust/pull/5317)).
|
||||||
|
|
||||||
## [1.135.1] - 2024-02-20
|
## [1.135.1] - 2024-02-20
|
||||||
|
|
||||||
### Features / Changes
|
### Features / Changes
|
||||||
|
|||||||
10
Cargo.lock
generated
10
Cargo.lock
generated
@@ -1085,7 +1085,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat"
|
name = "deltachat"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term",
|
"ansi_term",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@@ -1165,7 +1165,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat-jsonrpc"
|
name = "deltachat-jsonrpc"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-channel 2.2.0",
|
"async-channel 2.2.0",
|
||||||
@@ -1189,7 +1189,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat-repl"
|
name = "deltachat-repl"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term",
|
"ansi_term",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@@ -1204,7 +1204,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat-rpc-server"
|
name = "deltachat-rpc-server"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"deltachat",
|
"deltachat",
|
||||||
@@ -1233,7 +1233,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat_ffi"
|
name = "deltachat_ffi"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"deltachat",
|
"deltachat",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat"
|
name = "deltachat"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat_ffi"
|
name = "deltachat_ffi"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
description = "Deltachat FFI"
|
description = "Deltachat FFI"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat-jsonrpc"
|
name = "deltachat-jsonrpc"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
description = "DeltaChat JSON-RPC API"
|
description = "DeltaChat JSON-RPC API"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
default-run = "deltachat-jsonrpc-server"
|
default-run = "deltachat-jsonrpc-server"
|
||||||
|
|||||||
@@ -53,5 +53,5 @@
|
|||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "dist/deltachat.d.ts",
|
"types": "dist/deltachat.d.ts",
|
||||||
"version": "1.135.1"
|
"version": "1.136.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat-repl"
|
name = "deltachat-repl"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat-rpc-server"
|
name = "deltachat-rpc-server"
|
||||||
version = "1.135.1"
|
version = "1.136.0"
|
||||||
description = "DeltaChat JSON-RPC server"
|
description = "DeltaChat JSON-RPC server"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
@@ -55,5 +55,5 @@
|
|||||||
"test:mocha": "mocha node/test/test.mjs --growl --reporter=spec --bail --exit"
|
"test:mocha": "mocha node/test/test.mjs --growl --reporter=spec --bail --exit"
|
||||||
},
|
},
|
||||||
"types": "node/dist/index.d.ts",
|
"types": "node/dist/index.d.ts",
|
||||||
"version": "1.135.1"
|
"version": "1.136.0"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
2024-02-20
|
2024-03-04
|
||||||
Reference in New Issue
Block a user