summary refs log tree commit diff
path: root/synapse/rest
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@arasphere.net>2018-08-16 15:22:47 +0200
committerRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-08-16 14:22:47 +0100
commit762a758feae40ccb5baf0ba4808308e99e73e13f (patch)
treebfe42eea696e193a1d9e8ce78b6af78762c5a83b /synapse/rest
parentinitial cut at a room summary API (#3574) (diff)
downloadsynapse-762a758feae40ccb5baf0ba4808308e99e73e13f.tar.xz
lazyload aware /messages (#3589)
Diffstat (limited to 'synapse/rest')
-rw-r--r--synapse/rest/client/versions.py13
1 files changed, 12 insertions, 1 deletions
diff --git a/synapse/rest/client/versions.py b/synapse/rest/client/versions.py
index 6ac2987b98..29e62bfcdd 100644
--- a/synapse/rest/client/versions.py
+++ b/synapse/rest/client/versions.py
@@ -27,11 +27,22 @@ class VersionsRestServlet(RestServlet):
     def on_GET(self, request):
         return (200, {
             "versions": [
+                # XXX: at some point we need to decide whether we need to include
+                # the previous version numbers, given we've defined r0.3.0 to be
+                # backwards compatible with r0.2.0.  But need to check how
+                # conscientious we've been in compatibility, and decide whether the
+                # middle number is the major revision when at 0.X.Y (as opposed to
+                # X.Y.Z).  And we need to decide whether it's fair to make clients
+                # parse the version string to figure out what's going on.
                 "r0.0.1",
                 "r0.1.0",
                 "r0.2.0",
                 "r0.3.0",
-            ]
+            ],
+            # as per MSC1497:
+            "unstable_features": {
+                "m.lazy_load_members": True,
+            }
         })