forked from MirrorHub/synapse
1.30.0rc1
This commit is contained in:
parent
847ecdd8fa
commit
d315e96443
46 changed files with 71 additions and 45 deletions
70
CHANGES.md
70
CHANGES.md
|
@ -1,3 +1,73 @@
|
||||||
|
Synapse 1.30.0rc1 (2021-03-16)
|
||||||
|
==============================
|
||||||
|
|
||||||
|
Features
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Add prometheus metrics for number of users successfully registering and logging in. ([\#9510](https://github.com/matrix-org/synapse/issues/9510), [\#9511](https://github.com/matrix-org/synapse/issues/9511), [\#9573](https://github.com/matrix-org/synapse/issues/9573))
|
||||||
|
- Add `synapse_federation_last_sent_pdu_time` and `synapse_federation_last_received_pdu_time` prometheus metrics, which monitor federation delays by reporting the timestamps of messages sent and received to a set of remote servers. ([\#9540](https://github.com/matrix-org/synapse/issues/9540))
|
||||||
|
- Add support for generating JSON Web Tokens dynamically for use as OIDC client secrets. ([\#9549](https://github.com/matrix-org/synapse/issues/9549))
|
||||||
|
- Optimise handling of incomplete room history for incoming federation. ([\#9601](https://github.com/matrix-org/synapse/issues/9601))
|
||||||
|
- Finalise support for allowing clients to pick an SSO Identity Provider ([MSC2858](https://github.com/matrix-org/matrix-doc/pull/2858)). ([\#9617](https://github.com/matrix-org/synapse/issues/9617))
|
||||||
|
- Tell spam checker modules about the SSO IdP a user registered through if one was used. ([\#9626](https://github.com/matrix-org/synapse/issues/9626))
|
||||||
|
|
||||||
|
|
||||||
|
Bugfixes
|
||||||
|
--------
|
||||||
|
|
||||||
|
- Fix long-standing bug when generating thumbnails for some images with transparency: `TypeError: cannot unpack non-iterable int object`. ([\#9473](https://github.com/matrix-org/synapse/issues/9473))
|
||||||
|
- Purge chain cover indexes for events that were purged prior to Synapse v1.29.0. ([\#9542](https://github.com/matrix-org/synapse/issues/9542), [\#9583](https://github.com/matrix-org/synapse/issues/9583))
|
||||||
|
- Fix bug where federation requests were not correctly retried on 5xx responses. ([\#9567](https://github.com/matrix-org/synapse/issues/9567))
|
||||||
|
- Re-Activating account with admin API when local passwords are disabled. ([\#9587](https://github.com/matrix-org/synapse/issues/9587))
|
||||||
|
- Fix a bug introduced in Synapse 1.20 which caused incoming federation transactions to stack up, causing slow recovery from outages. ([\#9597](https://github.com/matrix-org/synapse/issues/9597))
|
||||||
|
- Fix a bug introduced in v1.28.0 where the OpenID Connect callback endpoint could error with a `MacaroonInitException`. ([\#9620](https://github.com/matrix-org/synapse/issues/9620))
|
||||||
|
- Fix Internal Server Error on `GET /_synapse/client/saml2/authn_response` request. ([\#9623](https://github.com/matrix-org/synapse/issues/9623))
|
||||||
|
|
||||||
|
|
||||||
|
Updates to the Docker image
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
- Use jemalloc if available in docker. ([\#8553](https://github.com/matrix-org/synapse/issues/8553))
|
||||||
|
|
||||||
|
|
||||||
|
Improved Documentation
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
- Add relayd entry to reverse proxy example configurations. ([\#9508](https://github.com/matrix-org/synapse/issues/9508))
|
||||||
|
- Improve the SAML2 upgrade notes for 1.27.0. ([\#9550](https://github.com/matrix-org/synapse/issues/9550))
|
||||||
|
- Link to the "List user's media" admin API from the media admin API docs. ([\#9571](https://github.com/matrix-org/synapse/issues/9571))
|
||||||
|
- Clarify the spam checker modules documentation example to mention that `parse_config` is a required method. ([\#9580](https://github.com/matrix-org/synapse/issues/9580))
|
||||||
|
- Clarify the sample configuration for `stats` settings. ([\#9604](https://github.com/matrix-org/synapse/issues/9604))
|
||||||
|
|
||||||
|
|
||||||
|
Deprecations and Removals
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
- The `synapse_federation_last_sent_pdu_age` and `synapse_federation_last_received_pdu_age` prometheus metrics have been removed. They are replaced by `synapse_federation_last_sent_pdu_time` and `synapse_federation_last_received_pdu_time`. ([\#9540](https://github.com/matrix-org/synapse/issues/9540))
|
||||||
|
- Registering an Application Service user without using the `m.login.application_service` login type will be unsupported in an upcoming Synapse release. ([\#9559](https://github.com/matrix-org/synapse/issues/9559))
|
||||||
|
|
||||||
|
|
||||||
|
Internal Changes
|
||||||
|
----------------
|
||||||
|
|
||||||
|
- Add tests to ResponseCache. ([\#9458](https://github.com/matrix-org/synapse/issues/9458))
|
||||||
|
- Add type hints to purge room and server notice admin API. ([\#9520](https://github.com/matrix-org/synapse/issues/9520))
|
||||||
|
- Add extra logging to ObservableDeferred when callbacks throw exceptions. ([\#9523](https://github.com/matrix-org/synapse/issues/9523))
|
||||||
|
- Fix incorrect type hints. ([\#9528](https://github.com/matrix-org/synapse/issues/9528), [\#9543](https://github.com/matrix-org/synapse/issues/9543), [\#9591](https://github.com/matrix-org/synapse/issues/9591), [\#9608](https://github.com/matrix-org/synapse/issues/9608), [\#9618](https://github.com/matrix-org/synapse/issues/9618))
|
||||||
|
- Add an additional test for purging a room. ([\#9541](https://github.com/matrix-org/synapse/issues/9541))
|
||||||
|
- Add a `.git-blame-ignore-revs` file with the hashes of auto-formatting. ([\#9560](https://github.com/matrix-org/synapse/issues/9560))
|
||||||
|
- Increase the threshold before which outbound federation to a server goes into "catch up" mode, which is expensive for the remote server to handle. ([\#9561](https://github.com/matrix-org/synapse/issues/9561))
|
||||||
|
- Fix spurious errors reported by the `config-lint.sh` script. ([\#9562](https://github.com/matrix-org/synapse/issues/9562))
|
||||||
|
- Fix type hints and tests for BlacklistingAgentWrapper and BlacklistingReactorWrapper. ([\#9563](https://github.com/matrix-org/synapse/issues/9563))
|
||||||
|
- Do not have mypy ignore type hints from unpaddedbase64. ([\#9568](https://github.com/matrix-org/synapse/issues/9568))
|
||||||
|
- Improve efficiency of calculating the auth chain in large rooms. ([\#9576](https://github.com/matrix-org/synapse/issues/9576))
|
||||||
|
- Convert `synapse.types.Requester` to an `attrs` class. ([\#9586](https://github.com/matrix-org/synapse/issues/9586))
|
||||||
|
- Add logging for redis connection setup. ([\#9590](https://github.com/matrix-org/synapse/issues/9590))
|
||||||
|
- Improve logging when processing incoming transactions. ([\#9596](https://github.com/matrix-org/synapse/issues/9596))
|
||||||
|
- Remove unused `stats.retention` setting, and emit a warning if stats are disabled. ([\#9604](https://github.com/matrix-org/synapse/issues/9604))
|
||||||
|
- Prevent attempting to bundle aggregations for state events in /context APIs. ([\#9619](https://github.com/matrix-org/synapse/issues/9619))
|
||||||
|
|
||||||
|
|
||||||
Removal warning
|
Removal warning
|
||||||
---------------
|
---------------
|
||||||
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Use jemalloc if available in docker.
|
|
|
@ -1 +0,0 @@
|
||||||
Add tests to ResponseCache.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix long-standing bug when generating thumbnails for some images with transparency: `TypeError: cannot unpack non-iterable int object`.
|
|
|
@ -1 +0,0 @@
|
||||||
Add relayd entry to reverse proxy example configurations.
|
|
|
@ -1 +0,0 @@
|
||||||
Add prometheus metrics for number of users successfully registering and logging in.
|
|
|
@ -1 +0,0 @@
|
||||||
Add prometheus metrics for number of users successfully registering and logging in.
|
|
|
@ -1 +0,0 @@
|
||||||
Add type hints to purge room and server notice admin API.
|
|
|
@ -1 +0,0 @@
|
||||||
Add extra logging to ObservableDeferred when callbacks throw exceptions.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix incorrect type hints.
|
|
|
@ -1 +0,0 @@
|
||||||
Add `synapse_federation_last_sent_pdu_time` and `synapse_federation_last_received_pdu_time` prometheus metrics, which monitor federation delays by reporting the timestamps of messages sent and received to a set of remote servers.
|
|
|
@ -1 +0,0 @@
|
||||||
The `synapse_federation_last_sent_pdu_age` and `synapse_federation_last_received_pdu_age` prometheus metrics have been removed. They are replaced by `synapse_federation_last_sent_pdu_time` and `synapse_federation_last_received_pdu_time`.
|
|
|
@ -1 +0,0 @@
|
||||||
Add an additional test for purging a room.
|
|
|
@ -1 +0,0 @@
|
||||||
Purge chain cover indexes for events that were purged prior to Synapse v1.29.0.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix incorrect type hints.
|
|
|
@ -1 +0,0 @@
|
||||||
Add support for generating JSON Web Tokens dynamically for use as OIDC client secrets.
|
|
|
@ -1 +0,0 @@
|
||||||
Improve the SAML2 upgrade notes for 1.27.0.
|
|
|
@ -1 +0,0 @@
|
||||||
Registering an Application Service user without using the `m.login.application_service` login type will be unsupported in an upcoming Synapse release.
|
|
|
@ -1 +0,0 @@
|
||||||
Add a `.git-blame-ignore-revs` file with the hashes of auto-formatting.
|
|
|
@ -1 +0,0 @@
|
||||||
Increase the threshold before which outbound federation to a server goes into "catch up" mode, which is expensive for the remote server to handle.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix spurious errors reported by the `config-lint.sh` script.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix type hints and tests for BlacklistingAgentWrapper and BlacklistingReactorWrapper.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix bug where federation requests were not correctly retried on 5xx responses.
|
|
|
@ -1 +0,0 @@
|
||||||
Do not have mypy ignore type hints from unpaddedbase64.
|
|
|
@ -1 +0,0 @@
|
||||||
Link to the "List user's media" admin API from the media admin API docs.
|
|
|
@ -1 +0,0 @@
|
||||||
Add prometheus metrics for number of users successfully registering and logging in.
|
|
|
@ -1 +0,0 @@
|
||||||
Improve efficiency of calculating the auth chain in large rooms.
|
|
|
@ -1 +0,0 @@
|
||||||
Clarify the spam checker modules documentation example to mention that `parse_config` is a required method.
|
|
|
@ -1 +0,0 @@
|
||||||
Purge chain cover indexes for events that were purged prior to Synapse v1.29.0.
|
|
|
@ -1 +0,0 @@
|
||||||
Convert `synapse.types.Requester` to an `attrs` class.
|
|
|
@ -1 +0,0 @@
|
||||||
Re-Activating account with admin API when local passwords are disabled.
|
|
|
@ -1 +0,0 @@
|
||||||
Add logging for redis connection setup.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix incorrect type hints.
|
|
|
@ -1 +0,0 @@
|
||||||
Improve logging when processing incoming transactions.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix a bug introduced in Synapse 1.20 which caused incoming federation transactions to stack up, causing slow recovery from outages.
|
|
|
@ -1 +0,0 @@
|
||||||
Optimise handling of incomplete room history for incoming federation.
|
|
|
@ -1 +0,0 @@
|
||||||
Clarify the sample configuration for `stats` settings.
|
|
|
@ -1 +0,0 @@
|
||||||
Remove unused `stats.retention` setting, and emit a warning if stats are disabled.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix incorrect type hints.
|
|
|
@ -1 +0,0 @@
|
||||||
Finalise support for allowing clients to pick an SSO Identity Provider ([MSC2858](https://github.com/matrix-org/matrix-doc/pull/2858)).
|
|
|
@ -1 +0,0 @@
|
||||||
Fix incorrect type hints.
|
|
|
@ -1 +0,0 @@
|
||||||
Prevent attempting to bundle aggregations for state events in /context APIs.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix a bug introduced in v1.28.0 where the OpenID Connect callback endpoint could error with a `MacaroonInitException`.
|
|
|
@ -1 +0,0 @@
|
||||||
Fix Internal Server Error on `GET /_synapse/client/saml2/authn_response` request.
|
|
|
@ -1 +0,0 @@
|
||||||
Tell spam checker modules about the SSO IdP a user registered through if one was used.
|
|
|
@ -48,7 +48,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
__version__ = "1.29.0"
|
__version__ = "1.30.0rc1"
|
||||||
|
|
||||||
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
|
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
|
# We import here so that we don't have to install a bunch of deps when
|
||||||
|
|
Loading…
Reference in a new issue