mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge remote-tracking branch 'origin/release-v0.33.0' into develop
This commit is contained in:
commit
1ffb7bec20
27
CHANGES.rst
27
CHANGES.rst
@ -1,3 +1,30 @@
|
|||||||
|
Synapse 0.33.0rc1 (2018-07-18)
|
||||||
|
==============================
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Enforce the specified API for report_event (`#3316 <https://github.com/matrix-org/synapse/issues/3316>`_)
|
||||||
|
- Include CPU time from database threads in request/block metrics. (`#3496 <https://github.com/matrix-org/synapse/issues/3496>`_)
|
||||||
|
- Add CPU metrics for _fetch_event_list (`#3497 <https://github.com/matrix-org/synapse/issues/3497>`_)
|
||||||
|
- Reduce database consumption when processing large numbers of receipts (`#3505 <https://github.com/matrix-org/synapse/issues/3505>`_)
|
||||||
|
- Cache optimisation for /sync requests (`#3521 <https://github.com/matrix-org/synapse/issues/3521>`_)
|
||||||
|
- Optimisation to make handling incoming federation requests more efficient. (`#3541 <https://github.com/matrix-org/synapse/issues/3541>`_)
|
||||||
|
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Fix queued federation requests being processed in the wrong order (`#3533 <https://github.com/matrix-org/synapse/issues/3533>`_)
|
||||||
|
- Ensure that erasure requests are correctly honoured for publicly accessible rooms when accessed over federation. (`#3546 <https://github.com/matrix-org/synapse/issues/3546>`_)
|
||||||
|
|
||||||
|
|
||||||
|
Misc
|
||||||
|
----
|
||||||
|
|
||||||
|
- `#3351 <https://github.com/matrix-org/synapse/issues/3351>`_, `#3463 <https://github.com/matrix-org/synapse/issues/3463>`_, `#3464 <https://github.com/matrix-org/synapse/issues/3464>`_, `#3498 <https://github.com/matrix-org/synapse/issues/3498>`_, `#3499 <https://github.com/matrix-org/synapse/issues/3499>`_, `#3501 <https://github.com/matrix-org/synapse/issues/3501>`_, `#3530 <https://github.com/matrix-org/synapse/issues/3530>`_, `#3534 <https://github.com/matrix-org/synapse/issues/3534>`_, `#3535 <https://github.com/matrix-org/synapse/issues/3535>`_, `#3540 <https://github.com/matrix-org/synapse/issues/3540>`_, `#3544 <https://github.com/matrix-org/synapse/issues/3544>`_
|
||||||
|
|
||||||
|
|
||||||
Synapse 0.32.2 (2018-07-07)
|
Synapse 0.32.2 (2018-07-07)
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Enforce the specified API for report_event
|
|
@ -1 +0,0 @@
|
|||||||
Include CPU time from database threads in request/block metrics.
|
|
@ -1 +0,0 @@
|
|||||||
Add CPU metrics for _fetch_event_list
|
|
@ -1 +0,0 @@
|
|||||||
Reduce database consumption when processing large numbers of receipts
|
|
@ -1 +0,0 @@
|
|||||||
Cache optimisation for /sync requests
|
|
@ -1 +0,0 @@
|
|||||||
Fix queued federation requests being processed in the wrong order
|
|
@ -1 +0,0 @@
|
|||||||
refactor: use parse_{string,integer} and assert's from http.servlet for deduplication
|
|
@ -1 +0,0 @@
|
|||||||
check isort for each PR
|
|
@ -1 +0,0 @@
|
|||||||
Optimisation to make handling incoming federation requests more efficient.
|
|
@ -1 +0,0 @@
|
|||||||
Ensure that erasure requests are correctly honoured for publicly accessible rooms when accessed over federation.
|
|
1
changelog.d/3561.bugfix
Normal file
1
changelog.d/3561.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Disable a noisy warning about logcontexts
|
@ -17,4 +17,4 @@
|
|||||||
""" This is a reference implementation of a Matrix home server.
|
""" This is a reference implementation of a Matrix home server.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.32.2"
|
__version__ = "0.33.0rc1"
|
||||||
|
@ -343,9 +343,10 @@ class SQLBaseStore(object):
|
|||||||
"""
|
"""
|
||||||
parent_context = LoggingContext.current_context()
|
parent_context = LoggingContext.current_context()
|
||||||
if parent_context == LoggingContext.sentinel:
|
if parent_context == LoggingContext.sentinel:
|
||||||
logger.warn(
|
# warning disabled for 0.33.0 release; proper fixes will land imminently.
|
||||||
"Running db txn from sentinel context: metrics will be lost",
|
# logger.warn(
|
||||||
)
|
# "Running db txn from sentinel context: metrics will be lost",
|
||||||
|
# )
|
||||||
parent_context = None
|
parent_context = None
|
||||||
|
|
||||||
start_time = time.time()
|
start_time = time.time()
|
||||||
|
Loading…
Reference in New Issue
Block a user