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

Commit b79d697

Browse files
committed
1.19.1rc1
1 parent 393a811 commit b79d697

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGES.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
Synapse 1.19.1rc1 (2020-08-25)
2+
==============================
3+
4+
Bugfixes
5+
--------
6+
7+
- Fixes a bug where appservices with ratelimiting disabled would still be ratelimited when joining rooms. This bug was introduced in v1.19.0. ([\#8139](https://github.com/matrix-org/synapse/issues/8139))
8+
- Fix a bug introduced in v1.19.0 that would cause e.g. profile updates to fail due to incorrect application of rate limits on join requests. ([\#8153](https://github.com/matrix-org/synapse/issues/8153))
9+
10+
111
Synapse 1.19.0 (2020-08-17)
212
===========================
313

changelog.d/8139.bugfix

-1
This file was deleted.

changelog.d/8153.bugfix

-1
This file was deleted.

synapse/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
except ImportError:
4949
pass
5050

51-
__version__ = "1.19.0"
51+
__version__ = "1.19.1rc1"
5252

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

0 commit comments

Comments
 (0)