diff options
author | Erik Johnston <erik@matrix.org> | 2022-06-14 12:00:02 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2022-06-14 12:00:02 +0100 |
commit | 5d139f578dd973a33c156950e25610367127a521 (patch) | |
tree | 29b46bdc225c386f7a06796db5ccf3cde3495864 /docs | |
parent | Mention removed community/group worker endpoints in upgrade.md (#13023) (diff) | |
parent | Fixup upgrades (diff) | |
download | synapse-5d139f578dd973a33c156950e25610367127a521.tar.xz |
Merge branch 'release-v1.61' into develop
Diffstat (limited to 'docs')
-rw-r--r-- | docs/upgrade.md | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/docs/upgrade.md b/docs/upgrade.md index 2803de8b8b..312f0b87fe 100644 --- a/docs/upgrade.md +++ b/docs/upgrade.md @@ -89,23 +89,7 @@ process, for example: dpkg -i matrix-synapse-py3_1.3.0+stretch1_amd64.deb ``` -# Upgrading to v1.61.0 - -## Removal of depracated community/groups - -This release of Synapse will remove deprecated community/groups from codebase. - -### Worker endpoints - -For those who have deployed workers, following worker endpoints will no longer be existing -and they are expected to be removed from reverse proxy config: - -- `^/_matrix/federation/v1/get_groups_publicised$` -- `^/_matrix/client/(r0|v3|unstable)/joined_groups$` -- `^/_matrix/client/(r0|v3|unstable)/publicised_groups$` -- `^/_matrix/client/(r0|v3|unstable)/publicised_groups/` -- `^/_matrix/federation/v1/groups/` -- `^/_matrix/client/(r0|v3|unstable)/groups/` +# Upgrading to v1.62.0 ## New signatures for spam checker callbacks @@ -146,6 +130,24 @@ async def user_may_join_room(self, user_id: str, room_id: str, is_invited: bool) return synapse.module_api.NOT_SPAM ``` +# Upgrading to v1.61.0 + +## Removal of deprecated community/groups + +This release of Synapse will remove deprecated community/groups from codebase. + +### Worker endpoints + +For those who have deployed workers, following worker endpoints will no longer +exist and they can be removed from the reverse proxy configuration: + +- `^/_matrix/federation/v1/get_groups_publicised$` +- `^/_matrix/client/(r0|v3|unstable)/joined_groups$` +- `^/_matrix/client/(r0|v3|unstable)/publicised_groups$` +- `^/_matrix/client/(r0|v3|unstable)/publicised_groups/` +- `^/_matrix/federation/v1/groups/` +- `^/_matrix/client/(r0|v3|unstable)/groups/` + # Upgrading to v1.60.0 ## Adding a new unique index to `state_group_edges` could fail if your database is corrupted |