From 7b54badd314fa9b7b3aa629d9cee577b5cbf5443 Mon Sep 17 00:00:00 2001 From: Sami Olmari Date: Tue, 14 Jun 2022 13:35:22 +0300 Subject: [PATCH 1/4] Mention removed community/group worker endpoints in upgrade.md (#13023) --- changelog.d/13023.doc | 1 + docs/upgrade.md | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 changelog.d/13023.doc diff --git a/changelog.d/13023.doc b/changelog.d/13023.doc new file mode 100644 index 0000000000..5589c7492c --- /dev/null +++ b/changelog.d/13023.doc @@ -0,0 +1 @@ +Mention removed community/group worker endpoints in upgrade.md. Contributed by @olmari. \ No newline at end of file diff --git a/docs/upgrade.md b/docs/upgrade.md index e3c64da17f..5698cff6ae 100644 --- a/docs/upgrade.md +++ b/docs/upgrade.md @@ -89,6 +89,24 @@ 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.60.0 ## Adding a new unique index to `state_group_edges` could fail if your database is corrupted From d580014e2282c24a41d789ea31f34cf691654040 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 14 Jun 2022 11:44:27 +0100 Subject: [PATCH 2/4] 1.61.0 --- CHANGES.md | 9 +++++++++ changelog.d/13023.doc | 1 - debian/changelog | 6 ++++++ pyproject.toml | 2 +- 4 files changed, 16 insertions(+), 2 deletions(-) delete mode 100644 changelog.d/13023.doc diff --git a/CHANGES.md b/CHANGES.md index c42a18cbff..6d42b38663 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +Synapse 1.61.0 (2022-06-14) +=========================== + +Improved Documentation +---------------------- + +- Mention removed community/group worker endpoints in upgrade.md. Contributed by @olmari. ([\#13023](https://github.com/matrix-org/synapse/issues/13023)) + + Synapse 1.61.0rc1 (2022-06-07) ============================== diff --git a/changelog.d/13023.doc b/changelog.d/13023.doc deleted file mode 100644 index 5589c7492c..0000000000 --- a/changelog.d/13023.doc +++ /dev/null @@ -1 +0,0 @@ -Mention removed community/group worker endpoints in upgrade.md. Contributed by @olmari. \ No newline at end of file diff --git a/debian/changelog b/debian/changelog index 9591334c58..753a03065a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +matrix-synapse-py3 (1.61.0) stable; urgency=medium + + * New Synapse release 1.61.0. + + -- Synapse Packaging team Tue, 14 Jun 2022 11:44:19 +0100 + matrix-synapse-py3 (1.61.0~rc1) stable; urgency=medium * Remove unused `jitsimeetbridge` experiment from `contrib` directory. diff --git a/pyproject.toml b/pyproject.toml index 1934174b82..8b21bdc837 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ skip_gitignore = true [tool.poetry] name = "matrix-synapse" -version = "1.61.0rc1" +version = "1.61.0" description = "Homeserver for the Matrix decentralised comms protocol" authors = ["Matrix.org Team and Contributors "] license = "Apache-2.0" From e87355f201c130d132d6ea2700628ba70e30f95d Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 14 Jun 2022 11:49:33 +0100 Subject: [PATCH 3/4] Update changelog --- CHANGES.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 6d42b38663..84641aee96 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,17 +1,20 @@ Synapse 1.61.0 (2022-06-14) =========================== +This release removes support for the non-standard feature known both as 'groups' and as 'communities', which have been superseded by *Spaces*. + +See [the upgrade notes](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#upgrading-to-v1610) +for more details. + Improved Documentation ---------------------- -- Mention removed community/group worker endpoints in upgrade.md. Contributed by @olmari. ([\#13023](https://github.com/matrix-org/synapse/issues/13023)) +- Mention removed community/group worker endpoints in [upgrade.md](https://github.com/matrix-org/synapse/blob/develop/docs/upgrade.md#upgrading-to-v1610s). Contributed by @olmari. ([\#13023](https://github.com/matrix-org/synapse/issues/13023)) Synapse 1.61.0rc1 (2022-06-07) ============================== -This release removes support for the non-standard feature known both as 'groups' and as 'communities', which have been superseded by *Spaces*. - Features -------- From b8bf61230c0d51231429b2d15973a8fd1cd76906 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Tue, 14 Jun 2022 11:56:45 +0100 Subject: [PATCH 4/4] Fixup upgrades --- docs/upgrade.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/upgrade.md b/docs/upgrade.md index 5698cff6ae..5ac29abb08 100644 --- a/docs/upgrade.md +++ b/docs/upgrade.md @@ -91,14 +91,14 @@ process, for example: # Upgrading to v1.61.0 -## Removal of depracated community/groups +## 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 be existing -and they are expected to be removed from reverse proxy config: +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$`