mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 17:46:08 +03:00
Merge branch 'develop' into m-heroes-empty-room-name
This commit is contained in:
commit
40596aec0e
350 changed files with 9650 additions and 3611 deletions
166
CHANGES.md
166
CHANGES.md
|
@ -1,3 +1,169 @@
|
|||
Synapse 0.99.5.2 (2019-05-30)
|
||||
=============================
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- Fix bug where we leaked extremities when we soft failed events, leading to performance degradation. ([\#5274](https://github.com/matrix-org/synapse/issues/5274), [\#5278](https://github.com/matrix-org/synapse/issues/5278), [\#5291](https://github.com/matrix-org/synapse/issues/5291))
|
||||
|
||||
|
||||
Synapse 0.99.5.1 (2019-05-22)
|
||||
=============================
|
||||
|
||||
0.99.5.1 supersedes 0.99.5 due to malformed debian changelog - no functional changes.
|
||||
|
||||
Synapse 0.99.5 (2019-05-22)
|
||||
===========================
|
||||
|
||||
No significant changes.
|
||||
|
||||
|
||||
Synapse 0.99.5rc1 (2019-05-21)
|
||||
==============================
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
- Add ability to blacklist IP ranges for the federation client. ([\#5043](https://github.com/matrix-org/synapse/issues/5043))
|
||||
- Ratelimiting configuration for clients sending messages and the federation server has been altered to match login ratelimiting. The old configuration names will continue working. Check the sample config for details of the new names. ([\#5181](https://github.com/matrix-org/synapse/issues/5181))
|
||||
- Drop support for the undocumented /_matrix/client/v2_alpha API prefix. ([\#5190](https://github.com/matrix-org/synapse/issues/5190))
|
||||
- Add an option to disable per-room profiles. ([\#5196](https://github.com/matrix-org/synapse/issues/5196))
|
||||
- Stick an expiration date to any registered user missing one at startup if account validity is enabled. ([\#5204](https://github.com/matrix-org/synapse/issues/5204))
|
||||
- Add experimental support for relations (aka reactions and edits). ([\#5209](https://github.com/matrix-org/synapse/issues/5209), [\#5211](https://github.com/matrix-org/synapse/issues/5211), [\#5203](https://github.com/matrix-org/synapse/issues/5203), [\#5212](https://github.com/matrix-org/synapse/issues/5212))
|
||||
- Add a room version 4 which uses a new event ID format, as per [MSC2002](https://github.com/matrix-org/matrix-doc/pull/2002). ([\#5210](https://github.com/matrix-org/synapse/issues/5210), [\#5217](https://github.com/matrix-org/synapse/issues/5217))
|
||||
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- Fix image orientation when generating thumbnails (needs pillow>=4.3.0). Contributed by Pau Rodriguez-Estivill. ([\#5039](https://github.com/matrix-org/synapse/issues/5039))
|
||||
- Exclude soft-failed events from forward-extremity candidates: fixes "No forward extremities left!" error. ([\#5146](https://github.com/matrix-org/synapse/issues/5146))
|
||||
- Re-order stages in registration flows such that msisdn and email verification are done last. ([\#5174](https://github.com/matrix-org/synapse/issues/5174))
|
||||
- Fix 3pid guest invites. ([\#5177](https://github.com/matrix-org/synapse/issues/5177))
|
||||
- Fix a bug where the register endpoint would fail with M_THREEPID_IN_USE instead of returning an account previously registered in the same session. ([\#5187](https://github.com/matrix-org/synapse/issues/5187))
|
||||
- Prevent registration for user ids that are too long to fit into a state key. Contributed by Reid Anderson. ([\#5198](https://github.com/matrix-org/synapse/issues/5198))
|
||||
- Fix incompatibility between ACME support and Python 3.5.2. ([\#5218](https://github.com/matrix-org/synapse/issues/5218))
|
||||
- Fix error handling for rooms whose versions are unknown. ([\#5219](https://github.com/matrix-org/synapse/issues/5219))
|
||||
|
||||
|
||||
Internal Changes
|
||||
----------------
|
||||
|
||||
- Make /sync attempt to return device updates for both joined and invited users. Note that this doesn't currently work correctly due to other bugs. ([\#3484](https://github.com/matrix-org/synapse/issues/3484))
|
||||
- Update tests to consistently be configured via the same code that is used when loading from configuration files. ([\#5171](https://github.com/matrix-org/synapse/issues/5171), [\#5185](https://github.com/matrix-org/synapse/issues/5185))
|
||||
- Allow client event serialization to be async. ([\#5183](https://github.com/matrix-org/synapse/issues/5183))
|
||||
- Expose DataStore._get_events as get_events_as_list. ([\#5184](https://github.com/matrix-org/synapse/issues/5184))
|
||||
- Make generating SQL bounds for pagination generic. ([\#5191](https://github.com/matrix-org/synapse/issues/5191))
|
||||
- Stop telling people to install the optional dependencies by default. ([\#5197](https://github.com/matrix-org/synapse/issues/5197))
|
||||
|
||||
|
||||
Synapse 0.99.4 (2019-05-15)
|
||||
===========================
|
||||
|
||||
No significant changes.
|
||||
|
||||
|
||||
Synapse 0.99.4rc1 (2019-05-13)
|
||||
==============================
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
- Add systemd-python to the optional dependencies to enable logging to the systemd journal. Install with `pip install matrix-synapse[systemd]`. ([\#4339](https://github.com/matrix-org/synapse/issues/4339))
|
||||
- Add a default .m.rule.tombstone push rule. ([\#4867](https://github.com/matrix-org/synapse/issues/4867))
|
||||
- Add ability for password provider modules to bind email addresses to users upon registration. ([\#4947](https://github.com/matrix-org/synapse/issues/4947))
|
||||
- Implementation of [MSC1711](https://github.com/matrix-org/matrix-doc/pull/1711) including config options for requiring valid TLS certificates for federation traffic, the ability to disable TLS validation for specific domains, and the ability to specify your own list of CA certificates. ([\#4967](https://github.com/matrix-org/synapse/issues/4967))
|
||||
- Remove presence list support as per MSC 1819. ([\#4989](https://github.com/matrix-org/synapse/issues/4989))
|
||||
- Reduce CPU usage starting pushers during start up. ([\#4991](https://github.com/matrix-org/synapse/issues/4991))
|
||||
- Add a delete group admin API. ([\#5002](https://github.com/matrix-org/synapse/issues/5002))
|
||||
- Add config option to block users from looking up 3PIDs. ([\#5010](https://github.com/matrix-org/synapse/issues/5010))
|
||||
- Add context to phonehome stats. ([\#5020](https://github.com/matrix-org/synapse/issues/5020))
|
||||
- Configure the example systemd units to have a log identifier of `matrix-synapse`
|
||||
instead of the executable name, `python`.
|
||||
Contributed by Christoph Müller. ([\#5023](https://github.com/matrix-org/synapse/issues/5023))
|
||||
- Add time-based account expiration. ([\#5027](https://github.com/matrix-org/synapse/issues/5027), [\#5047](https://github.com/matrix-org/synapse/issues/5047), [\#5073](https://github.com/matrix-org/synapse/issues/5073), [\#5116](https://github.com/matrix-org/synapse/issues/5116))
|
||||
- Add support for handling `/versions`, `/voip` and `/push_rules` client endpoints to client_reader worker. ([\#5063](https://github.com/matrix-org/synapse/issues/5063), [\#5065](https://github.com/matrix-org/synapse/issues/5065), [\#5070](https://github.com/matrix-org/synapse/issues/5070))
|
||||
- Add a configuration option to require authentication on /publicRooms and /profile endpoints. ([\#5083](https://github.com/matrix-org/synapse/issues/5083))
|
||||
- Move admin APIs to `/_synapse/admin/v1`. (The old paths are retained for backwards-compatibility, for now). ([\#5119](https://github.com/matrix-org/synapse/issues/5119))
|
||||
- Implement an admin API for sending server notices. Many thanks to @krombel who provided a foundation for this work. ([\#5121](https://github.com/matrix-org/synapse/issues/5121), [\#5142](https://github.com/matrix-org/synapse/issues/5142))
|
||||
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- Avoid redundant URL encoding of redirect URL for SSO login in the fallback login page. Fixes a regression introduced in [#4220](https://github.com/matrix-org/synapse/pull/4220). Contributed by Marcel Fabian Krüger ("[zaugin](https://github.com/zauguin)"). ([\#4555](https://github.com/matrix-org/synapse/issues/4555))
|
||||
- Fix bug where presence updates were sent to all servers in a room when a new server joined, rather than to just the new server. ([\#4942](https://github.com/matrix-org/synapse/issues/4942), [\#5103](https://github.com/matrix-org/synapse/issues/5103))
|
||||
- Fix sync bug which made accepting invites unreliable in worker-mode synapses. ([\#4955](https://github.com/matrix-org/synapse/issues/4955), [\#4956](https://github.com/matrix-org/synapse/issues/4956))
|
||||
- start.sh: Fix the --no-rate-limit option for messages and make it bypass rate limit on registration and login too. ([\#4981](https://github.com/matrix-org/synapse/issues/4981))
|
||||
- Transfer related groups on room upgrade. ([\#4990](https://github.com/matrix-org/synapse/issues/4990))
|
||||
- Prevent the ability to kick users from a room they aren't in. ([\#4999](https://github.com/matrix-org/synapse/issues/4999))
|
||||
- Fix issue #4596 so synapse_port_db script works with --curses option on Python 3. Contributed by Anders Jensen-Waud <anders@jensenwaud.com>. ([\#5003](https://github.com/matrix-org/synapse/issues/5003))
|
||||
- Clients timing out/disappearing while downloading from the media repository will now no longer log a spurious "Producer was not unregistered" message. ([\#5009](https://github.com/matrix-org/synapse/issues/5009))
|
||||
- Fix "cannot import name execute_batch" error with postgres. ([\#5032](https://github.com/matrix-org/synapse/issues/5032))
|
||||
- Fix disappearing exceptions in manhole. ([\#5035](https://github.com/matrix-org/synapse/issues/5035))
|
||||
- Workaround bug in twisted where attempting too many concurrent DNS requests could cause it to hang due to running out of file descriptors. ([\#5037](https://github.com/matrix-org/synapse/issues/5037))
|
||||
- Make sure we're not registering the same 3pid twice on registration. ([\#5071](https://github.com/matrix-org/synapse/issues/5071))
|
||||
- Don't crash on lack of expiry templates. ([\#5077](https://github.com/matrix-org/synapse/issues/5077))
|
||||
- Fix the ratelimiting on third party invites. ([\#5104](https://github.com/matrix-org/synapse/issues/5104))
|
||||
- Add some missing limitations to room alias creation. ([\#5124](https://github.com/matrix-org/synapse/issues/5124), [\#5128](https://github.com/matrix-org/synapse/issues/5128))
|
||||
- Limit the number of EDUs in transactions to 100 as expected by synapse. Thanks to @superboum for this work! ([\#5138](https://github.com/matrix-org/synapse/issues/5138))
|
||||
|
||||
Internal Changes
|
||||
----------------
|
||||
|
||||
- Add test to verify threepid auth check added in #4435. ([\#4474](https://github.com/matrix-org/synapse/issues/4474))
|
||||
- Fix/improve some docstrings in the replication code. ([\#4949](https://github.com/matrix-org/synapse/issues/4949))
|
||||
- Split synapse.replication.tcp.streams into smaller files. ([\#4953](https://github.com/matrix-org/synapse/issues/4953))
|
||||
- Refactor replication row generation/parsing. ([\#4954](https://github.com/matrix-org/synapse/issues/4954))
|
||||
- Run `black` to clean up formatting on `synapse/storage/roommember.py` and `synapse/storage/events.py`. ([\#4959](https://github.com/matrix-org/synapse/issues/4959))
|
||||
- Remove log line for password via the admin API. ([\#4965](https://github.com/matrix-org/synapse/issues/4965))
|
||||
- Fix typo in TLS filenames in docker/README.md. Also add the '-p' commandline option to the 'docker run' example. Contributed by Jurrie Overgoor. ([\#4968](https://github.com/matrix-org/synapse/issues/4968))
|
||||
- Refactor room version definitions. ([\#4969](https://github.com/matrix-org/synapse/issues/4969))
|
||||
- Reduce log level of .well-known/matrix/client responses. ([\#4972](https://github.com/matrix-org/synapse/issues/4972))
|
||||
- Add `config.signing_key_path` that can be read by `synapse.config` utility. ([\#4974](https://github.com/matrix-org/synapse/issues/4974))
|
||||
- Track which identity server is used when binding a threepid and use that for unbinding, as per MSC1915. ([\#4982](https://github.com/matrix-org/synapse/issues/4982))
|
||||
- Rewrite KeyringTestCase as a HomeserverTestCase. ([\#4985](https://github.com/matrix-org/synapse/issues/4985))
|
||||
- README updates: Corrected the default POSTGRES_USER. Added port forwarding hint in TLS section. ([\#4987](https://github.com/matrix-org/synapse/issues/4987))
|
||||
- Remove a number of unused tables from the database schema. ([\#4992](https://github.com/matrix-org/synapse/issues/4992), [\#5028](https://github.com/matrix-org/synapse/issues/5028), [\#5033](https://github.com/matrix-org/synapse/issues/5033))
|
||||
- Run `black` on the remainder of `synapse/storage/`. ([\#4996](https://github.com/matrix-org/synapse/issues/4996))
|
||||
- Fix grammar in get_current_users_in_room and give it a docstring. ([\#4998](https://github.com/matrix-org/synapse/issues/4998))
|
||||
- Clean up some code in the server-key Keyring. ([\#5001](https://github.com/matrix-org/synapse/issues/5001))
|
||||
- Convert SYNAPSE_NO_TLS Docker variable to boolean for user friendliness. Contributed by Gabriel Eckerson. ([\#5005](https://github.com/matrix-org/synapse/issues/5005))
|
||||
- Refactor synapse.storage._base._simple_select_list_paginate. ([\#5007](https://github.com/matrix-org/synapse/issues/5007))
|
||||
- Store the notary server name correctly in server_keys_json. ([\#5024](https://github.com/matrix-org/synapse/issues/5024))
|
||||
- Rewrite Datastore.get_server_verify_keys to reduce the number of database transactions. ([\#5030](https://github.com/matrix-org/synapse/issues/5030))
|
||||
- Remove extraneous period from copyright headers. ([\#5046](https://github.com/matrix-org/synapse/issues/5046))
|
||||
- Update documentation for where to get Synapse packages. ([\#5067](https://github.com/matrix-org/synapse/issues/5067))
|
||||
- Add workarounds for pep-517 install errors. ([\#5098](https://github.com/matrix-org/synapse/issues/5098))
|
||||
- Improve logging when event-signature checks fail. ([\#5100](https://github.com/matrix-org/synapse/issues/5100))
|
||||
- Factor out an "assert_requester_is_admin" function. ([\#5120](https://github.com/matrix-org/synapse/issues/5120))
|
||||
- Remove the requirement to authenticate for /admin/server_version. ([\#5122](https://github.com/matrix-org/synapse/issues/5122))
|
||||
- Prevent an exception from being raised in a IResolutionReceiver and use a more generic error message for blacklisted URL previews. ([\#5155](https://github.com/matrix-org/synapse/issues/5155))
|
||||
- Run `black` on the tests directory. ([\#5170](https://github.com/matrix-org/synapse/issues/5170))
|
||||
- Fix CI after new release of isort. ([\#5179](https://github.com/matrix-org/synapse/issues/5179))
|
||||
- Fix bogus imports in unit tests. ([\#5154](https://github.com/matrix-org/synapse/issues/5154))
|
||||
|
||||
|
||||
Synapse 0.99.3.2 (2019-05-03)
|
||||
=============================
|
||||
|
||||
Internal Changes
|
||||
----------------
|
||||
|
||||
- Ensure that we have `urllib3` <1.25, to resolve incompatibility with `requests`. ([\#5135](https://github.com/matrix-org/synapse/issues/5135))
|
||||
|
||||
|
||||
Synapse 0.99.3.1 (2019-05-03)
|
||||
=============================
|
||||
|
||||
Security update
|
||||
---------------
|
||||
|
||||
This release includes two security fixes:
|
||||
|
||||
- Switch to using a cryptographically-secure random number generator for token strings, ensuring they cannot be predicted by an attacker. Thanks to @opnsec for identifying and responsibly disclosing this issue! ([\#5133](https://github.com/matrix-org/synapse/issues/5133))
|
||||
- Blacklist 0.0.0.0 and :: by default for URL previews. Thanks to @opnsec for identifying and responsibly disclosing this issue too! ([\#5134](https://github.com/matrix-org/synapse/issues/5134))
|
||||
|
||||
Synapse 0.99.3 (2019-04-01)
|
||||
===========================
|
||||
|
||||
|
|
23
INSTALL.md
23
INSTALL.md
|
@ -35,7 +35,7 @@ virtualenv -p python3 ~/synapse/env
|
|||
source ~/synapse/env/bin/activate
|
||||
pip install --upgrade pip
|
||||
pip install --upgrade setuptools
|
||||
pip install matrix-synapse[all]
|
||||
pip install matrix-synapse
|
||||
```
|
||||
|
||||
This will download Synapse from [PyPI](https://pypi.org/project/matrix-synapse)
|
||||
|
@ -48,7 +48,7 @@ update flag:
|
|||
|
||||
```
|
||||
source ~/synapse/env/bin/activate
|
||||
pip install -U matrix-synapse[all]
|
||||
pip install -U matrix-synapse
|
||||
```
|
||||
|
||||
Before you can start Synapse, you will need to generate a configuration
|
||||
|
@ -257,9 +257,8 @@ https://github.com/spantaleev/matrix-docker-ansible-deploy
|
|||
#### Matrix.org packages
|
||||
|
||||
Matrix.org provides Debian/Ubuntu packages of the latest stable version of
|
||||
Synapse via https://packages.matrix.org/debian/. To use them:
|
||||
|
||||
For Debian 9 (Stretch), Ubuntu 16.04 (Xenial), and later:
|
||||
Synapse via https://packages.matrix.org/debian/. They are available for Debian
|
||||
9 (Stretch), Ubuntu 16.04 (Xenial), and later. To use them:
|
||||
|
||||
```
|
||||
sudo apt install -y lsb-release wget apt-transport-https
|
||||
|
@ -270,17 +269,6 @@ sudo apt update
|
|||
sudo apt install matrix-synapse-py3
|
||||
```
|
||||
|
||||
For Debian 8 (Jessie):
|
||||
|
||||
```
|
||||
sudo apt install -y lsb-release wget apt-transport-https
|
||||
sudo wget -O /etc/apt/trusted.gpg.d/matrix-org-archive-keyring.gpg https://packages.matrix.org/debian/matrix-org-archive-keyring.gpg
|
||||
echo "deb [signed-by=5586CCC0CBBBEFC7A25811ADF473DD4473365DE1] https://packages.matrix.org/debian/ $(lsb_release -cs) main" |
|
||||
sudo tee /etc/apt/sources.list.d/matrix-org.list
|
||||
sudo apt update
|
||||
sudo apt install matrix-synapse-py3
|
||||
```
|
||||
|
||||
**Note**: if you followed a previous version of these instructions which
|
||||
recommended using `apt-key add` to add an old key from
|
||||
`https://matrix.org/packages/debian/`, you should note that this key has been
|
||||
|
@ -288,6 +276,9 @@ revoked. You should remove the old key with `sudo apt-key remove
|
|||
C35EB17E1EAE708E6603A9B3AD0592FE47F0DF61`, and follow the above instructions to
|
||||
update your configuration.
|
||||
|
||||
The fingerprint of the repository signing key (as shown by `gpg
|
||||
/usr/share/keyrings/matrix-org-archive-keyring.gpg`) is
|
||||
`AAF9AE843A7584B5A3E4CD2BCF45A512DE2DA058`.
|
||||
|
||||
#### Downstream Debian/Ubuntu packages
|
||||
|
||||
|
|
|
@ -173,7 +173,7 @@ Synapse offers two database engines:
|
|||
* `PostgreSQL <https://www.postgresql.org>`_
|
||||
|
||||
By default Synapse uses SQLite in and doing so trades performance for convenience.
|
||||
SQLite is only recommended in Synapse for testing purposes or for servers with
|
||||
SQLite is only recommended in Synapse for testing purposes or for servers with
|
||||
light workloads.
|
||||
|
||||
Almost all installations should opt to use PostreSQL. Advantages include:
|
||||
|
@ -272,7 +272,7 @@ to install using pip and a virtualenv::
|
|||
|
||||
virtualenv -p python3 env
|
||||
source env/bin/activate
|
||||
python -m pip install -e .[all]
|
||||
python -m pip install --no-pep-517 -e .[all]
|
||||
|
||||
This will run a process of downloading and installing all the needed
|
||||
dependencies into a virtual env.
|
||||
|
|
1
changelog.d/4338.feature
Normal file
1
changelog.d/4338.feature
Normal file
|
@ -0,0 +1 @@
|
|||
Synapse now more efficiently collates room statistics.
|
|
@ -1 +0,0 @@
|
|||
Add systemd-python to the optional dependencies to enable logging to the systemd journal. Install with `pip install matrix-synapse[systemd]`.
|
|
@ -1 +0,0 @@
|
|||
Add test to verify threepid auth check added in #4435.
|
|
@ -1 +0,0 @@
|
|||
Avoid redundant URL encoding of redirect URL for SSO login in the fallback login page. Fixes a regression introduced in [#4220](https://github.com/matrix-org/synapse/pull/4220). Contributed by Marcel Fabian Krüger ("[zaugin](https://github.com/zauguin)").
|
|
@ -1 +0,0 @@
|
|||
Fix bug where presence updates were sent to all servers in a room when a new server joined, rather than to just the new server.
|
|
@ -1 +0,0 @@
|
|||
Add ability for password provider modules to bind email addresses to users upon registration.
|
|
@ -1 +0,0 @@
|
|||
Fix/improve some docstrings in the replication code.
|
|
@ -1,2 +0,0 @@
|
|||
Split synapse.replication.tcp.streams into smaller files.
|
||||
|
|
@ -1 +0,0 @@
|
|||
Refactor replication row generation/parsing.
|
|
@ -1 +0,0 @@
|
|||
Fix sync bug which made accepting invites unreliable in worker-mode synapses.
|
|
@ -1 +0,0 @@
|
|||
Fix sync bug which made accepting invites unreliable in worker-mode synapses.
|
|
@ -1 +0,0 @@
|
|||
Run `black` to clean up formatting on `synapse/storage/roommember.py` and `synapse/storage/events.py`.
|
|
@ -1 +0,0 @@
|
|||
Remove log line for password via the admin API.
|
|
@ -1 +0,0 @@
|
|||
Fix typo in TLS filenames in docker/README.md. Also add the '-p' commandline option to the 'docker run' example. Contributed by Jurrie Overgoor.
|
|
@ -1,2 +0,0 @@
|
|||
Refactor room version definitions.
|
||||
|
|
@ -1 +0,0 @@
|
|||
Add `config.signing_key_path` that can be read by `synapse.config` utility.
|
|
@ -1 +0,0 @@
|
|||
start.sh: Fix the --no-rate-limit option for messages and make it bypass rate limit on registration and login too.
|
|
@ -1 +0,0 @@
|
|||
Track which identity server is used when binding a threepid and use that for unbinding, as per MSC1915.
|
|
@ -1 +0,0 @@
|
|||
Rewrite KeyringTestCase as a HomeserverTestCase.
|
|
@ -1 +0,0 @@
|
|||
README updates: Corrected the default POSTGRES_USER. Added port forwarding hint in TLS section.
|
|
@ -1 +0,0 @@
|
|||
Remove presence list support as per MSC 1819.
|
|
@ -1 +0,0 @@
|
|||
Transfer related groups on room upgrade.
|
|
@ -1 +0,0 @@
|
|||
Reduce CPU usage starting pushers during start up.
|
|
@ -1 +0,0 @@
|
|||
Remove a number of unused tables from the database schema.
|
|
@ -1 +0,0 @@
|
|||
Run `black` on the remainder of `synapse/storage/`.
|
|
@ -1 +0,0 @@
|
|||
Fix grammar in get_current_users_in_room and give it a docstring.
|
|
@ -1 +0,0 @@
|
|||
Prevent the ability to kick users from a room they aren't in.
|
|
@ -1 +0,0 @@
|
|||
Clean up some code in the server-key Keyring.
|
|
@ -1 +0,0 @@
|
|||
Add a delete group admin API.
|
|
@ -1 +0,0 @@
|
|||
Fix issue #4596 so synapse_port_db script works with --curses option on Python 3. Contributed by Anders Jensen-Waud <anders@jensenwaud.com>.
|
|
@ -1 +0,0 @@
|
|||
Refactor synapse.storage._base._simple_select_list_paginate.
|
|
@ -1 +0,0 @@
|
|||
Add config option to block users from looking up 3PIDs.
|
|
@ -1 +0,0 @@
|
|||
Add context to phonehome stats.
|
|
@ -1 +0,0 @@
|
|||
Store the notary server name correctly in server_keys_json.
|
|
@ -1 +0,0 @@
|
|||
Add time-based account expiration.
|
|
@ -1 +0,0 @@
|
|||
Remove a number of unused tables from the database schema.
|
|
@ -1 +0,0 @@
|
|||
Rewrite Datastore.get_server_verify_keys to reduce the number of database transactions.
|
|
@ -1 +0,0 @@
|
|||
Fix "cannot import name execute_batch" error with postgres.
|
|
@ -1 +0,0 @@
|
|||
Remove a number of unused tables from the database schema.
|
|
@ -1 +0,0 @@
|
|||
Fix disappearing exceptions in manhole.
|
|
@ -1 +0,0 @@
|
|||
Remove extraneous period from copyright headers.
|
|
@ -1 +0,0 @@
|
|||
Add time-based account expiration.
|
|
@ -1 +0,0 @@
|
|||
Add support for handling /verions, /voip and /push_rules client endpoints to client_reader worker.
|
|
@ -1 +0,0 @@
|
|||
Add support for handling /verions, /voip and /push_rules client endpoints to client_reader worker.
|
|
@ -1 +0,0 @@
|
|||
Update documentation for where to get Synapse packages.
|
|
@ -1 +0,0 @@
|
|||
Add support for handling /verions, /voip and /push_rules client endpoints to client_reader worker.
|
|
@ -1 +0,0 @@
|
|||
Make sure we're not registering the same 3pid twice on registration.
|
|
@ -1 +0,0 @@
|
|||
Add time-based account expiration.
|
|
@ -1 +0,0 @@
|
|||
Don't crash on lack of expiry templates.
|
1
changelog.d/5200.bugfix
Normal file
1
changelog.d/5200.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix worker registration bug caused by ClientReaderSlavedStore being unable to see get_profileinfo.
|
1
changelog.d/5216.misc
Normal file
1
changelog.d/5216.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Synapse will now serve the experimental "room complexity" API endpoint.
|
1
changelog.d/5220.feature
Normal file
1
changelog.d/5220.feature
Normal file
|
@ -0,0 +1 @@
|
|||
Add experimental support for relations (aka reactions and edits).
|
1
changelog.d/5223.feature
Normal file
1
changelog.d/5223.feature
Normal file
|
@ -0,0 +1 @@
|
|||
Ability to configure default room version.
|
1
changelog.d/5226.misc
Normal file
1
changelog.d/5226.misc
Normal file
|
@ -0,0 +1 @@
|
|||
The base classes for the v1 and v2_alpha REST APIs have been unified.
|
1
changelog.d/5227.misc
Normal file
1
changelog.d/5227.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Simplifications and comments in do_auth.
|
1
changelog.d/5230.misc
Normal file
1
changelog.d/5230.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Remove urllib3 pin as requests 2.22.0 has been released supporting urllib3 1.25.2.
|
1
changelog.d/5232.misc
Normal file
1
changelog.d/5232.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Run black on synapse.crypto.keyring.
|
1
changelog.d/5233.bugfix
Normal file
1
changelog.d/5233.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix appservice timestamp massaging.
|
1
changelog.d/5234.misc
Normal file
1
changelog.d/5234.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Rewrite store_server_verify_key to store several keys at once.
|
1
changelog.d/5235.misc
Normal file
1
changelog.d/5235.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Remove unused VerifyKey.expired and .time_added fields.
|
1
changelog.d/5236.misc
Normal file
1
changelog.d/5236.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Simplify Keyring.process_v2_response.
|
1
changelog.d/5237.misc
Normal file
1
changelog.d/5237.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Store key validity time in the storage layer.
|
1
changelog.d/5244.misc
Normal file
1
changelog.d/5244.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Refactor synapse.crypto.keyring to use a KeyFetcher interface.
|
1
changelog.d/5249.feature
Normal file
1
changelog.d/5249.feature
Normal file
|
@ -0,0 +1 @@
|
|||
Ability to configure default room version.
|
1
changelog.d/5250.misc
Normal file
1
changelog.d/5250.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Simplification to Keyring.wait_for_previous_lookups.
|
1
changelog.d/5251.bugfix
Normal file
1
changelog.d/5251.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Ensure that server_keys fetched via a notary server are correctly signed.
|
1
changelog.d/5256.bugfix
Normal file
1
changelog.d/5256.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Show the correct error when logging out and access token is missing.
|
1
changelog.d/5257.bugfix
Normal file
1
changelog.d/5257.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix error code when there is an invalid parameter on /_matrix/client/r0/publicRooms
|
1
changelog.d/5258.bugfix
Normal file
1
changelog.d/5258.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix error when downloading thumbnail with missing width/height parameter.
|
1
changelog.d/5260.feature
Normal file
1
changelog.d/5260.feature
Normal file
|
@ -0,0 +1 @@
|
|||
Synapse now more efficiently collates room statistics.
|
1
changelog.d/5268.bugfix
Normal file
1
changelog.d/5268.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix schema update for account validity.
|
1
changelog.d/5274.bugfix
Normal file
1
changelog.d/5274.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug where we leaked extremities when we soft failed events, leading to performance degradation.
|
1
changelog.d/5275.bugfix
Normal file
1
changelog.d/5275.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix "db txn 'update_presence' from sentinel context" log messages.
|
1
changelog.d/5276.feature
Normal file
1
changelog.d/5276.feature
Normal file
|
@ -0,0 +1 @@
|
|||
Allow configuring a range for the account validity startup job.
|
1
changelog.d/5277.bugfix
Normal file
1
changelog.d/5277.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix dropped logcontexts during high outbound traffic.
|
1
changelog.d/5278.bugfix
Normal file
1
changelog.d/5278.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug where we leaked extremities when we soft failed events, leading to performance degradation.
|
1
changelog.d/5282.doc
Normal file
1
changelog.d/5282.doc
Normal file
|
@ -0,0 +1 @@
|
|||
Fix docs on resetting the user directory.
|
1
changelog.d/5283.misc
Normal file
1
changelog.d/5283.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Specify the type of reCAPTCHA key to use.
|
1
changelog.d/5286.feature
Normal file
1
changelog.d/5286.feature
Normal file
|
@ -0,0 +1 @@
|
|||
CAS login will now hit the r0 API, not the deprecated v1 one.
|
1
changelog.d/5287.misc
Normal file
1
changelog.d/5287.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Remove spurious debug from MatrixFederationHttpClient.get_json.
|
1
changelog.d/5288.misc
Normal file
1
changelog.d/5288.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Improve logging for logcontext leaks.
|
1
changelog.d/5291.bugfix
Normal file
1
changelog.d/5291.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug where we leaked extremities when we soft failed events, leading to performance degradation.
|
1
changelog.d/5293.bugfix
Normal file
1
changelog.d/5293.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix a bug where it is not possible to get events in the federation format with the request `GET /_matrix/client/r0/rooms/{roomId}/messages`.
|
1
changelog.d/5294.bugfix
Normal file
1
changelog.d/5294.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix performance problems with the rooms stats background update.
|
1
changelog.d/5296.misc
Normal file
1
changelog.d/5296.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Refactor keyring.VerifyKeyRequest to use attr.s.
|
1
changelog.d/5299.misc
Normal file
1
changelog.d/5299.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Rewrite get_server_verify_keys, again.
|
1
changelog.d/5300.bugfix
Normal file
1
changelog.d/5300.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix noisy 'no key for server' logs.
|
1
changelog.d/5303.misc
Normal file
1
changelog.d/5303.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Clarify that the admin change password API logs the user out.
|
1
changelog.d/5307.bugfix
Normal file
1
changelog.d/5307.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug where a notary server would sometimes forget old keys.
|
1
changelog.d/5309.bugfix
Normal file
1
changelog.d/5309.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Prevent users from setting huge displaynames and avatar URLs.
|
1
changelog.d/5321.bugfix
Normal file
1
changelog.d/5321.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Ensure that we have an up-to-date copy of the signing key when validating incoming federation requests.
|
1
changelog.d/5324.feature
Normal file
1
changelog.d/5324.feature
Normal file
|
@ -0,0 +1 @@
|
|||
Synapse now more efficiently collates room statistics.
|
1
changelog.d/5328.misc
Normal file
1
changelog.d/5328.misc
Normal file
|
@ -0,0 +1 @@
|
|||
The base classes for the v1 and v2_alpha REST APIs have been unified.
|
1
changelog.d/5332.misc
Normal file
1
changelog.d/5332.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Improve docstrings on MatrixFederationClient.
|
1
changelog.d/5333.bugfix
Normal file
1
changelog.d/5333.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix various problems which made the signing-key notary server time out for some requests.
|
1
changelog.d/5334.bugfix
Normal file
1
changelog.d/5334.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix bug which would make certain operations (such as room joins) block for 20 minutes while attemoting to fetch verification keys.
|
1
changelog.d/5335.bugfix
Normal file
1
changelog.d/5335.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix a bug where we could rapidly mark a server as unreachable even though it was only down for a few minutes.
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue