diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2022-02-11 10:32:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-11 09:32:11 +0000 |
commit | d36943c4df841e789ef85c206c7fc7c4665ba4bd (patch) | |
tree | 92576656d850267dc28f3f12c60daabe34936400 /docs/upgrade.md | |
parent | Drop support for EOL Ubuntu 21.04 (#11961) (diff) | |
download | synapse-d36943c4df841e789ef85c206c7fc7c4665ba4bd.tar.xz |
Support the stable API endpoint for MSC3283: new settings in `/capabilities` endpoint (#11933)
Diffstat (limited to 'docs/upgrade.md')
-rw-r--r-- | docs/upgrade.md | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/upgrade.md b/docs/upgrade.md index 581fd7de53..c5e0697333 100644 --- a/docs/upgrade.md +++ b/docs/upgrade.md @@ -100,6 +100,25 @@ to: Please update any relevant reverse proxy or firewall configurations appropriately. +## Deprecation of `capability` `org.matrix.msc3283.*` + +The `capabilities` of MSC3283 from the REST API `/_matrix/client/r0/capabilities` +becomes stable. + +The old `capabilities` +- `org.matrix.msc3283.set_displayname`, +- `org.matrix.msc3283.set_avatar_url` and +- `org.matrix.msc3283.3pid_changes` + +are deprecated and scheduled to be removed in Synapse v1.(next+1).0. + +The new `capabilities` +- `m.set_displayname`, +- `m.set_avatar_url` and +- `m.3pid_changes` + +are now active by default. + # Upgrading to v1.53.0 ## Dropping support for `webclient` listeners and non-HTTP(S) `web_client_location` |