code_spécifique_watcha
Erik Johnston 4 years ago
parent 6b6c6a02db
commit 258a9a9e8b
  1. 16
      CHANGES.md
  2. 1
      changelog.d/10082.bugfix
  3. 1
      changelog.d/10091.misc
  4. 1
      changelog.d/10093.bugfix
  5. 2
      synapse/__init__.py

@ -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)
==============================

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

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

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

@ -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

Loading…
Cancel
Save