Update matrixdotorg/synapse Docker tag to v1.91.0 #58

Merged
jake merged 1 commits from renovate/matrixdotorg-synapse-1.x into master 2023-09-03 21:17:28 +01:00
Collaborator

This PR contains the following updates:

Package Update Change
matrixdotorg/synapse minor v1.89.0 -> v1.91.0

Release Notes

matrix-org/synapse (matrixdotorg/synapse)

v1.91.0

Compare Source

Synapse 1.91.0 (2023-08-30)

No significant changes since 1.91.0rc1.

Synapse 1.91.0rc1 (2023-08-23)

Features
  • Implements an admin API to lock an user without deactivating them. Based on MSC3939. (#​15870)
  • Implements a task scheduler for resumable potentially long running tasks. (#​15891)
  • Allow specifying client_secret_path as alternative to client_secret for OIDC providers. This avoids leaking the client secret in the homeserver config. Contributed by @​Ma27. (#​16030)
  • Allow customising the IdP display name, icon, and brand for SAML and CAS providers (in addition to OIDC provider). (#​16094)
  • Add an admins query parameter to the List Accounts admin API, to include only admins or to exclude admins in user queries. (#​16114)
Bugfixes
  • Fix long-standing bug where concurrent requests to change a user's push rules could cause a deadlock. Contributed by Nick @​ Beeper (@​fizzadar). (#​16052)
  • Fix a long-standing bug in /sync where timeout=0 does not skip caching, resulting in slow calls in cases where there are no new changes. Contributed by @​PlasmaIntec. (#​16080)
  • Fix performance of state resolutions for large, old rooms that did not have the full auth chain persisted. (#​16116)
  • Filter out user agent references to the sliding sync proxy and rust-sdk from the user_daily_visits table to ensure that Element X can be represented fully. (#​16124)
  • User constent and 3-PID changes capability cannot be enabled when using experimental MSC3861 support. (#​16127, #​16134)
  • Fix a rare race that could block new events from being sent for up to two minutes. Introduced in v1.90.0. (#​16133, #​16169)
  • Fix performance degredation when there are a lot of in-flight replication requests. (#​16148)
  • Fix a bug introduced in 1.87 where synapse would send an excessive amount of federation requests to servers which have been offline for a long time. Contributed by Nico. (#​16156, #​16164)
Improved Documentation
  • Structured logging docs: add a link to explain the ELK stack (#​16091)
Internal Changes
  • Update dehydrated devices implementation. (#​16010)
  • Fix database performance of read/write worker locks. (#​16061)
  • Fix building the nix development environment on MacOS systems. (#​16063)
  • Override global statement timeout when creating indexes in Postgres. (#​16085)
  • Fix the type annotation on run_db_interaction in the Module API. (#​16089)
  • Clean-up the presence code. (#​16092)
  • Run pyupgrade for Python 3.8+. (#​16110)
  • Rename pagination and purge locks and add comments to explain why they exist and how they work. (#​16112)
  • Attempt to fix the twisted trunk job. (#​16115)
  • Cache token introspection response from OIDC provider. (#​16117)
  • Add cache to get_server_keys_json_for_remote. (#​16123)
  • Add an admin endpoint to allow authorizing server to signal token revocations. (#​16125)
  • Add response time metrics for introspection requests for delegated auth. (#​16131)
  • MSC3861: allow impersonation by an admin user using _oidc_admin_impersonate_user_id query parameter. (#​16132)
  • Increase performance of read/write locks. (#​16149)
  • Improve presence tests. (#​16150, #​16151, #​16158)
  • Raised the poetry-core version cap to 1.7.0. (#​16152)
  • Fix assertion in user directory unit tests. (#​16157)
  • Reduce scope of locks when paginating to alleviate DB contention. (#​16159)
  • Reduce DB contention on worker locks. (#​16160)
  • Task scheduler: mark task as active if we are scheduling as soon as possible. (#​16165)
Updates to locked dependencies
  • Bump click from 8.1.6 to 8.1.7. (#​16145)
  • Bump gitpython from 3.1.31 to 3.1.32. (#​16103)
  • Bump ijson from 3.2.1 to 3.2.3. (#​16143)
  • Bump isort from 5.11.5 to 5.12.0. (#​16108)
  • Bump log from 0.4.19 to 0.4.20. (#​16109)
  • Bump pygithub from 1.59.0 to 1.59.1. (#​16144)
  • Bump sentry-sdk from 1.28.1 to 1.29.2. (#​16142)
  • Bump serde from 1.0.183 to 1.0.184. (#​16139)
  • Bump txredisapi from 1.4.9 to 1.4.10. (#​16107)
  • Bump types-bleach from 6.0.0.3 to 6.0.0.4. (#​16106)
  • Bump types-pillow from 10.0.0.1 to 10.0.0.2. (#​16105)
  • Bump types-pyopenssl from 23.2.0.1 to 23.2.0.2. (#​16146)

v1.90.0

Compare Source

Synapse 1.90.0 (2023-08-15)

No significant changes since 1.90.0rc1.

Synapse 1.90.0rc1 (2023-08-08)

Features
  • Scope transaction IDs to devices (implement MSC3970). (#​15629)
  • Remove old rows from the cache_invalidation_stream_by_instance table automatically (this table is unused in SQLite). (#​15868)
Bugfixes
  • Fix a long-standing bug where purging history and paginating simultaneously could lead to database corruption when using workers. (#​15791)
  • Fix a long-standing bug where profile endpoint returned a 404 when the user's display name was empty. (#​16012)
  • Fix a long-standing bug where the synapse_port_db failed to configure sequences for application services and partial stated rooms. (#​16043)
  • Fix long-standing bug with deletion in dehydrated devices v2. (#​16046)
Updates to the Docker image
Improved Documentation
Deprecations and Removals
  • Remove support for legacy application service paths. (#​15964)
  • Move support for application service query parameter authorization behind a configuration option. (#​16017)
Internal Changes
  • Update SQL queries to inline boolean parameters as supported in SQLite 3.27. (#​15525)
  • Allow for the configuration of the backoff algorithm for federation destinations. (#​15754)
  • Allow modules to check whether the current worker is configured to run background tasks. (#​15991)
  • Update support for MSC3958 to match the latest revision of the MSC. (#​15992)
  • Allow modules to schedule delayed background calls. (#​15993)
  • Properly overwrite the redacts content-property for forwards-compatibility with room versions 1 through 10. (#​16013)
  • Fix building the nix development environment on MacOS systems. (#​16019)
  • Remove leading and trailing spaces when setting a display name. (#​16031)
  • Combine duplicated code. (#​16023)
  • Collect additional metrics from ResponseCache for eviction. (#​16028)
  • Fix endpoint improperly declaring support for MSC3814. (#​16068)
  • Drop backwards compat hack for event serialization. (#​16069)
Updates to locked dependencies
  • Update PyYAML to 6.0.1. (#​16011)
  • Bump cryptography from 41.0.2 to 41.0.3. (#​16048)
  • Bump furo from 2023.5.20 to 2023.7.26. (#​16077)
  • Bump immutabledict from 2.2.4 to 3.0.0. (#​16034)
  • Update certifi to 2023.7.22 and pygments to 2.15.1. (#​16044)
  • Bump jsonschema from 4.18.3 to 4.19.0. (#​16081)
  • Bump phonenumbers from 8.13.14 to 8.13.18. (#​16076)
  • Bump regex from 1.9.1 to 1.9.3. (#​16073)
  • Bump serde from 1.0.171 to 1.0.175. (#​15982)
  • Bump serde from 1.0.175 to 1.0.179. (#​16033)
  • Bump serde from 1.0.179 to 1.0.183. (#​16074)
  • Bump serde_json from 1.0.103 to 1.0.104. (#​16032)
  • Bump service-identity from 21.1.0 to 23.1.0. (#​16038)
  • Bump types-commonmark from 0.9.2.3 to 0.9.2.4. (#​16037)
  • Bump types-jsonschema from 4.17.0.8 to 4.17.0.10. (#​16036)
  • Bump types-netaddr from 0.8.0.8 to 0.8.0.9. (#​16035)
  • Bump types-opentracing from 2.4.10.5 to 2.4.10.6. (#​16078)
  • Bump types-setuptools from 68.0.0.0 to 68.0.0.3. (#​16079)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.89.0` -> `v1.91.0` | --- ### Release Notes <details> <summary>matrix-org/synapse (matrixdotorg/synapse)</summary> ### [`v1.91.0`](https://github.com/matrix-org/synapse/releases/tag/v1.91.0) [Compare Source](https://github.com/matrix-org/synapse/compare/v1.90.0...v1.91.0) ### Synapse 1.91.0 (2023-08-30) No significant changes since 1.91.0rc1. ### Synapse 1.91.0rc1 (2023-08-23) ##### Features - Implements an admin API to lock an user without deactivating them. Based on [MSC3939](https://github.com/matrix-org/matrix-spec-proposals/pull/3939). ([#&#8203;15870](https://github.com/matrix-org/synapse/issues/15870)) - Implements a task scheduler for resumable potentially long running tasks. ([#&#8203;15891](https://github.com/matrix-org/synapse/issues/15891)) - Allow specifying `client_secret_path` as alternative to `client_secret` for OIDC providers. This avoids leaking the client secret in the homeserver config. Contributed by [@&#8203;Ma27](https://github.com/Ma27). ([#&#8203;16030](https://github.com/matrix-org/synapse/issues/16030)) - Allow customising the IdP display name, icon, and brand for SAML and CAS providers (in addition to OIDC provider). ([#&#8203;16094](https://github.com/matrix-org/synapse/issues/16094)) - Add an `admins` query parameter to the [List Accounts](https://matrix-org.github.io/synapse/v1.91/admin_api/user_admin_api.html#list-accounts) [admin API](https://matrix-org.github.io/synapse/v1.91/usage/administration/admin_api/index.html), to include only admins or to exclude admins in user queries. ([#&#8203;16114](https://github.com/matrix-org/synapse/issues/16114)) ##### Bugfixes - Fix long-standing bug where concurrent requests to change a user's push rules could cause a deadlock. Contributed by Nick @&#8203; Beeper ([@&#8203;fizzadar](https://github.com/fizzadar)). ([#&#8203;16052](https://github.com/matrix-org/synapse/issues/16052)) - Fix a long-standing bug in `/sync` where timeout=0 does not skip caching, resulting in slow calls in cases where there are no new changes. Contributed by [@&#8203;PlasmaIntec](https://github.com/PlasmaIntec). ([#&#8203;16080](https://github.com/matrix-org/synapse/issues/16080)) - Fix performance of state resolutions for large, old rooms that did not have the full auth chain persisted. ([#&#8203;16116](https://github.com/matrix-org/synapse/issues/16116)) - Filter out user agent references to the sliding sync proxy and rust-sdk from the user_daily_visits table to ensure that Element X can be represented fully. ([#&#8203;16124](https://github.com/matrix-org/synapse/issues/16124)) - User constent and 3-PID changes capability cannot be enabled when using experimental [MSC3861](https://github.com/matrix-org/matrix-spec-proposals/pull/3861) support. ([#&#8203;16127](https://github.com/matrix-org/synapse/issues/16127), [#&#8203;16134](https://github.com/matrix-org/synapse/issues/16134)) - Fix a rare race that could block new events from being sent for up to two minutes. Introduced in v1.90.0. ([#&#8203;16133](https://github.com/matrix-org/synapse/issues/16133), [#&#8203;16169](https://github.com/matrix-org/synapse/issues/16169)) - Fix performance degredation when there are a lot of in-flight replication requests. ([#&#8203;16148](https://github.com/matrix-org/synapse/issues/16148)) - Fix a bug introduced in 1.87 where synapse would send an excessive amount of federation requests to servers which have been offline for a long time. Contributed by Nico. ([#&#8203;16156](https://github.com/matrix-org/synapse/issues/16156), [#&#8203;16164](https://github.com/matrix-org/synapse/issues/16164)) ##### Improved Documentation - Structured logging docs: add a link to explain the ELK stack ([#&#8203;16091](https://github.com/matrix-org/synapse/issues/16091)) ##### Internal Changes - Update dehydrated devices implementation. ([#&#8203;16010](https://github.com/matrix-org/synapse/issues/16010)) - Fix database performance of read/write worker locks. ([#&#8203;16061](https://github.com/matrix-org/synapse/issues/16061)) - Fix building the nix development environment on MacOS systems. ([#&#8203;16063](https://github.com/matrix-org/synapse/issues/16063)) - Override global statement timeout when creating indexes in Postgres. ([#&#8203;16085](https://github.com/matrix-org/synapse/issues/16085)) - Fix the type annotation on `run_db_interaction` in the Module API. ([#&#8203;16089](https://github.com/matrix-org/synapse/issues/16089)) - Clean-up the presence code. ([#&#8203;16092](https://github.com/matrix-org/synapse/issues/16092)) - Run `pyupgrade` for Python 3.8+. ([#&#8203;16110](https://github.com/matrix-org/synapse/issues/16110)) - Rename pagination and purge locks and add comments to explain why they exist and how they work. ([#&#8203;16112](https://github.com/matrix-org/synapse/issues/16112)) - Attempt to fix the twisted trunk job. ([#&#8203;16115](https://github.com/matrix-org/synapse/issues/16115)) - Cache token introspection response from OIDC provider. ([#&#8203;16117](https://github.com/matrix-org/synapse/issues/16117)) - Add cache to `get_server_keys_json_for_remote`. ([#&#8203;16123](https://github.com/matrix-org/synapse/issues/16123)) - Add an admin endpoint to allow authorizing server to signal token revocations. ([#&#8203;16125](https://github.com/matrix-org/synapse/issues/16125)) - Add response time metrics for introspection requests for delegated auth. ([#&#8203;16131](https://github.com/matrix-org/synapse/issues/16131)) - MSC3861: allow impersonation by an admin user using `_oidc_admin_impersonate_user_id` query parameter. ([#&#8203;16132](https://github.com/matrix-org/synapse/issues/16132)) - Increase performance of read/write locks. ([#&#8203;16149](https://github.com/matrix-org/synapse/issues/16149)) - Improve presence tests. ([#&#8203;16150](https://github.com/matrix-org/synapse/issues/16150), [#&#8203;16151](https://github.com/matrix-org/synapse/issues/16151), [#&#8203;16158](https://github.com/matrix-org/synapse/issues/16158)) - Raised the poetry-core version cap to 1.7.0. ([#&#8203;16152](https://github.com/matrix-org/synapse/issues/16152)) - Fix assertion in user directory unit tests. ([#&#8203;16157](https://github.com/matrix-org/synapse/issues/16157)) - Reduce scope of locks when paginating to alleviate DB contention. ([#&#8203;16159](https://github.com/matrix-org/synapse/issues/16159)) - Reduce DB contention on worker locks. ([#&#8203;16160](https://github.com/matrix-org/synapse/issues/16160)) - Task scheduler: mark task as active if we are scheduling as soon as possible. ([#&#8203;16165](https://github.com/matrix-org/synapse/issues/16165)) ##### Updates to locked dependencies - Bump click from 8.1.6 to 8.1.7. ([#&#8203;16145](https://github.com/matrix-org/synapse/issues/16145)) - Bump gitpython from 3.1.31 to 3.1.32. ([#&#8203;16103](https://github.com/matrix-org/synapse/issues/16103)) - Bump ijson from 3.2.1 to 3.2.3. ([#&#8203;16143](https://github.com/matrix-org/synapse/issues/16143)) - Bump isort from 5.11.5 to 5.12.0. ([#&#8203;16108](https://github.com/matrix-org/synapse/issues/16108)) - Bump log from 0.4.19 to 0.4.20. ([#&#8203;16109](https://github.com/matrix-org/synapse/issues/16109)) - Bump pygithub from 1.59.0 to 1.59.1. ([#&#8203;16144](https://github.com/matrix-org/synapse/issues/16144)) - Bump sentry-sdk from 1.28.1 to 1.29.2. ([#&#8203;16142](https://github.com/matrix-org/synapse/issues/16142)) - Bump serde from 1.0.183 to 1.0.184. ([#&#8203;16139](https://github.com/matrix-org/synapse/issues/16139)) - Bump txredisapi from 1.4.9 to 1.4.10. ([#&#8203;16107](https://github.com/matrix-org/synapse/issues/16107)) - Bump types-bleach from 6.0.0.3 to 6.0.0.4. ([#&#8203;16106](https://github.com/matrix-org/synapse/issues/16106)) - Bump types-pillow from 10.0.0.1 to 10.0.0.2. ([#&#8203;16105](https://github.com/matrix-org/synapse/issues/16105)) - Bump types-pyopenssl from 23.2.0.1 to 23.2.0.2. ([#&#8203;16146](https://github.com/matrix-org/synapse/issues/16146)) ### [`v1.90.0`](https://github.com/matrix-org/synapse/releases/tag/v1.90.0) [Compare Source](https://github.com/matrix-org/synapse/compare/v1.89.0...v1.90.0) ### Synapse 1.90.0 (2023-08-15) No significant changes since 1.90.0rc1. ### Synapse 1.90.0rc1 (2023-08-08) ##### Features - Scope transaction IDs to devices (implement [MSC3970](https://github.com/matrix-org/matrix-spec-proposals/pull/3970)). ([#&#8203;15629](https://github.com/matrix-org/synapse/issues/15629)) - Remove old rows from the `cache_invalidation_stream_by_instance` table automatically (this table is unused in SQLite). ([#&#8203;15868](https://github.com/matrix-org/synapse/issues/15868)) ##### Bugfixes - Fix a long-standing bug where purging history and paginating simultaneously could lead to database corruption when using workers. ([#&#8203;15791](https://github.com/matrix-org/synapse/issues/15791)) - Fix a long-standing bug where profile endpoint returned a 404 when the user's display name was empty. ([#&#8203;16012](https://github.com/matrix-org/synapse/issues/16012)) - Fix a long-standing bug where the `synapse_port_db` failed to configure sequences for application services and partial stated rooms. ([#&#8203;16043](https://github.com/matrix-org/synapse/issues/16043)) - Fix long-standing bug with deletion in dehydrated devices v2. ([#&#8203;16046](https://github.com/matrix-org/synapse/issues/16046)) ##### Updates to the Docker image - Add `org.opencontainers.image.version` labels to Docker containers [published by Matrix.org](https://hub.docker.com/r/matrixdotorg/synapse). Contributed by Mo Balaa. ([#&#8203;15972](https://github.com/matrix-org/synapse/issues/15972), [#&#8203;16009](https://github.com/matrix-org/synapse/issues/16009)) ##### Improved Documentation - Add a internal documentation page describing the ["streams" used within Synapse](https://matrix-org.github.io/synapse/v1.90/development/synapse_architecture/streams.html). ([#&#8203;16015](https://github.com/matrix-org/synapse/issues/16015)) - Clarify comment on the keys/upload over replication enpoint. ([#&#8203;16016](https://github.com/matrix-org/synapse/issues/16016)) - Do not expose Admin API in caddy reverse proxy example. Contributed by [@&#8203;NilsIrl](https://github.com/NilsIrl). ([#&#8203;16027](https://github.com/matrix-org/synapse/issues/16027)) ##### Deprecations and Removals - Remove support for legacy application service paths. ([#&#8203;15964](https://github.com/matrix-org/synapse/issues/15964)) - Move support for application service query parameter authorization behind a configuration option. ([#&#8203;16017](https://github.com/matrix-org/synapse/issues/16017)) ##### Internal Changes - Update SQL queries to inline boolean parameters as supported in SQLite 3.27. ([#&#8203;15525](https://github.com/matrix-org/synapse/issues/15525)) - Allow for the configuration of the backoff algorithm for federation destinations. ([#&#8203;15754](https://github.com/matrix-org/synapse/issues/15754)) - Allow modules to check whether the current worker is configured to run background tasks. ([#&#8203;15991](https://github.com/matrix-org/synapse/issues/15991)) - Update support for [MSC3958](https://github.com/matrix-org/matrix-spec-proposals/pull/3958) to match the latest revision of the MSC. ([#&#8203;15992](https://github.com/matrix-org/synapse/issues/15992)) - Allow modules to schedule delayed background calls. ([#&#8203;15993](https://github.com/matrix-org/synapse/issues/15993)) - Properly overwrite the `redacts` content-property for forwards-compatibility with room versions 1 through 10. ([#&#8203;16013](https://github.com/matrix-org/synapse/issues/16013)) - Fix building the nix development environment on MacOS systems. ([#&#8203;16019](https://github.com/matrix-org/synapse/issues/16019)) - Remove leading and trailing spaces when setting a display name. ([#&#8203;16031](https://github.com/matrix-org/synapse/issues/16031)) - Combine duplicated code. ([#&#8203;16023](https://github.com/matrix-org/synapse/issues/16023)) - Collect additional metrics from `ResponseCache` for eviction. ([#&#8203;16028](https://github.com/matrix-org/synapse/issues/16028)) - Fix endpoint improperly declaring support for MSC3814. ([#&#8203;16068](https://github.com/matrix-org/synapse/issues/16068)) - Drop backwards compat hack for event serialization. ([#&#8203;16069](https://github.com/matrix-org/synapse/issues/16069)) ##### Updates to locked dependencies - Update PyYAML to 6.0.1. ([#&#8203;16011](https://github.com/matrix-org/synapse/issues/16011)) - Bump cryptography from 41.0.2 to 41.0.3. ([#&#8203;16048](https://github.com/matrix-org/synapse/issues/16048)) - Bump furo from 2023.5.20 to 2023.7.26. ([#&#8203;16077](https://github.com/matrix-org/synapse/issues/16077)) - Bump immutabledict from 2.2.4 to 3.0.0. ([#&#8203;16034](https://github.com/matrix-org/synapse/issues/16034)) - Update certifi to 2023.7.22 and pygments to 2.15.1. ([#&#8203;16044](https://github.com/matrix-org/synapse/issues/16044)) - Bump jsonschema from 4.18.3 to 4.19.0. ([#&#8203;16081](https://github.com/matrix-org/synapse/issues/16081)) - Bump phonenumbers from 8.13.14 to 8.13.18. ([#&#8203;16076](https://github.com/matrix-org/synapse/issues/16076)) - Bump regex from 1.9.1 to 1.9.3. ([#&#8203;16073](https://github.com/matrix-org/synapse/issues/16073)) - Bump serde from 1.0.171 to 1.0.175. ([#&#8203;15982](https://github.com/matrix-org/synapse/issues/15982)) - Bump serde from 1.0.175 to 1.0.179. ([#&#8203;16033](https://github.com/matrix-org/synapse/issues/16033)) - Bump serde from 1.0.179 to 1.0.183. ([#&#8203;16074](https://github.com/matrix-org/synapse/issues/16074)) - Bump serde_json from 1.0.103 to 1.0.104. ([#&#8203;16032](https://github.com/matrix-org/synapse/issues/16032)) - Bump service-identity from 21.1.0 to 23.1.0. ([#&#8203;16038](https://github.com/matrix-org/synapse/issues/16038)) - Bump types-commonmark from 0.9.2.3 to 0.9.2.4. ([#&#8203;16037](https://github.com/matrix-org/synapse/issues/16037)) - Bump types-jsonschema from 4.17.0.8 to 4.17.0.10. ([#&#8203;16036](https://github.com/matrix-org/synapse/issues/16036)) - Bump types-netaddr from 0.8.0.8 to 0.8.0.9. ([#&#8203;16035](https://github.com/matrix-org/synapse/issues/16035)) - Bump types-opentracing from 2.4.10.5 to 2.4.10.6. ([#&#8203;16078](https://github.com/matrix-org/synapse/issues/16078)) - Bump types-setuptools from 68.0.0.0 to 68.0.0.3. ([#&#8203;16079](https://github.com/matrix-org/synapse/issues/16079)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **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. --- - [ ] <!-- 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-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40Mi40IiwidXBkYXRlZEluVmVyIjoiMzYuNjguMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
renovate force-pushed renovate/matrixdotorg-synapse-1.x from efe6fe43b9 to 30f4b7a647 2023-08-30 14:00:37 +01:00 Compare
renovate changed title from Update matrixdotorg/synapse Docker tag to v1.90.0 to Update matrixdotorg/synapse Docker tag to v1.91.0 2023-08-30 14:00:52 +01:00
jake merged commit bdf48295a6 into master 2023-09-03 21:17:28 +01:00
jake deleted branch renovate/matrixdotorg-synapse-1.x 2023-09-03 21:17:28 +01: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: systems/infrastructure#58
No description provided.