diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-11-29 10:49:23 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 10:49:23 -0500 |
commit | 13aa29db1ddc925beb35f5f1da8fd1a1bcc91373 (patch) | |
tree | 5edb27c66d3dec34b011730bf98e9f1f86fc461b | |
parent | Fix GHA job for pushing the complement-synapse image (#14573) (diff) | |
download | synapse-13aa29db1ddc925beb35f5f1da8fd1a1bcc91373.tar.xz |
Advertise support for Matrix v1.5. (#14576)
All features of Matrix v1.5 were already supported: this was mostly a maintenance release.
-rw-r--r-- | changelog.d/14576.feature | 1 | ||||
-rw-r--r-- | synapse/rest/client/versions.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelog.d/14576.feature b/changelog.d/14576.feature new file mode 100644 index 0000000000..4fe8cb2667 --- /dev/null +++ b/changelog.d/14576.feature @@ -0,0 +1 @@ +Advertise support for Matrix 1.5 on `/_matrix/client/versions`. diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index 3c0a90010b..e19c0946c0 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -77,6 +77,7 @@ class VersionsRestServlet(RestServlet): "v1.2", "v1.3", "v1.4", + "v1.5", ], # as per MSC1497: "unstable_features": { |