Skip to content

Commit a4c8a2f

Browse files
committed
1.41.1
1 parent 8c26f16 commit a4c8a2f

File tree

3 files changed

+39
-1
lines changed

3 files changed

+39
-1
lines changed

CHANGES.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
Synapse 1.41.1 (2021-08-31)
2+
===========================
3+
4+
Due to the two security issues highlighted below, server administrators are encouraged to update Synapse. We are not aware of these vulnerabilities being exploited in the wild.
5+
6+
Security advisory
7+
-----------------
8+
9+
The following issues are fixed in v1.41.1.
10+
11+
- **[GHSA-3x4c-pq33-4w3q](https://github.com/matrix-org/synapse/security/advisories/GHSA-3x4c-pq33-4w3q) / [CVE-2021-39164](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-39164): Enumerating a private room's list of members and their display names.**
12+
13+
If an unauthorized user both knows the Room ID of a private room *and* that room's history visibility is set to `shared`, then they may be able to enumerate the room's members, including their display names.
14+
15+
The unauthorized user must be on the same homeserver as a user who is a member of the target room.
16+
17+
Fixed by [52c7a51cf](https://github.com/matrix-org/synapse/commit/52c7a51cf).
18+
19+
- **[GHSA-jj53-8fmw-f2w2](https://github.com/matrix-org/synapse/security/advisories/GHSA-jj53-8fmw-f2w2) / [CVE-2021-39163](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-39163): Disclosing a private room's name, avatar, topic, and number of members.**
20+
21+
If an unauthorized user knows the Room ID of a private room, then its name, avatar, topic, and number of members may be disclosed through Group / Community features.
22+
23+
The unauthorized user must be on the same homeserver as a user who is a member of the target room, and their homeserver must allow non-administrators to create groups (`enable_group_creation` in the Synapse configuration; off by default).
24+
25+
Fixed by [cb35df940a](https://github.com/matrix-org/synapse/commit/cb35df940a), [\#10723](https://github.com/matrix-org/synapse/issues/10723).
26+
27+
Bugfixes
28+
--------
29+
30+
- Fix a regression introduced in Synapse 1.41 which broke email transmission on systems using older versions of the Twisted library. ([\#10713](https://github.com/matrix-org/synapse/issues/10713))
31+
32+
133
Synapse 1.41.0 (2021-08-24)
234
===========================
335

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
matrix-synapse-py3 (1.41.1) stable; urgency=high
2+
3+
* New synapse release 1.41.1.
4+
5+
-- Synapse Packaging team <[email protected]> Tue, 31 Aug 2021 12:59:10 +0100
6+
17
matrix-synapse-py3 (1.41.0) stable; urgency=medium
28

39
* New synapse release 1.41.0.

synapse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
except ImportError:
4848
pass
4949

50-
__version__ = "1.41.0"
50+
__version__ = "1.41.1"
5151

5252
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
5353
# We import here so that we don't have to install a bunch of deps when

0 commit comments

Comments
 (0)