Skip to content
Snippets Groups Projects
Commit ca90336a authored by Erik Johnston's avatar Erik Johnston
Browse files

Merge branch 'develop' of github.com:matrix-org/synapse into babolivier/account_expiration

parents eaf41a94 91934025
No related branches found
No related tags found
No related merge requests found
Showing
with 24 additions and 3 deletions
......@@ -257,13 +257,13 @@ 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://matrix.org/packages/debian/. To use them:
Synapse via https://packages.matrix.org/debian/. To use them:
```
sudo apt install -y lsb-release curl apt-transport-https
echo "deb https://matrix.org/packages/debian `lsb_release -cs` main" |
echo "deb https://packages.matrix.org/debian `lsb_release -cs` main" |
sudo tee /etc/apt/sources.list.d/matrix-org.list
curl "https://matrix.org/packages/debian/repo-key.asc" |
curl "https://packages.matrix.org/debian/repo-key.asc" |
sudo apt-key add -
sudo apt update
sudo apt install matrix-synapse-py3
......
Add systemd-python to the optional dependencies to enable logging to the systemd journal. Install with `pip install matrix-synapse[systemd]`.
Add test to verify threepid auth check added in #4435.
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)").
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.
Add ability for password provider modules to bind email addresses to users upon registration.
\ No newline at end of file
Fix/improve some docstrings in the replication code.
Split synapse.replication.tcp.streams into smaller files.
Refactor replication row generation/parsing.
Fix sync bug which made accepting invites unreliable in worker-mode synapses.
Fix sync bug which made accepting invites unreliable in worker-mode synapses.
Run `black` to clean up formatting on `synapse/storage/roommember.py` and `synapse/storage/events.py`.
\ No newline at end of file
Remove log line for password via the admin API.
Fix typo in TLS filenames in docker/README.md. Also add the '-p' commandline option to the 'docker run' example. Contributed by Jurrie Overgoor.
Refactor room version definitions.
Add `config.signing_key_path` that can be read by `synapse.config` utility.
start.sh: Fix the --no-rate-limit option for messages and make it bypass rate limit on registration and login too.
\ No newline at end of file
Track which identity server is used when binding a threepid and use that for unbinding, as per MSC1915.
Rewrite KeyringTestCase as a HomeserverTestCase.
README updates: Corrected the default POSTGRES_USER. Added port forwarding hint in TLS section.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment