diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-09-05 17:03:49 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-09-05 17:27:23 +0100 |
commit | 42044c1a5c1cb0076fb31c4ef5644fe1eb82a574 (patch) | |
tree | 2f182103f5f55bdd264f7b8d52d3fe487e087e65 | |
parent | Fix origin handling for pushed transactions (diff) | |
download | synapse-42044c1a5c1cb0076fb31c4ef5644fe1eb82a574.tar.xz |
prepare v0.33.2.1 v0.33.2.1 github/release-v0.33.2.1 release-v0.33.2.1
-rw-r--r-- | CHANGES.md | 9 | ||||
-rw-r--r-- | synapse/__init__.py | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md index a299110a6b..ce98ea050b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,12 @@ +Synapse 0.33.2.1 (2018-09-06) +============================= + +SECURITY FIXES +-------------- + +- Fix an issue where event signatures were not always correctly validated ([\#3796](https://github.com/matrix-org/synapse/issues/3796)) +- Fix an issue where server_acls could be circumvented for incoming events ([\#3796](https://github.com/matrix-org/synapse/issues/3796)) + Synapse 0.33.2 (2018-08-09) =========================== diff --git a/synapse/__init__.py b/synapse/__init__.py index a14d578e36..b9db2af0a0 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -17,4 +17,4 @@ """ This is a reference implementation of a Matrix home server. """ -__version__ = "0.33.2" +__version__ = "0.33.2.1" |