Skip to content

Commit 4a36fc5

Browse files
committed
Bump version to 0.17.0
1 parent 1e51a78 commit 4a36fc5

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## v0.17.0 (2022-07-05)
2+
3+
* **Breaking change *(bridge)*** Added options to check cross-signing status
4+
for bridge users. This requires changes to the base config.
5+
* New options include requiring cross-signed devices (with TOFU) for sending
6+
and/or receiving messages, and an option to drop any unencrypted messages.
7+
* **Breaking change *(crypto)*** Removed `sender_key` parameter from
8+
CryptoStore's `has_group_session` and `put_group_session`, and also
9+
OlmMachine's `wait_for_session`.
10+
* **Breaking change *(crypto.store.memory)*** Updated the key of the
11+
`_inbound_sessions` dict to be (room_id, session_id), removing the identity
12+
key in the middle. This only affects custom stores based on the memory store.
13+
* *(crypto)* Added basic cross-signing validation code.
14+
* *(crypto)* Marked device_id and sender_key as deprecated in Megolm events
15+
as per Matrix 1.3.
16+
* *(api)* Bumped request logs to `DEBUG` level.
17+
* Also added new `sensitive` parameter to the `request` method to prevent
18+
logging content in sensitive requests. The `login` method was updated to
19+
mark the content as sensitive if a password or token is provided.
20+
* *(bridge.commands)* Switched the order of the user ID parameter in `set-pl`,
21+
`set-avatar` and `set-displayname`.
22+
123
## v0.16.11 (2022-06-28)
224

325
* *(appservice)* Fixed the `extra_content` parameter in membership methods

mautrix/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.16.11"
1+
__version__ = "0.17.0"
22
__author__ = "Tulir Asokan <[email protected]>"
33
__all__ = [
44
"api",

0 commit comments

Comments
 (0)