0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-13 16:18:56 +02:00
This commit is contained in:
Richard van der Hoff 2019-10-28 12:48:18 +00:00
parent 172f264ed3
commit c482d45822
7 changed files with 19 additions and 6 deletions

View file

@ -1,3 +1,21 @@
Synapse 1.5.0rc2 (2019-10-28)
=============================
Bugfixes
--------
- Update list of boolean columns in `synapse_port_db`. ([\#6247](https://github.com/matrix-org/synapse/issues/6247))
- Fix /keys/query API on workers. ([\#6256](https://github.com/matrix-org/synapse/issues/6256))
- Improve signature checking on some federation APIs. ([\#6262](https://github.com/matrix-org/synapse/issues/6262))
Internal Changes
----------------
- Move schema delta files to the correct data store. ([\#6248](https://github.com/matrix-org/synapse/issues/6248))
- Small performance improvement by removing repeated config lookups in room stats calculation. ([\#6255](https://github.com/matrix-org/synapse/issues/6255))
Synapse 1.5.0rc1 (2019-10-24)
==========================

View file

@ -1 +0,0 @@
Update list of boolean columns in `synapse_port_db`.

View file

@ -1 +0,0 @@
Move schema delta files to the correct data store.

View file

@ -1 +0,0 @@
Small performance improvement by removing repeated config lookups in room stats calculation.

View file

@ -1 +0,0 @@
Fix /keys/query API on workers.

View file

@ -1 +0,0 @@
Improve signature checking on some federation APIs.

View file

@ -36,7 +36,7 @@ try:
except ImportError:
pass
__version__ = "1.5.0rc1"
__version__ = "1.5.0rc2"
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