0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-14 00:28:25 +02:00

1.12.0rc1

This commit is contained in:
Richard van der Hoff 2020-03-19 11:07:16 +00:00
parent 782b811789
commit e43e78b985
60 changed files with 78 additions and 59 deletions

View file

@ -1,3 +1,80 @@
Synapse 1.12.0rc1 (2020-03-19)
==============================
Features
--------
- Changes related to room alias management ([MSC2432](https://github.com/matrix-org/matrix-doc/pull/2432):
- Publishing/removing a room from the room directory now requires the user to have a power level capable of modifying the canonical alias, instead of the room aliases. ([\#6965](https://github.com/matrix-org/synapse/issues/6965))
- Validate the alt_aliases property of canonical alias events. ([\#6971](https://github.com/matrix-org/synapse/issues/6971))
- Users with a power level sufficient to modify the canonical alias of a room can now delete room aliases. ([\#6986](https://github.com/matrix-org/synapse/issues/6986))
- Implement updated authorization rules and redaction rules for aliases events, from [MSC2261](https://github.com/matrix-org/matrix-doc/pull/2261) and [MSC2432](https://github.com/matrix-org/matrix-doc/pull/2432). ([\#7037](https://github.com/matrix-org/synapse/issues/7037))
- Stop sending m.room.aliases events during room creation and upgrade. ([\#6941](https://github.com/matrix-org/synapse/issues/6941))
- Synapse no longer uses room alias events to calculate room names for email notifications. ([\#6966](https://github.com/matrix-org/synapse/issues/6966))
- The room list endpoint no longer returns a list of aliases. ([\#6970](https://github.com/matrix-org/synapse/issues/6970))
- Remove special handling of aliases events from [MSC2260](https://github.com/matrix-org/matrix-doc/pull/2260) added in v1.10.0rc1. ([\#7034](https://github.com/matrix-org/synapse/issues/7034))
- Expose the `synctl`, `hash_password` and `generate_config` commands in the snapcraft package. Contributed by @devec0. ([\#6315](https://github.com/matrix-org/synapse/issues/6315))
- Check that server_name is correctly set before running database updates. ([\#6982](https://github.com/matrix-org/synapse/issues/6982))
- Break down monthly active users by `appservice_id` and emit via Prometheus. ([\#7030](https://github.com/matrix-org/synapse/issues/7030))
- Render a configurable and comprehensible error page if something goes wrong during the SAML2 authentication process. ([\#7058](https://github.com/matrix-org/synapse/issues/7058), [\#7067](https://github.com/matrix-org/synapse/issues/7067))
- Add an optional parameter to control whether other sessions are logged out when a user's password is modified. ([\#7085](https://github.com/matrix-org/synapse/issues/7085))
- Add prometheus metrics for the number of active pushers. ([\#7103](https://github.com/matrix-org/synapse/issues/7103), [\#7106](https://github.com/matrix-org/synapse/issues/7106))
- Improve performance when making HTTPS requests to sygnal, sydent, etc, by sharing the SSL context object between connections. ([\#7094](https://github.com/matrix-org/synapse/issues/7094))
Bugfixes
--------
- When a user's profile is updated via the admin API, also generate a displayname/avatar update for that user in each room. ([\#6572](https://github.com/matrix-org/synapse/issues/6572))
- Fix a couple of bugs in email configuration handling. ([\#6962](https://github.com/matrix-org/synapse/issues/6962))
- Fix an issue affecting worker-based deployments where replication would stop working, necessitating a full restart, after joining a large room. ([\#6967](https://github.com/matrix-org/synapse/issues/6967))
- Fix `duplicate key` error which was logged when rejoining a room over federation. ([\#6968](https://github.com/matrix-org/synapse/issues/6968))
- Prevent user from setting 'deactivated' to anything other than a bool on the v2 PUT /users Admin API. ([\#6990](https://github.com/matrix-org/synapse/issues/6990))
- Fix py35-old CI by using native tox package. ([\#7018](https://github.com/matrix-org/synapse/issues/7018))
- Fix a bug causing `org.matrix.dummy_event` to be included in responses from `/sync`. ([\#7035](https://github.com/matrix-org/synapse/issues/7035))
- Fix a bug that renders UTF-8 text files incorrectly when loaded from media. Contributed by @TheStranjer. ([\#7044](https://github.com/matrix-org/synapse/issues/7044))
- Fix a bug that would cause Synapse to respond with an error about event visibility if a client tried to request the state of a room at a given token. ([\#7066](https://github.com/matrix-org/synapse/issues/7066))
- Repair a data-corruption issue which was introduced in Synapse 1.10, and fixed in Synapse 1.11, and which could cause `/sync` to return with 404 errors about missing events and unknown rooms. ([\#7070](https://github.com/matrix-org/synapse/issues/7070))
- Fix a bug causing account validity renewal emails to be sent even if the feature is turned off in some cases. ([\#7074](https://github.com/matrix-org/synapse/issues/7074))
Improved Documentation
----------------------
- Updated CentOS8 install instructions. Contributed by Richard Kellner. ([\#6925](https://github.com/matrix-org/synapse/issues/6925))
- Fix `POSTGRES_INITDB_ARGS` in the `contrib/docker/docker-compose.yml` example docker-compose configuration. ([\#6984](https://github.com/matrix-org/synapse/issues/6984))
- Document that the fallback auth endpoints must be routed to the same worker node as the register endpoints. ([\#7048](https://github.com/matrix-org/synapse/issues/7048))
Deprecations and Removals
-------------------------
- Remove the unused query_auth federation endpoint per MSC2451. ([\#7026](https://github.com/matrix-org/synapse/issues/7026))
Internal Changes
----------------
- Add type hints to `logging/context.py`. ([\#6309](https://github.com/matrix-org/synapse/issues/6309))
- Add some clarifications to `README.md` in the database schema directory. ([\#6615](https://github.com/matrix-org/synapse/issues/6615))
- Refactoring work in preparation for changing the event redaction algorithm. ([\#6874](https://github.com/matrix-org/synapse/issues/6874), [\#6875](https://github.com/matrix-org/synapse/issues/6875), [\#6983](https://github.com/matrix-org/synapse/issues/6983), [\#7003](https://github.com/matrix-org/synapse/issues/7003))
- Improve performance of v2 state resolution for large rooms. ([\#6952](https://github.com/matrix-org/synapse/issues/6952), [\#7095](https://github.com/matrix-org/synapse/issues/7095))
- Reduce time spent doing GC, by freezing objects on startup. ([\#6953](https://github.com/matrix-org/synapse/issues/6953))
- Minor perfermance fixes to `get_auth_chain_ids`. ([\#6954](https://github.com/matrix-org/synapse/issues/6954))
- Don't record remote cross-signing keys in the `devices` table. ([\#6956](https://github.com/matrix-org/synapse/issues/6956))
- Use flake8-comprehensions to enforce good hygiene of list/set/dict comprehensions. ([\#6957](https://github.com/matrix-org/synapse/issues/6957))
- Merge worker apps together. ([\#6964](https://github.com/matrix-org/synapse/issues/6964), [\#7002](https://github.com/matrix-org/synapse/issues/7002), [\#7055](https://github.com/matrix-org/synapse/issues/7055), [\#7104](https://github.com/matrix-org/synapse/issues/7104))
- Remove redundant `store_room` call from `FederationHandler._process_received_pdu`. ([\#6979](https://github.com/matrix-org/synapse/issues/6979))
- Update warning for incorrect database collation/ctype to include link to documentation. ([\#6985](https://github.com/matrix-org/synapse/issues/6985))
- Add some type annotations to the database storage classes. ([\#6987](https://github.com/matrix-org/synapse/issues/6987))
- Port `synapse.handlers.presence` to async/await. ([\#6991](https://github.com/matrix-org/synapse/issues/6991), [\#7019](https://github.com/matrix-org/synapse/issues/7019))
- Add some type annotations to the federation base & client classes. ([\#6995](https://github.com/matrix-org/synapse/issues/6995))
- Change date in [INSTALL.md#tls-certificates] for last date of getting TLS certificates to November 2019. ([\#7015](https://github.com/matrix-org/synapse/issues/7015))
- Port `synapse.rest.keys` to async/await. ([\#7020](https://github.com/matrix-org/synapse/issues/7020))
- Add a type check to `is_verified` when processing room keys. ([\#7045](https://github.com/matrix-org/synapse/issues/7045))
- Add type annotations and comments to the auth handler. ([\#7063](https://github.com/matrix-org/synapse/issues/7063))
Synapse 1.11.1 (2020-03-03)
===========================

View file

@ -1 +0,0 @@
Add type hints to `logging/context.py`.

View file

@ -1 +0,0 @@
Expose the `synctl`, `hash_password` and `generate_config` commands in the snapcraft package. Contributed by @devec0.

View file

@ -1 +0,0 @@
When a user's profile is updated via the admin API, also generate a displayname/avatar update for that user in each room.

View file

@ -1 +0,0 @@
Add some clarifications to `README.md` in the database schema directory.

View file

@ -1 +0,0 @@
Refactoring work in preparation for changing the event redaction algorithm.

View file

@ -1 +0,0 @@
Refactoring work in preparation for changing the event redaction algorithm.

View file

@ -1 +0,0 @@
Updated CentOS8 install instructions. Contributed by Richard Kellner.

View file

@ -1 +0,0 @@
Stop sending m.room.aliases events during room creation and upgrade.

View file

@ -1 +0,0 @@
Improve perf of v2 state res for large rooms.

View file

@ -1 +0,0 @@
Reduce time spent doing GC by freezing objects on startup.

View file

@ -1 +0,0 @@
Minor perf fixes to `get_auth_chain_ids`.

View file

@ -1 +0,0 @@
Don't record remote cross-signing keys in the `devices` table.

View file

@ -1 +0,0 @@
Use flake8-comprehensions to enforce good hygiene of list/set/dict comprehensions.

View file

@ -1 +0,0 @@
Fix a couple of bugs in email configuration handling.

View file

@ -1 +0,0 @@
Merge worker apps together.

View file

@ -1 +0,0 @@
Publishing/removing a room from the room directory now requires the user to have a power level capable of modifying the canonical alias, instead of the room aliases.

View file

@ -1 +0,0 @@
Synapse no longer uses room alias events to calculate room names for email notifications.

View file

@ -1 +0,0 @@
Fix an issue affecting worker-based deployments where replication would stop working, necessitating a full restart, after joining a large room.

View file

@ -1 +0,0 @@
Fix `duplicate key` error which was logged when rejoining a room over federation.

View file

@ -1 +0,0 @@
The room list endpoint no longer returns a list of aliases.

View file

@ -1 +0,0 @@
Validate the alt_aliases property of canonical alias events.

View file

@ -1 +0,0 @@
Remove redundant `store_room` call from `FederationHandler._process_received_pdu`.

View file

@ -1 +0,0 @@
Check that server_name is correctly set before running database updates.

View file

@ -1 +0,0 @@
Refactoring work in preparation for changing the event redaction algorithm.

View file

@ -1 +0,0 @@
Fix `POSTGRES_INITDB_ARGS` in the `contrib/docker/docker-compose.yml` example docker-compose configuration.

View file

@ -1 +0,0 @@
Update warning for incorrect database collation/ctype to include link to documentation.

View file

@ -1 +0,0 @@
Users with a power level sufficient to modify the canonical alias of a room can now delete room aliases.

View file

@ -1 +0,0 @@
Add some type annotations to the database storage classes.

View file

@ -1 +0,0 @@
Prevent user from setting 'deactivated' to anything other than a bool on the v2 PUT /users Admin API.

View file

@ -1 +0,0 @@
Port `synapse.handlers.presence` to async/await.

View file

@ -1 +0,0 @@
Add some type annotations to the federation base & client classes.

View file

@ -1 +0,0 @@
Merge worker apps together.

View file

@ -1 +0,0 @@
Refactoring work in preparation for changing the event redaction algorithm.

View file

@ -1 +0,0 @@
Change date in INSTALL.md#tls-certificates for last date of getting TLS certificates to November 2019.

View file

@ -1 +0,0 @@
Fix py35-old CI by using native tox package.

View file

@ -1 +0,0 @@
Port `synapse.handlers.presence` to async/await.

View file

@ -1 +0,0 @@
Port `synapse.rest.keys` to async/await.

View file

@ -1 +0,0 @@
Remove the unused query_auth federation endpoint per MSC2451.

View file

@ -1 +0,0 @@
Break down monthly active users by `appservice_id` and emit via Prometheus.

View file

@ -1 +0,0 @@
Remove special handling of aliases events from [MSC2260](https://github.com/matrix-org/matrix-doc/pull/2260) added in v1.10.0rc1.

View file

@ -1 +0,0 @@
Fix a bug causing `org.matrix.dummy_event` to be included in responses from `/sync`.

View file

@ -1 +0,0 @@
Implement updated authorization rules and redaction rules for aliases events, from [MSC2261](https://github.com/matrix-org/matrix-doc/pull/2261) and [MSC2432](https://github.com/matrix-org/matrix-doc/pull/2432).

View file

@ -1 +0,0 @@
Fix a bug that renders UTF-8 text files incorrectly when loaded from media. Contributed by @TheStranjer.

View file

@ -1 +0,0 @@
Add a type check to `is_verified` when processing room keys.

View file

@ -1 +0,0 @@
Document that the fallback auth endpoints must be routed to the same worker node as the register endpoints.

View file

@ -1 +0,0 @@
Merge worker apps together.

View file

@ -1 +0,0 @@
Render a configurable and comprehensible error page if something goes wrong during the SAML2 authentication process.

View file

@ -1 +0,0 @@
Add type annotations and comments to the auth handler.

View file

@ -1 +0,0 @@
Fix a bug that would cause Synapse to respond with an error about event visibility if a client tried to request the state of a room at a given token.

View file

@ -1 +0,0 @@
Render a configurable and comprehensible error page if something goes wrong during the SAML2 authentication process.

View file

@ -1 +0,0 @@
Repair a data-corruption issue which was introduced in Synapse 1.10, and fixed in Synapse 1.11, and which could cause `/sync` to return with 404 errors about missing events and unknown rooms.

View file

@ -1 +0,0 @@
Fix a bug causing account validity renewal emails to be sent even if the feature is turned off in some cases.

View file

@ -1 +0,0 @@
Add an optional parameter to control whether other sessions are logged out when a user's password is modified.

View file

@ -1 +0,0 @@
Improve performance when making HTTPS requests to sygnal, sydent, etc, by sharing the SSL context object between connections.

View file

@ -1 +0,0 @@
Attempt to improve performance of state res v2 algorithm.

View file

@ -1 +0,0 @@
Add prometheus metrics for the number of active pushers.

View file

@ -1 +0,0 @@
Merge worker apps together.

View file

@ -1 +0,0 @@
Add prometheus metrics for the number of active pushers.

View file

@ -36,7 +36,7 @@ try:
except ImportError:
pass
__version__ = "1.11.1"
__version__ = "1.12.0rc1"
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
# We import here so that we don't have to install a bunch of deps when