diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-12-05 09:00:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-05 09:00:59 -0500 |
commit | 6a8310f3dfe77acf59df2fe3e88a71b85b9b3ecc (patch) | |
tree | 4fda34da62ccfefcfffb765759212c106dd34fb5 /pyproject.toml | |
parent | Faster remote room joins: stream the un-partial-stating of rooms over replica... (diff) | |
download | synapse-6a8310f3dfe77acf59df2fe3e88a71b85b9b3ecc.tar.xz |
Compare to the earliest known stream pos in the stream change cache. (#14435)
The internal methods of the StreamChangeCache were inconsistently treating the earliest known stream position as valid. It is now treated as invalid, meaning the cache cannot determine if an entity at the earliest known stream position has changed or not.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index af5ce2aa03..1368e4e688 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -141,7 +141,8 @@ pyasn1 = ">=0.1.9" pyasn1-modules = ">=0.0.7" bcrypt = ">=3.1.7" Pillow = ">=5.4.0" -sortedcontainers = ">=1.4.4" +# We use SortedDict.peekitem(), which was added in sortedcontainers 1.5.2. +sortedcontainers = ">=1.5.2" pymacaroons = ">=0.13.0" msgpack = ">=0.5.2" phonenumbers = ">=8.2.0" |