diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-06-14 16:35:33 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-06-14 16:35:33 +0100 |
commit | 53969e196004659c6a9f138f5d8abd86f4957d74 (patch) | |
tree | 321c7b3feae12392ae8fbc0b88aa237f93de8cf7 /synapse/__init__.py | |
parent | Merge tag 'v0.31.1' (diff) | |
parent | link to spec proposal from changelog (diff) | |
download | synapse-53969e196004659c6a9f138f5d8abd86f4957d74.tar.xz |
Merge tag 'v0.31.2'
SECURITY UPDATE: Prevent unauthorised users from setting state events in a room when there is no `m.room.power_levels` event in force in the room. (PR #3397) Discussion around the Matrix Spec change proposal for this change can be followed at https://github.com/matrix-org/matrix-doc/issues/1304.
Diffstat (limited to 'synapse/__init__.py')
-rw-r--r-- | synapse/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/synapse/__init__.py b/synapse/__init__.py index 78fc63aa49..faa183a99e 100644 --- a/synapse/__init__.py +++ b/synapse/__init__.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- # Copyright 2014-2016 OpenMarket Ltd +# Copyright 2018 New Vector Ltd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,4 +17,4 @@ """ This is a reference implementation of a Matrix home server. """ -__version__ = "0.31.1" +__version__ = "0.31.2" |