diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2021-02-18 15:05:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-18 09:05:41 -0500 |
commit | e8e7012265c2fa86444c187e1927ad2ebc47f76f (patch) | |
tree | ef139522c56e0923cd32f2a873ab78b8585e6ea4 /CHANGES.md | |
parent | Reduce the memory usage of previewing media files. (#9421) (diff) | |
download | synapse-e8e7012265c2fa86444c187e1927ad2ebc47f76f.tar.xz |
Deprecate old admin API `GET /_synapse/admin/v1/users/<user_id>` (#9429)
This API was undocumented and nonsensical.
Diffstat (limited to 'CHANGES.md')
-rw-r--r-- | CHANGES.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md index d9afcaa52b..309c34f90b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,18 @@ +Synapse 1.xx.0 (2021-xx-xx) +=========================== + +Removal warning +--------------- + +The v1 list accounts API is deprecated and will be removed in a future release. +This API was undocumented and misleading. It can be replaced by the +[v2 list accounts API](https://github.com/matrix-org/synapse/blob/master/docs/admin_api/user_admin_api.rst#list-accounts), +which has been available since Synapse 1.7.0 (2019-12-13). + +Please check if you're using any scripts which use the admin API and replace +`GET /_synapse/admin/v1/users/<user_id>` with `GET /_synapse/admin/v2/users`. + + Synapse 1.27.0 (2021-02-16) =========================== |