Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit f1fbf75

Browse files
committed
Merge branch 'master' into develop
2 parents a377a43 + 3a8ee22 commit f1fbf75

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

CHANGES.md

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ Synapse 1.59.0
44
The non-standard `m.login.jwt` login type has been removed from Synapse. It can be replaced with `org.matrix.login.jwt` for identical behaviour. This is only used if `jwt_config.enabled` is set to `true` in the configuration.
55

66

7+
Synapse 1.58.1 (2022-05-05)
8+
===========================
9+
10+
This patch release includes a fix to the Debian packages, installing the
11+
`systemd` and `cache_memory` extra package groups, which were incorrectly
12+
omitted in v1.58.0. This primarily prevented Synapse from starting
13+
when the `systemd.journal.JournalHandler` log handler was configured.
14+
See [#12631](https://github.com/matrix-org/synapse/issues/12631) for further information.
15+
16+
Otherwise, no significant changes since 1.58.0.
17+
18+
719
Synapse 1.58.0 (2022-05-03)
820
===========================
921

debian/build_virtualenv

+6-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ python3 -m venv "$TEMP_VENV"
3737
source "$TEMP_VENV/bin/activate"
3838
pip install -U pip
3939
pip install poetry==1.2.0b1
40-
poetry export --extras all --extras test -o exported_requirements.txt
40+
poetry export \
41+
--extras all \
42+
--extras test \
43+
--extras systemd \
44+
--extras cache_memory \
45+
-o exported_requirements.txt
4146
deactivate
4247
rm -rf "$TEMP_VENV"
4348

debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
matrix-synapse-py3 (1.58.1) stable; urgency=medium
2+
3+
* Include python dependencies from the `systemd` and `cache_memory` extras package groups, which
4+
were incorrectly omitted from the 1.58.0 package.
5+
* New Synapse release 1.58.1.
6+
7+
-- Synapse Packaging team <[email protected]> Thu, 05 May 2022 14:58:23 +0100
8+
19
matrix-synapse-py3 (1.58.0) stable; urgency=medium
210

311
* New Synapse release 1.58.0.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ skip_gitignore = true
5454

5555
[tool.poetry]
5656
name = "matrix-synapse"
57-
version = "1.58.0"
57+
version = "1.58.1"
5858
description = "Homeserver for the Matrix decentralised comms protocol"
5959
authors = ["Matrix.org Team and Contributors <[email protected]>"]
6060
license = "Apache-2.0"

0 commit comments

Comments
 (0)