mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-04 05:38:57 +01:00
Merge branch 'develop' of github.com:matrix-org/synapse into erikj/sanitize_logging
This commit is contained in:
commit
f13890ddce
3 changed files with 11 additions and 5 deletions
13
CHANGES.rst
13
CHANGES.rst
|
@ -1,17 +1,22 @@
|
||||||
|
Changes in synapse v0.9.2-r2 (2015-06-15)
|
||||||
|
=========================================
|
||||||
|
|
||||||
|
Fix packaging so that schema delta python files get included in the package.
|
||||||
|
|
||||||
Changes in synapse v0.9.2 (2015-06-12)
|
Changes in synapse v0.9.2 (2015-06-12)
|
||||||
======================================
|
======================================
|
||||||
|
|
||||||
General:
|
General:
|
||||||
|
|
||||||
* Use ultrajson for json deserialisation, and for serialisation when a
|
* Use ultrajson for json (de)serialisation when a canonical encoding is not
|
||||||
canonical encoding is not required. Ultrajson is significantly faster
|
required. Ultrajson is significantly faster than simplejson in certain
|
||||||
than simplejson in some circumstances.
|
circumstances.
|
||||||
* Use connection pools for outgoing HTTP connections.
|
* Use connection pools for outgoing HTTP connections.
|
||||||
* Process thumbnails on separate threads.
|
* Process thumbnails on separate threads.
|
||||||
|
|
||||||
Configuration:
|
Configuration:
|
||||||
|
|
||||||
* Add option to disable HTTP response compression.
|
* Add option, ``gzip_responses``, to disable HTTP response compression.
|
||||||
|
|
||||||
Federation:
|
Federation:
|
||||||
|
|
||||||
|
|
|
@ -16,4 +16,4 @@
|
||||||
""" This is a reference implementation of a Matrix home server.
|
""" This is a reference implementation of a Matrix home server.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.9.2"
|
__version__ = "0.9.2-r2"
|
||||||
|
|
1
synapse/storage/schema/delta/20/dummy.sql
Normal file
1
synapse/storage/schema/delta/20/dummy.sql
Normal file
|
@ -0,0 +1 @@
|
||||||
|
SELECT 1;
|
Loading…
Reference in a new issue