diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-10-14 09:21:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-14 13:21:55 +0000 |
commit | 022f25b3090f7f3a494cecb398bfdbbc2488c2bf (patch) | |
tree | 1ab8dee15a31f2a445d2c48d323616bc07f045b2 | |
parent | Fix changelog for #14171 to match #13394/#14175. (diff) | |
download | synapse-022f25b3090f7f3a494cecb398bfdbbc2488c2bf.tar.xz |
Advertise support for Matrix 1.4. (#14184)
All features / changes in Matrix 1.4 are now supported in Synapse.
-rw-r--r-- | changelog.d/14032.feature | 2 | ||||
-rw-r--r-- | changelog.d/14184.feature | 1 | ||||
-rw-r--r-- | synapse/rest/client/versions.py | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/changelog.d/14032.feature b/changelog.d/14032.feature index bb221d3ca6..016c704227 100644 --- a/changelog.d/14032.feature +++ b/changelog.d/14032.feature @@ -1 +1 @@ -Advertise Matrix 1.3 support on `/_matrix/client/versions`. +Advertise support for Matrix 1.3 and 1.4 on `/_matrix/client/versions`. diff --git a/changelog.d/14184.feature b/changelog.d/14184.feature new file mode 100644 index 0000000000..016c704227 --- /dev/null +++ b/changelog.d/14184.feature @@ -0,0 +1 @@ +Advertise support for Matrix 1.3 and 1.4 on `/_matrix/client/versions`. diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index d1d2e5f7e3..4e1fd2bbe7 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -76,6 +76,7 @@ class VersionsRestServlet(RestServlet): "v1.1", "v1.2", "v1.3", + "v1.4", ], # as per MSC1497: "unstable_features": { |