diff options
author | Quentin Gliech <quenting@element.io> | 2022-10-26 12:45:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 11:45:41 +0100 |
commit | 8756d5c87efc5637da55c9e21d2a4eb2369ba693 (patch) | |
tree | 38b8f68e61fa285fba1bc345b006fe1a9e3af026 /docs | |
parent | Unified search query syntax using the full-text search capabilities of the un... (diff) | |
download | synapse-8756d5c87efc5637da55c9e21d2a4eb2369ba693.tar.xz |
Save login tokens in database (#13844)
* Save login tokens in database Signed-off-by: Quentin Gliech <quenting@element.io> * Add upgrade notes * Track login token reuse in a Prometheus metric Signed-off-by: Quentin Gliech <quenting@element.io>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/upgrade.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/upgrade.md b/docs/upgrade.md index b81385b191..78c34d0c15 100644 --- a/docs/upgrade.md +++ b/docs/upgrade.md @@ -88,6 +88,15 @@ process, for example: dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb ``` +# Upgrading to v1.71.0 + +## Removal of the `generate_short_term_login_token` module API method + +As announced with the release of [Synapse 1.69.0](#deprecation-of-the-generate_short_term_login_token-module-api-method), the deprecated `generate_short_term_login_token` module method has been removed. + +Modules relying on it can instead use the `create_login_token` method. + + # Upgrading to v1.69.0 ## Changes to the receipts replication streams |