From a7cc3a05f0efa1245172ce4f2b74a5d6e389fef8 Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Fri, 26 Aug 2022 17:17:20 +0300 Subject: [PATCH] Bump version to 0.2.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ mautrix_instagram/__init__.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ff12cd..0cb0952 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# v0.2.0 (2022-08-26) + +* Added handling for rate limit errors when connecting to Instagram. +* Added option to not bridge `m.notice` messages (thanks to [@bramenn] in [#55]). +* Fixed bridging voice messages to Instagram (broke due to server-side changes). +* Made Instagram message processing synchronous so messages are bridged in order. +* Updated Docker image to Alpine 3.16. +* Enabled appservice ephemeral events by default for new installations. + * Existing bridges can turn it on by enabling `ephemeral_events` and disabling + `sync_with_custom_puppets` in the config, then regenerating the registration + file. +* Added options to make encryption more secure. + * The `encryption` -> `verification_levels` config options can be used to + make the bridge require encrypted messages to come from cross-signed + devices, with trust-on-first-use validation of the cross-signing master + key. + * The `encryption` -> `require` option can be used to make the bridge ignore + any unencrypted messages. + * Key rotation settings can be configured with the `encryption` -> `rotation` + config. + +[@bramenn]: https://github.com/bramenn +[#55]: https://github.com/mautrix/instagram/pull/55 + # v0.1.3 (2022-04-06) * Added support for Matrix->Instagram replies. diff --git a/mautrix_instagram/__init__.py b/mautrix_instagram/__init__.py index 29b9e75..ab02a62 100644 --- a/mautrix_instagram/__init__.py +++ b/mautrix_instagram/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.1.3" +__version__ = "0.2.0" __author__ = "Tulir Asokan "