1.35.0rc3

pull/10101/head
Erik Johnston 2021-05-28 17:06:05 +01:00
parent 6b6c6a02db
commit 258a9a9e8b
5 changed files with 17 additions and 4 deletions

View File

@ -1,3 +1,19 @@
Synapse 1.35.0rc3 (2021-05-28)
==============================
Bugfixes
--------
- Fixed a bug causing replication requests to fail when receiving a lot of events via federation. ([\#10082](https://github.com/matrix-org/synapse/issues/10082))
- Fix HTTP response size limit to allow joining very large rooms over federation. ([\#10093](https://github.com/matrix-org/synapse/issues/10093))
Internal Changes
----------------
- Log method and path when dropping request due to size limit. ([\#10091](https://github.com/matrix-org/synapse/issues/10091))
Synapse 1.35.0rc2 (2021-05-27)
==============================

View File

@ -1 +0,0 @@
Fixed a bug causing replication requests to fail when receiving a lot of events via federation.

View File

@ -1 +0,0 @@
Log method and path when dropping request due to size limit.

View File

@ -1 +0,0 @@
Fix HTTP response size limit to allow joining very large rooms over federation.

View File

@ -47,7 +47,7 @@ try:
except ImportError:
pass
__version__ = "1.35.0rc2"
__version__ = "1.35.0rc3"
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
# We import here so that we don't have to install a bunch of deps when