1.32.2
parent
ca6ecb8d67
commit
55159c48e3
11
CHANGES.md
11
CHANGES.md
|
@ -1,3 +1,14 @@
|
||||||
|
Synapse 1.32.2 (2021-04-21)
|
||||||
|
===========================
|
||||||
|
|
||||||
|
This release includes fixes for the two regressions introduced in 1.32.0.
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Fix a regression in Synapse v1.32.1 which caused `LoggingContext` errors in plugins. ([\#9857](https://github.com/matrix-org/synapse/issues/9857))
|
||||||
|
|
||||||
|
|
||||||
Synapse 1.32.1 (2021-04-21)
|
Synapse 1.32.1 (2021-04-21)
|
||||||
===========================
|
===========================
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Fix a regression in Synapse v1.32.1 which caused `LoggingContext` errors in plugins.
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
matrix-synapse-py3 (1.32.2) stable; urgency=medium
|
||||||
|
|
||||||
|
* New synapse release 1.32.2.
|
||||||
|
|
||||||
|
-- Synapse Packaging team <packages@matrix.org> Wed, 21 Apr 2021 18:43:52 +0100
|
||||||
|
|
||||||
matrix-synapse-py3 (1.32.1) stable; urgency=medium
|
matrix-synapse-py3 (1.32.1) stable; urgency=medium
|
||||||
|
|
||||||
* New synapse release 1.32.1.
|
* New synapse release 1.32.1.
|
||||||
|
|
|
@ -48,7 +48,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
__version__ = "1.32.1"
|
__version__ = "1.32.2"
|
||||||
|
|
||||||
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
|
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
|
# We import here so that we don't have to install a bunch of deps when
|
||||||
|
|
Loading…
Reference in New Issue