Codebase list matrix-synapse / a800789
New upstream version 1.19.3 Andrej Shadura 3 years ago
4 changed file(s) with 19 addition(s) and 6 deletion(s). Raw diff Collapse all Expand all
0 Synapse 1.19.3 (2020-09-18)
1 ===========================
2
3 Bugfixes
4 --------
5
6 - Partially mitigate bug where newly joined servers couldn't get past events in a room when there is a malformed event. ([\#8350](https://github.com/matrix-org/synapse/issues/8350))
7
8
09 Synapse 1.19.2 (2020-09-16)
110 ===========================
211
0 matrix-synapse-py3 (1.19.3) stable; urgency=medium
1
2 * New synapse release 1.19.3.
3
4 -- Synapse Packaging team <packages@matrix.org> Fri, 18 Sep 2020 14:59:30 +0100
5
06 matrix-synapse-py3 (1.19.2) stable; urgency=medium
17
28 * New synapse release 1.19.2.
4747 except ImportError:
4848 pass
4949
50 __version__ = "1.19.2"
50 __version__ = "1.19.3"
5151
5252 if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
5353 # We import here so that we don't have to install a bunch of deps when
216216 for p in transaction_data["pdus"]
217217 ]
218218
219 # FIXME: We should handle signature failures more gracefully.
220 pdus[:] = await make_deferred_yieldable(
221 defer.gatherResults(
222 self._check_sigs_and_hashes(room_version, pdus), consumeErrors=True,
223 ).addErrback(unwrapFirstError)
219 # Check signatures and hash of pdus, removing any from the list that fail checks
220 pdus[:] = await self._check_sigs_and_hash_and_fetch(
221 dest, pdus, outlier=True, room_version=room_version
224222 )
225223
226224 return pdus