diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-11-29 15:02:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-29 15:02:09 -0500 |
commit | dcf949cd879c353340b906330b61a9b5c849f69a (patch) | |
tree | 761369608ceecc2b92cdcad489f2f00715120719 | |
parent | Request & follow redirects for /media/v3/download (#16701) (diff) | |
download | synapse-dcf949cd879c353340b906330b61a9b5c849f69a.tar.xz |
Declare support for Matrix v1.7, v1.8, and v1.9. (#16707)
-rw-r--r-- | changelog.d/16707.feature | 1 | ||||
-rw-r--r-- | synapse/rest/client/versions.py | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/changelog.d/16707.feature b/changelog.d/16707.feature new file mode 100644 index 0000000000..707502d344 --- /dev/null +++ b/changelog.d/16707.feature @@ -0,0 +1 @@ +Synapse now declares support for Matrix v1.7, v1.8, and v1.9. diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index 95400ba570..f4d19e0470 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -80,6 +80,9 @@ class VersionsRestServlet(RestServlet): "v1.4", "v1.5", "v1.6", + "v1.7", + "v1.8", + "v1.9", ], # as per MSC1497: "unstable_features": { |