Update matrixdotorg/synapse Docker tag to v1.37.0 (main) #14

Merged
renovate-bot merged 1 commits from renovate/main-docker-matrixdotorg-synapse-1.x into main 2021-06-30 07:02:26 +00:00
Member

This PR contains the following updates:

Package Update Change
matrixdotorg/synapse minor v1.36.0 -> v1.37.0

Release Notes

matrix-org/synapse

v1.37.0

Compare Source

Synapse 1.37.0 (2021-06-29)

This release deprecates the current spam checker interface. See the upgrade notes for more information on how to update to the new generic module interface.

This release also removes support for fetching and renewing TLS certificates using the ACME v1 protocol, which has been fully decommissioned by Let's Encrypt on June 1st 2021. Admins previously using this feature should use a reverse proxy to handle TLS termination, or use an external ACME client (such as certbot) to retrieve a certificate and key and provide them to Synapse using the tls_certificate_path and tls_private_key_path configuration settings.

Synapse 1.37.0rc1 (2021-06-24)

Features

  • Implement "room knocking" as per MSC2403. Contributed by @​Sorunome and anoa. (#​6739, #​9359, #​10167, #​10212, #​10227)
  • Add experimental support for backfilling history into rooms (MSC2716). (#​9247)
  • Implement a generic interface for third-party plugin modules. (#​10062, #​10206)
  • Implement config option sso.update_profile_information to sync SSO users' profile information with the identity provider each time they login. Currently only displayname is supported. (#​10108)
  • Ensure that errors during startup are written to the logs and the console. (#​10191)

Bugfixes

  • Fix a bug introduced in Synapse v1.25.0 that prevented the ip_range_whitelist configuration option from working for federation and identity servers. Contributed by @​mikure. (#​10115)
  • Remove a broken import line in Synapse's admin_cmd worker. Broke in Synapse v1.33.0. (#​10154)
  • Fix a bug introduced in Synapse v1.21.0 which could cause /sync to return immediately with an empty response. (#​10157, #​10158)
  • Fix a minor bug in the response to /_matrix/client/r0/user/{user}/openid/request_token causing expires_in to be a float instead of an integer. Contributed by @​lukaslihotzki. (#​10175)
  • Always require users to re-authenticate for dangerous operations: deactivating an account, modifying an account password, and adding 3PIDs. (#​10184)
  • Fix a bug introduced in Synpase v1.7.2 where remote server count metrics collection would be incorrectly delayed on startup. Found by @​heftig. (#​10195)
  • Fix a bug introduced in Synapse v1.35.1 where an allow key of a m.room.join_rules event could be applied for incorrect room versions and configurations. (#​10208)
  • Fix performance regression in responding to user key requests over federation. Introduced in Synapse v1.34.0rc1. (#​10221)

Improved Documentation

  • Add a new guide to decoding request logs. (#​8436)
  • Mention in the sample homeserver config that you may need to configure max upload size in your reverse proxy. Contributed by @​aaronraimist. (#​10122)
  • Fix broken links in documentation. (#​10180)
  • Deploy a snapshot of the documentation website upon each new Synapse release. (#​10198)

Deprecations and Removals

  • The current spam checker interface is deprecated in favour of a new generic modules system. See the upgrade notes for more information on how to update to the new system. (#​10062, #​10210, #​10238)
  • Stop supporting the unstable spaces prefixes from MSC1772. (#​10161)
  • Remove Synapse's support for automatically fetching and renewing certificates using the ACME v1 protocol. This protocol has been fully turned off by Let's Encrypt for existing installations on June 1st 2021. Admins previously using this feature should use a reverse proxy to handle TLS termination, or use an external ACME client (such as certbot) to retrieve a certificate and key and provide them to Synapse using the tls_certificate_path and tls_private_key_path configuration settings. (#​10194)

Internal Changes

  • Update the database schema versioning to support gradual migration away from legacy tables. (#​9933)
  • Add type hints to the federation servlets. (#​10080)
  • Improve OpenTracing for event persistence. (#​10134, #​10193)
  • Clean up the interface for injecting OpenTracing over HTTP. (#​10143)
  • Limit the number of in-flight /keys/query requests from a single device. (#​10144)
  • Refactor EventPersistenceQueue. (#​10145)
  • Document SYNAPSE_TEST_LOG_LEVEL to see the logger output when running tests. (#​10148)
  • Update the Complement build tags in GitHub Actions to test currently experimental features. (#​10155)
  • Add a synapse_federation_soft_failed_events_total metric to track how often events are soft failed. (#​10156)
  • Fetch the corresponding complement branch when performing CI. (#​10160)
  • Add some developer documentation about boolean columns in database schemas. (#​10164)
  • Add extra logging fields to better debug where events are being soft failed. (#​10168)
  • Add debug logging for when we enter and exit Measure blocks. (#​10183)
  • Improve comments in structured logging code. (#​10188)
  • Update MSC3083 support with modifications from the MSC. (#​10189)
  • Remove redundant DNS lookup limiter. (#​10190)
  • Upgrade black linting tool to 21.6b0. (#​10197)
  • Expose OpenTracing trace id in response headers. (#​10199)

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Enabled.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [matrixdotorg/synapse](https://github.com/matrix-org/synapse) | minor | `v1.36.0` -> `v1.37.0` | --- ### Release Notes <details> <summary>matrix-org/synapse</summary> ### [`v1.37.0`](https://github.com/matrix-org/synapse/releases/v1.37.0) [Compare Source](https://github.com/matrix-org/synapse/compare/v1.36.0...v1.37.0) # Synapse 1.37.0 (2021-06-29) This release deprecates the current spam checker interface. See the [upgrade notes](https://matrix-org.github.io/synapse/develop/upgrade#deprecation-of-the-current-spam-checker-interface) for more information on how to update to the new generic module interface. This release also removes support for fetching and renewing TLS certificates using the ACME v1 protocol, which has been fully decommissioned by Let's Encrypt on June 1st 2021. Admins previously using this feature should use a [reverse proxy](https://matrix-org.github.io/synapse/develop/reverse_proxy.html) to handle TLS termination, or use an external ACME client (such as [certbot](https://certbot.eff.org/)) to retrieve a certificate and key and provide them to Synapse using the `tls_certificate_path` and `tls_private_key_path` configuration settings. # Synapse 1.37.0rc1 (2021-06-24) ## Features - Implement "room knocking" as per [MSC2403](https://github.com/matrix-org/matrix-doc/pull/2403). Contributed by [@&#8203;Sorunome](https://github.com/Sorunome) and anoa. ([#&#8203;6739](https://github.com/matrix-org/synapse/issues/6739), [#&#8203;9359](https://github.com/matrix-org/synapse/issues/9359), [#&#8203;10167](https://github.com/matrix-org/synapse/issues/10167), [#&#8203;10212](https://github.com/matrix-org/synapse/issues/10212), [#&#8203;10227](https://github.com/matrix-org/synapse/issues/10227)) - Add experimental support for backfilling history into rooms ([MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716)). ([#&#8203;9247](https://github.com/matrix-org/synapse/issues/9247)) - Implement a generic interface for third-party plugin modules. ([#&#8203;10062](https://github.com/matrix-org/synapse/issues/10062), [#&#8203;10206](https://github.com/matrix-org/synapse/issues/10206)) - Implement config option `sso.update_profile_information` to sync SSO users' profile information with the identity provider each time they login. Currently only displayname is supported. ([#&#8203;10108](https://github.com/matrix-org/synapse/issues/10108)) - Ensure that errors during startup are written to the logs and the console. ([#&#8203;10191](https://github.com/matrix-org/synapse/issues/10191)) ## Bugfixes - Fix a bug introduced in Synapse v1.25.0 that prevented the `ip_range_whitelist` configuration option from working for federation and identity servers. Contributed by [@&#8203;mikure](https://github.com/mikure). ([#&#8203;10115](https://github.com/matrix-org/synapse/issues/10115)) - Remove a broken import line in Synapse's `admin_cmd` worker. Broke in Synapse v1.33.0. ([#&#8203;10154](https://github.com/matrix-org/synapse/issues/10154)) - Fix a bug introduced in Synapse v1.21.0 which could cause `/sync` to return immediately with an empty response. ([#&#8203;10157](https://github.com/matrix-org/synapse/issues/10157), [#&#8203;10158](https://github.com/matrix-org/synapse/issues/10158)) - Fix a minor bug in the response to `/_matrix/client/r0/user/{user}/openid/request_token` causing `expires_in` to be a float instead of an integer. Contributed by [@&#8203;lukaslihotzki](https://github.com/lukaslihotzki). ([#&#8203;10175](https://github.com/matrix-org/synapse/issues/10175)) - Always require users to re-authenticate for dangerous operations: deactivating an account, modifying an account password, and adding 3PIDs. ([#&#8203;10184](https://github.com/matrix-org/synapse/issues/10184)) - Fix a bug introduced in Synpase v1.7.2 where remote server count metrics collection would be incorrectly delayed on startup. Found by [@&#8203;heftig](https://github.com/heftig). ([#&#8203;10195](https://github.com/matrix-org/synapse/issues/10195)) - Fix a bug introduced in Synapse v1.35.1 where an `allow` key of a `m.room.join_rules` event could be applied for incorrect room versions and configurations. ([#&#8203;10208](https://github.com/matrix-org/synapse/issues/10208)) - Fix performance regression in responding to user key requests over federation. Introduced in Synapse v1.34.0rc1. ([#&#8203;10221](https://github.com/matrix-org/synapse/issues/10221)) ## Improved Documentation - Add a new guide to decoding request logs. ([#&#8203;8436](https://github.com/matrix-org/synapse/issues/8436)) - Mention in the sample homeserver config that you may need to configure max upload size in your reverse proxy. Contributed by [@&#8203;aaronraimist](https://github.com/aaronraimist). ([#&#8203;10122](https://github.com/matrix-org/synapse/issues/10122)) - Fix broken links in documentation. ([#&#8203;10180](https://github.com/matrix-org/synapse/issues/10180)) - Deploy a snapshot of the documentation website upon each new Synapse release. ([#&#8203;10198](https://github.com/matrix-org/synapse/issues/10198)) ## Deprecations and Removals - The current spam checker interface is deprecated in favour of a new generic modules system. See the [upgrade notes](https://matrix-org.github.io/synapse/develop/upgrade#deprecation-of-the-current-spam-checker-interface) for more information on how to update to the new system. ([#&#8203;10062](https://github.com/matrix-org/synapse/issues/10062), [#&#8203;10210](https://github.com/matrix-org/synapse/issues/10210), [#&#8203;10238](https://github.com/matrix-org/synapse/issues/10238)) - Stop supporting the unstable spaces prefixes from MSC1772. ([#&#8203;10161](https://github.com/matrix-org/synapse/issues/10161)) - Remove Synapse's support for automatically fetching and renewing certificates using the ACME v1 protocol. This protocol has been fully turned off by Let's Encrypt for existing installations on June 1st 2021. Admins previously using this feature should use a [reverse proxy](https://matrix-org.github.io/synapse/develop/reverse_proxy.html) to handle TLS termination, or use an external ACME client (such as [certbot](https://certbot.eff.org/)) to retrieve a certificate and key and provide them to Synapse using the `tls_certificate_path` and `tls_private_key_path` configuration settings. ([#&#8203;10194](https://github.com/matrix-org/synapse/issues/10194)) ## Internal Changes - Update the database schema versioning to support gradual migration away from legacy tables. ([#&#8203;9933](https://github.com/matrix-org/synapse/issues/9933)) - Add type hints to the federation servlets. ([#&#8203;10080](https://github.com/matrix-org/synapse/issues/10080)) - Improve OpenTracing for event persistence. ([#&#8203;10134](https://github.com/matrix-org/synapse/issues/10134), [#&#8203;10193](https://github.com/matrix-org/synapse/issues/10193)) - Clean up the interface for injecting OpenTracing over HTTP. ([#&#8203;10143](https://github.com/matrix-org/synapse/issues/10143)) - Limit the number of in-flight `/keys/query` requests from a single device. ([#&#8203;10144](https://github.com/matrix-org/synapse/issues/10144)) - Refactor EventPersistenceQueue. ([#&#8203;10145](https://github.com/matrix-org/synapse/issues/10145)) - Document `SYNAPSE_TEST_LOG_LEVEL` to see the logger output when running tests. ([#&#8203;10148](https://github.com/matrix-org/synapse/issues/10148)) - Update the Complement build tags in GitHub Actions to test currently experimental features. ([#&#8203;10155](https://github.com/matrix-org/synapse/issues/10155)) - Add a `synapse_federation_soft_failed_events_total` metric to track how often events are soft failed. ([#&#8203;10156](https://github.com/matrix-org/synapse/issues/10156)) - Fetch the corresponding complement branch when performing CI. ([#&#8203;10160](https://github.com/matrix-org/synapse/issues/10160)) - Add some developer documentation about boolean columns in database schemas. ([#&#8203;10164](https://github.com/matrix-org/synapse/issues/10164)) - Add extra logging fields to better debug where events are being soft failed. ([#&#8203;10168](https://github.com/matrix-org/synapse/issues/10168)) - Add debug logging for when we enter and exit `Measure` blocks. ([#&#8203;10183](https://github.com/matrix-org/synapse/issues/10183)) - Improve comments in structured logging code. ([#&#8203;10188](https://github.com/matrix-org/synapse/issues/10188)) - Update [MSC3083](https://github.com/matrix-org/matrix-doc/pull/3083) support with modifications from the MSC. ([#&#8203;10189](https://github.com/matrix-org/synapse/issues/10189)) - Remove redundant DNS lookup limiter. ([#&#8203;10190](https://github.com/matrix-org/synapse/issues/10190)) - Upgrade `black` linting tool to 21.6b0. ([#&#8203;10197](https://github.com/matrix-org/synapse/issues/10197)) - Expose OpenTracing trace id in response headers. ([#&#8203;10199](https://github.com/matrix-org/synapse/issues/10199)) </details> --- ### Configuration :date: **Schedule**: At any time (no schedule defined). :vertical_traffic_light: **Automerge**: Enabled. :recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. :no_bell: **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
renovate-bot added 1 commit 2021-06-30 07:02:25 +00:00
continuous-integration/drone/pr Build is failing Details
continuous-integration/drone/push Build is failing Details
44836c713a
Update matrixdotorg/synapse Docker tag to v1.37.0
renovate-bot merged commit 44836c713a into main 2021-06-30 07:02:26 +00:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: coop-cloud/matrix-synapse#14
No description provided.