diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-05-12 07:31:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-12 07:31:50 -0400 |
commit | def480442d752f1951cf7f790be873489a09c432 (patch) | |
tree | 4379ecee0517e86bd8a03bc7e5a959ba0ddb8303 /synapse/rest/client | |
parent | Revert "Set thread_id column to non-null for event_push_{actions,actions_stag... (diff) | |
download | synapse-def480442d752f1951cf7f790be873489a09c432.tar.xz |
Declare support for Matrix 1.6 (#15559)
Adds logging for key server requests which include a key ID. This is technically in violation of the 1.6 spec, but is the only way to remain backwards compatibly with earlier versions of Synapse (and possibly other homeservers) which *did* include the key ID.
Diffstat (limited to 'synapse/rest/client')
-rw-r--r-- | synapse/rest/client/versions.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py index 2d2be6ef38..e9b56fc3f8 100644 --- a/synapse/rest/client/versions.py +++ b/synapse/rest/client/versions.py @@ -79,6 +79,7 @@ class VersionsRestServlet(RestServlet): "v1.3", "v1.4", "v1.5", + "v1.6", ], # as per MSC1497: "unstable_features": { |