Răsfoiți Sursa

Bump version to 0.2.1

Tulir Asokan 2 ani în urmă
părinte
comite
473bc914a4
2 a modificat fișierele cu 16 adăugiri și 1 ștergeri
  1. 15 0
      CHANGELOG.md
  2. 1 1
      mautrix_instagram/__init__.py

+ 15 - 0
CHANGELOG.md

@@ -1,3 +1,18 @@
+# v0.2.1 (2022-09-19)
+
+* Fixed login breaking due to an Instagram API change.
+* Added support for SQLite as the bridge database.
+* Added option to use [MSC2409] and [MSC3202] for end-to-bridge encryption.
+  However, this may not work with the Synapse implementation as it hasn't been
+  tested yet.
+* The docker image now has an option to bypass the startup script by setting
+  the `MAUTRIX_DIRECT_STARTUP` environment variable. Additionally, it will
+  refuse to run as a non-root user if that variable is not set (and print an
+  error message suggesting to either set the variable or use a custom command).
+* Moved environment variable overrides for config fields to mautrix-python.
+  The new system also allows loading JSON values to enable overriding maps like
+  `login_shared_secret_map`.
+
 # v0.2.0 (2022-08-26)
 
 * Added handling for rate limit errors when connecting to Instagram.

+ 1 - 1
mautrix_instagram/__init__.py

@@ -1,2 +1,2 @@
-__version__ = "0.2.0"
+__version__ = "0.2.1"
 __author__ = "Tulir Asokan <tulir@maunium.net>"