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

Commit 5146e19

Browse files
committed
1.39.0rc3
1 parent 31c6b30 commit 5146e19

File tree

8 files changed

+25
-6
lines changed

8 files changed

+25
-6
lines changed

CHANGES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
Synapse 1.39.0rc3 (2021-07-28)
2+
==============================
3+
4+
Bugfixes
5+
--------
6+
7+
- Fix bug introduced in Synapse 1.38 which caused an exception at startup when SAML authentication was enabled. ([\#10477](https://github.com/matrix-org/synapse/issues/10477))
8+
- Fix a long-standing bug where Synapse would not inform clients that a device had exhausted its one-time-key pool, potentially causing problems decrypting events. ([\#10485](https://github.com/matrix-org/synapse/issues/10485))
9+
- Fix reporting old R30 stats as R30v2 stats. ([\#10486](https://github.com/matrix-org/synapse/issues/10486))
10+
11+
12+
Internal Changes
13+
----------------
14+
15+
- Fix an error which prevented the Github Actions workflow to build the docker images from running. ([\#10461](https://github.com/matrix-org/synapse/issues/10461))
16+
- Fix release script to correctly version debian changelog when doing RCs. ([\#10465](https://github.com/matrix-org/synapse/issues/10465))
17+
18+
119
Synapse 1.39.0rc2 (2021-07-22)
220
==============================
321

changelog.d/10461.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/10465.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/10477.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/10485.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/10486.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

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.39.0~rc3) stable; urgency=medium
2+
3+
* New synapse release 1.39.0~rc3.
4+
5+
-- Synapse Packaging team <[email protected]> Wed, 28 Jul 2021 13:30:58 +0100
6+
17
matrix-synapse-py3 (1.38.1) stable; urgency=medium
28

39
* New synapse release 1.38.1.

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.39.0rc2"
50+
__version__ = "1.39.0rc3"
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)