summary refs log tree commit diff
path: root/changelog.d (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Speed up persisting large number of outliers (#16649)Erik Johnston2023-11-161-0/+1
| | | Recalculating the roots tuple every iteration could be very expensive, so instead let's do a topological sort.
* Fix sending out of order `POSITION` over replication (#16639)Erik Johnston2023-11-161-0/+1
| | | | | If a worker reconnects to Redis we send out the current positions of all our streams. However, if we're also trying to send out a backlog of RDATA at the same time then we can end up sending a `POSITION` with the current token *before* we've sent all the RDATA before the current token. This doesn't cause actual bugs as the receiving servers see the POSITION, fetch the relevant rows from the DB, and then ignore the old RDATA as they come in. However, this is inefficient so it'd be better if we didn't send out-of-order positions
* More efficiently handle no-op POSITION (#16640)Erik Johnston2023-11-161-0/+1
| | | | We may receive `POSITION` commands where we already know that worker has advanced past that position, so there is no point in handling it.
* Fix test not detecting tables with missing primary keys and missing replica ↵reivilibre2023-11-161-0/+1
| | | | | | | | | | | | | | | identities, then add more replica identities. (#16647) * Fix the CI query that did not detect all cases of missing primary keys * Add more missing REPLICA IDENTITY entries * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
* Add an Admin API to temporarily grant the ability to update an existing ↵David Robertson2023-11-151-0/+1
| | | | cross-signing key without UIA (#16634)
* Asynchronous Uploads (#15503)Sumner Evans2023-11-151-0/+1
| | | Support asynchronous uploads as defined in MSC2246.
* Add links to pre-1.0 changelog issue/PR references. (#16638)Patrick Cloke2023-11-151-0/+1
|
* Use full GitHub links instead of bare issue numbers. (#16637)Patrick Cloke2023-11-151-0/+1
|
* Improve documentation for ↵Will Hunt2023-11-141-0/+1
| | | | `/_synapse/admin/v1/rooms/<room_id>/timestamp_to_event` (#16631)
* Remove whole table locks on push rule add/delete (#16051)Nick Mills-Barrett2023-11-131-0/+1
| | | | The statements are already executed within a transaction thus a table level lock is unnecessary.
* Add a Postgres `REPLICA IDENTITY` to tables that do not have an implicit ↵reivilibre2023-11-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | one. This should allow use of Postgres logical replication. (#16456) * Add Postgres replica identities to tables that don't have an implicit one Fixes #16224 * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> * Move the delta to version 83 as we missed the boat for 82 * Add a test that all tables have a REPLICA IDENTITY * Extend the test to include when indices are deleted * isort * black * Fully qualify `oid` as it is a 'hidden attribute' in Postgres 11 * Update tests/storage/test_database.py Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com> * Add missed tables --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
* Fix outbound_federation_restricted_to docs & note when added (#16628)David Robertson2023-11-131-0/+1
|
* Use attempt_to_set_autocommit everywhere. (#16615)Patrick Cloke2023-11-091-0/+1
| | | To avoid asserting the type of the database connection.
* Fix a long-standing bug where Synapse would not unbind third-party ↵reivilibre2023-11-091-0/+1
| | | | | | | | | | | | | | | identifiers for Application Service users when deactivated and would not emit a compliant response. (#16617) * Don't skip unbinding 3PIDs and returning success status when deactivating AS user Fixes #16608 * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
* Use dbname instead of database for Postgres config. (#16618)Patrick Cloke2023-11-091-0/+1
|
* Use _invalidate_cache_and_stream_bulk in more places. (#16616)Patrick Cloke2023-11-092-1/+2
| | | | | This takes advantage of the new bulk method in more places to invalidate caches for many keys at once (and then to stream that over replication).
* Convert simple_select_one_txn and simple_select_one to return tuples. (#16612)Patrick Cloke2023-11-091-0/+1
|
* Return attrs for more media repo APIs. (#16611)Patrick Cloke2023-11-091-0/+1
|
* Bulk-invalidate e2e cached queries after claiming keys (#16613)David Robertson2023-11-091-0/+1
| | | | Co-authored-by: Patrick Cloke <patrickc@matrix.org>
* Avoid updating the same rows multiple times with simple_update_many_txn. ↵Patrick Cloke2023-11-071-0/+1
| | | | | | (#16609) simple_update_many_txn had a bug in it which would cause each update to be applied twice.
* Avoid executing no-op queries. (#16583)Patrick Cloke2023-11-071-0/+1
| | | | | | If simple_{insert,upsert,update}_many_txn is called without any data to modify then return instead of executing the query. This matches the behavior of simple_{select,delete}_many_txn.
* More tests for the simple_* methods. (#16596)Patrick Cloke2023-11-071-0/+1
| | | | Expand tests for the simple_* database methods, additionally test against both PostgreSQL and SQLite variants.
* Collect information for PushRuleEvaluator in parallel. (#16590)Patrick Cloke2023-11-061-0/+1
| | | | | | | | Fetch information needed for push rule evaluation in parallel. Ideally this would use query pipelining, but this is not available in psycopg2. Due to the database thread pool this may result in little to no parallelization.
* Bump setuptools_rust to match pinned version. (#16605)Patrick Cloke2023-11-061-0/+1
|
* Support reactor timing metric on more reactors. (#16532)Patrick Cloke2023-11-061-0/+1
| | | | | | | | | | Previously only Twisted's EPollReactor was compatible with the reactor timing metric, notably not working when asyncio was used. After this change, the following configurations support the reactor timing metric: * poll, epoll, or select reactors * asyncio reactor with a poll, epoll, select, /dev/poll, or kqueue event loop.
* Simplify event persistence code (#16584)Patrick Cloke2023-11-032-0/+2
| | | | | | | | | | | The event persistence code used to handle multiple rooms at a time, but was simplified to only ever be called with a single room at a time (different rooms are now handled in parallel). The code is still generic to multiple rooms causing a lot of work that is unnecessary (e.g. unnecessary loops, and partitioning data by room). This strips out the ability to handle multiple rooms at once, greatly simplifying the code.
* Use simple_select_many_txn in event persistance code. (#16585)Patrick Cloke2023-11-021-0/+1
| | | | | Just to standardize on the normal helpers, it might also have a slight perf improvement on PostgreSQL which will now use `ANY (?)` instead of `IN (?, ?, ...)`.
* Bump twisted from 23.8.0 to 23.10.0 (#16588)dependabot[bot]2023-11-011-0/+1
|
* Do not call getfullargspec on every call. (#16589)Patrick Cloke2023-10-311-0/+1
| | | | | getfullargspec is relatively expensive and the results will not change between calls, so precalculate it outside the wrapper.
* Remove remaining usage of cursor_to_dict. (#16564)Patrick Cloke2023-10-311-0/+1
|
* 1.96.0rc1Erik Johnston2023-10-3138-38/+0
|
* Revert "1.96.0rc1"Erik Johnston2023-10-3138-0/+38
| | | | This reverts commit 4724a6ded136c727bcff5082b94c2b3d6355e908.
* 1.96.0rc1Erik Johnston2023-10-3138-38/+0
|
* Claim local one-time-keys in bulk (#16565)David Robertson2023-10-301-0/+1
| | | | Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
* Clients link fixed in README (#16569)Niranjan Kurhade2023-10-301-0/+1
|
* Add fast path for replication events stream fetch (#16580)Erik Johnston2023-10-301-0/+1
| | | | We can bail early if the from token is greater than or equal to the current token.
* Claim fallback keys in bulk (#16570)David Robertson2023-10-301-0/+1
|
* Bump setuptools-rust from 1.7.0 to 1.8.0 (#16574)dependabot[bot]2023-10-301-0/+1
| | | | | Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Robertson <davidr@element.io>
* Run actions/setup-go after checking out complement (#16567)David Robertson2023-10-301-0/+1
|
* Fix HTTP repl response to use minimum token (#16578)Erik Johnston2023-10-301-0/+1
|
* Portdb: don't copy a table that gets rebuilt (#16563)David Robertson2023-10-271-0/+1
|
* complement: enable dirty runs (#16520)kegsay2023-10-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * complement: enable dirty runs * Add changelog * Set a low connpool limit when running in Complement Dirty runs can cause many containers to be running concurrently, which seems to easily exhaust resources on the host. The increased speedup from dirty runs also seems to use more db connections on workers, which are misconfigured currently to have `SUM(workers * cp_max) > max_connections`, causing ``` FATAL: sorry, too many clients already ``` which results in tests failing. * Try p=2 concurrency to restrict slowness of servers which causes partial state join tests to flake * Debug logging * Only run flakey tests * Only adjust connection pool limits in worker mode * Move cp vars to somewhere where they get executed in CI * Move cp values back to where they actually work * Debug logging * Try p=1 to see if this makes worker mode happier * Remove debug logging
* Ensure local invited & knocking users leave before purge. (#16559)Patrick Cloke2023-10-271-0/+1
| | | | | This is mostly useful for federated rooms where some users would get stuck in the invite or knock state when the room was purged from their homeserver.
* Reduce amount of caches POSITIONS we send (#16561)Erik Johnston2023-10-271-0/+1
| | | Follow on from / actually correctly does #16557
* Reduce spurious replication catchup (#16555)Erik Johnston2023-10-271-0/+1
|
* Fix cross-worker ratelimiting (#16558)Erik Johnston2023-10-271-0/+1
| | | c.f. #16481
* Reduce replication traffic due to reflected cache stream POSITION (#16557)Erik Johnston2023-10-271-0/+1
|
* Add new module API for adding custom fields to events `unsigned` section ↵Erik Johnston2023-10-271-0/+1
| | | | (#16549)
* Remove more usages of cursor_to_dict. (#16551)Patrick Cloke2023-10-261-0/+1
| | | Mostly to improve type safety.
* Add a new module API to update user presence state. (#16544)Patrick Cloke2023-10-261-0/+1
| | | | | | | | | | This adds a module API which allows a module to update a user's presence state/status message. This is useful for controlling presence from an external system. To fully control presence from the module the presence.enabled config parameter gains a new state of "untracked" which disables internal tracking of presence changes via user actions, etc. Only updates from the module will be persisted and sent down sync properly).
* Convert simple_select_list and simple_select_list_txn to return lists of ↵Patrick Cloke2023-10-261-0/+1
| | | | | tuples (#16505) This should use fewer allocations and improves type hints.
* Pin the recommended poetry version in contributors' guide (#16550)David Robertson2023-10-251-0/+1
|
* Allow multiple workers to write to receipts stream. (#16432)Erik Johnston2023-10-251-0/+1
| | | Fixes #16417
* Fix tests on Twisted trunk. (#16528)Patrick Cloke2023-10-251-0/+1
| | | | | | | | | | | | | Twisted trunk makes a change to the `TLSMemoryBIOFactory` where the underlying protocol is changed from `TLSMemoryBIOProtocol` to `BufferingTLSTransport` to improve performance of TLS code (see https://github.com/twisted/twisted/issues/11989). In order to properly hook this code up in tests we need to pass the test reactor's clock into `TLSMemoryBIOFactory` to avoid the global (trial) reactor being used by default. Twisted does something similar internally for tests: https://github.com/twisted/twisted/blob/157cd8e659705940e895d321339d467e76ae9d0a/src/twisted/web/test/test_agent.py#L871-L874
* Fix http/s proxy authentication with long username/passwords (#16504)Richard Brežák2023-10-241-0/+1
|
* Rework alias and public room list rules docs (#16541)David Robertson2023-10-241-0/+1
|
* Remove duplicate call to wake a remote destination when using federation ↵Jason Little2023-10-241-0/+1
| | | | sending worker (#16515)
* Replace all Prometheus datasource UIDs of the Grafana Dashboard with the ↵Michael Sasser2023-10-231-0/+1
| | | | variable `${DS_PROMETHEUS}` and remove `__inputs` (#16471)
* Fix type hint errors from Twisted trunk (#16526)Patrick Cloke2023-10-231-0/+1
|
* Fix bug where a new writer advances their token too quickly (#16473)Erik Johnston2023-10-231-0/+1
| | | | | | | | | | | | | | | | | | | * Fix bug where a new writer advances their token too quickly When starting a new writer (for e.g. persisting events), the `MultiWriterIdGenerator` doesn't have a minimum token for it as there are no rows matching that new writer in the DB. This results in the the first stream ID it acquired being announced as persisted *before* it actually finishes persisting, if another writer gets and persists a subsequent stream ID. This is due to the logic of setting the minimum persisted position to the minimum known position of across all writers, and the new writer starts off not being considered. * Fix sending out POSITIONs when our token advances without update Broke in #14820 * For replication HTTP requests, only wait for minimal position
* Fix bug that could cause a `/sync` to tightloop with sqlite after restart ↵Erik Johnston2023-10-231-0/+1
| | | | | (#16540) This could happen if the last rows in the account data stream were inserted into `account_data`. After a restart the max account ID would be calculated without looking at the `account_data` table, and so have an old ID.
* Mention how to redirect the Jaeger traces to a specific Jaeger instance (#16531)Marcel2023-10-231-0/+1
|
* Force TLS certificate verification in registration script. (#16530)Denis Kasak2023-10-231-0/+1
| | | | | | | | | | If using the script remotely, there's no particularly convincing reason to disable certificate verification, as this makes the connection interceptible. If on the other hand, the script is used locally (the most common use case), you can simply target the HTTP listener and avoid TLS altogether. This is what the script already attempts to do if passed a homeserver configuration YAML file.
* Remove the last reference to event_txn_id. (#16521)Patrick Cloke2023-10-231-0/+1
| | | | This table was no longer used, except for a background process which purged old entries in it.
* Bump matrix-synapse-ldap3 from 0.2.2 to 0.3.0 (#16539)David Robertson2023-10-231-0/+1
|
* Clarify presence router docs. (#16529)Patrick Cloke2023-10-201-0/+1
|
* Mark sync as limited if there is a gap in the timeline (#16485)Erik Johnston2023-10-191-0/+1
| | | | | | | | This splits thinsg into two queries, but most of the time we won't have new event backwards extremities so this shouldn't actually add an extra RTT for the majority of cases. Note this removes the check for events with no prev events, but that was part of MSC2716 work that has since been removed.
* Avoid sending massive replication updates when purging a room. (#16510)Patrick Cloke2023-10-181-0/+1
|
* Improve performance of delete device messages query (#16492)Mathieu Velten2023-10-181-0/+1
|
* Run trial/integration tests if .ci is modified. (#16512)Patrick Cloke2023-10-181-0/+1
|
* Test against Python 3.12 release (#16511)Patrick Cloke2023-10-171-0/+1
|
* 1.95.0rc1Patrick Cloke2023-10-1730-30/+0
|
* Convert DeviceLastConnectionInfo to attrs. (#16507)Patrick Cloke2023-10-171-0/+1
| | | To improve type safety & memory usage.
* Fix a bug where servers could be marked as up when they were failing (#16506)Patrick Cloke2023-10-171-0/+1
| | | | After this change a server will only be reported as back online if they were previously having requests fail.
* Update the release script to remind releaser to check for special release ↵reivilibre2023-10-161-0/+1
| | | | | | | | | | | | | | | | | notes. (#16461) * Add reminder to check special release notes board in release script * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> * Update release.py * Bah, black --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
* Convert state delta processing from a dict to attrs. (#16469)Patrick Cloke2023-10-161-0/+1
| | | For improved type checking & memory usage.
* Remove useless async job to delete device messages on sync (#16491)Mathieu Velten2023-10-161-0/+1
|
* Clean up logging on event persister endpoints (#16488)Richard van der Hoff2023-10-141-0/+1
|
* Fix typo in useful_sql_for_admins.md (#16477)Laurence Gill2023-10-121-0/+1
|
* Revert "Drop unused tables & unneeded access token ID for events. (#16268)" ↵Patrick Cloke2023-10-121-1/+0
| | | | | | | | (#16465) This reverts commit cabd57746004fe2dacc11aa8d373854a3d25e306. There are additional usages of these tables which need to be removed first.
* Update complement.sh to match new public API shape (#16466)kegsay2023-10-121-0/+1
| | | | | | | | | | | | | * Update complement.sh to match new public API shape Sister PR to https://github.com/matrix-org/complement/pull/666 Context: https://github.com/matrix-org/complement/issues/654#issuecomment-1746613495 * Changelog * Pedantry * Run complement plz
* Convert user_get_threepids response to attrs. (#16468)Patrick Cloke2023-10-111-0/+1
| | | This improves type annotations by not having a dictionary of Any values.
* Convert simple_select_many_batch, simple_select_many_txn to tuples. (#16444)Patrick Cloke2023-10-111-0/+1
|
* Handle content types with parameters. (#16440)Patrick Cloke2023-10-111-0/+1
|
* Inline simple_search_list/simple_search_list_txn. (#16434)Patrick Cloke2023-10-101-0/+1
| | | | This only has a single use and is over abstracted. Inline it so that we can improve type hints.
* Add DB indices to speed up purging rooms (#16457)David Robertson2023-10-101-0/+1
|
* Disable statement timeout whilst purging rooms (#16455)reivilibre2023-10-091-0/+1
| | | | | | | | | | | | | * Disable statement timeout whilst purging rooms * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> * Note the introduction version --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
* Don't block CI on sign-off (#16454)Erik Johnston2023-10-091-0/+1
| | | As this doesn't work with the private sign off flow.
* Fix possible AttributeError when account-api is called over unix socket (#16404)Christoph2023-10-091-0/+1
| | | Fixes #16396
* Apply join rate limiter outside the lineariser (#16441)David Robertson2023-10-061-0/+1
|
* Convert simple_select_list_paginate_txn to return tuples. (#16433)Patrick Cloke2023-10-061-0/+1
|
* Return ThumbnailInfo in more places (#16438)Patrick Cloke2023-10-061-0/+1
| | | | Improves type hints by using concrete types instead of dictionaries.
* Drop unused tables & unneeded access token ID for events. (#16268)Patrick Cloke2023-10-061-0/+1
| | | | Drop the event_txn_id table and the tables related to MSC2716, which is no longer supported in Synapse.
* Stop sending incorrect knock_state_events. (#16403)Patrick Cloke2023-10-061-0/+1
| | | | | | | | | Synapse was incorrectly implemented with a knock_state_events property on some APIs (instead of knock_room_state). This was correct in Synapse 1.70.0, but *both* fields were sent to also be compatible with Synapse versions expecting the wrong field. Enough time has passed that only the correct field needs to be included/handled.
* Fix comments related to replication. (#16428)Patrick Cloke2023-10-061-0/+1
|
* Add documentation on background updates. (#16420)Patrick Cloke2023-10-061-0/+1
|
* Register media servlets via regex. (#16419)Patrick Cloke2023-10-061-0/+1
| | | | | This converts the media servlet URLs in the same way as (most) of the rest of Synapse. This will give more flexibility in the versions each endpoint exists under.
* Bump pyo3 from 0.17.1 to 0.19.2 (#16162)V024602023-10-061-0/+1
| | | Signed-off-by: Kai A. Hiller <V02460@gmail.com>
* Remove unused method. (#16435)Patrick Cloke2023-10-051-0/+1
|
* Remove manys calls to cursor_to_dict (#16431)Patrick Cloke2023-10-052-1/+2
| | | | | | | | | | This avoids calling cursor_to_dict and then immediately unpacking the values in the dict for other users. By not creating the intermediate dictionary we can avoid allocating the dictionary and strings for the keys, which should generally be more performant. Additionally this improves type hints by avoid Dict[str, Any] dictionaries coming out of the database layer.
* Add __slots__ to replication commands. (#16429)Patrick Cloke2023-10-051-0/+1
| | | To slightly reduce the amount of memory each command takes.
* Factor out `MultiWriter` token from `RoomStreamToken` (#16427)Erik Johnston2023-10-051-0/+1
|
* Add type hints to synmark. (#16421)Patrick Cloke2023-10-041-0/+1
|
* Some refactors around receipts stream (#16426)Erik Johnston2023-10-041-0/+1
|
* 1.94.0rc1David Robertson2023-10-0324-24/+0
|
* Add note to 'federation_domain_whitelist' option (#16416)Erik Johnston2023-10-031-0/+1
|
* Clean-up old release notes (#16418)Patrick Cloke2023-10-021-0/+1
| | | | Fixes some broken formatting from the reStructuedText to Markdown conversion and fixes some typos.
* mypy plugin to check `@cached` return types (#14911)David Robertson2023-10-021-0/+1
| | | | | | | | Co-authored-by: David Robertson <davidr@element.io> Co-authored-by: Patrick Cloke <patrickc@matrix.org> Co-authored-by: Erik Johnston <erik@matrix.org> Assert that the return type of callables wrapped in @cached and @cachedList are cachable (aka immutable).
* Remove Python version from `/_synapse/admin/v1/server_version` (#16380)MomentQYC2023-10-021-0/+1
| | | | There's no reason to expose the full Python version over what is frequently a public API.
* Downgrade repl stream time out error to warning (#16401)Erik Johnston2023-09-291-0/+1
| | | | | | This is because if a worker reaches ~100% CPU then everything starts lagging and we hit the log line a lot. When at error we invoke sentry and that has a lot of overhead, which then puts even more pressure on the worker.
* Support rendering some media downloads as inline (#15988)Will Hunt2023-09-291-0/+1
| | | | | Use an `inline` Content-Disposition header when the media is "safe" to display inline (some known text, image, video, audio formats).
* Remove warnings from the docs about using message retention. (#16382)Patrick Cloke2023-09-281-0/+1
| | | | | There are no known bugs in the message retention code, but it is possible that there still exists race conditions. Additional fixes will be made as reported.
* Improve state types. (#16395)Patrick Cloke2023-09-281-0/+1
|
* Use modern config for maturin. (#16394)Patrick Cloke2023-09-281-0/+1
| | | | | | | This allows maturin >= 0.15 to build the properly named shared library object. For now the old configuration is also kept to allow for older maturin installs to be used.
* Add a cache around server ACL checking (#16360)Patrick Cloke2023-09-261-0/+1
| | | | | * Pre-compiles the server ACLs onto an object per room and invalidates them when new events come in. * Converts the server ACL checking into Rust.
* Implement MSC4028: push all encrypted events. (#16361)Patrick Cloke2023-09-261-0/+1
| | | | This unstable push rule is implemented behind an experimental configuration flag.
* Skip export-data on non-code (e.g. docs) PRs (#16387)David Robertson2023-09-261-0/+1
|
* Add documentation about the user directory search algorithm (#16320)Patrick Cloke2023-09-261-0/+1
|
* Reduce calls to `send_presence_to_destinations` (#16385)Erik Johnston2023-09-261-0/+1
|
* Improve comments in StateGroupBackgroundUpdateStore. (#16383)Patrick Cloke2023-09-251-0/+1
|
* Add developer documentation concerning gradual schema migrations with column ↵reivilibre2023-09-251-0/+1
| | | | | | | alterations. (#15691) Co-authored-by: Eric Eastwood <erice@element.io>
* Avoid running CI steps when the files they check have not been changed. (#14745)reivilibre2023-09-251-0/+1
|
* Bump types-psycopg2 from 2.9.21.11 to 2.9.21.14 (#16381)dependabot[bot]2023-09-251-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Bump types-psycopg2 from 2.9.21.11 to 2.9.21.14 Bumps [types-psycopg2](https://github.com/python/typeshed) from 2.9.21.11 to 2.9.21.14. - [Commits](https://github.com/python/typeshed/commits) --- updated-dependencies: - dependency-name: types-psycopg2 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Relax the annotation of Cursor.description See https://github.com/matrix-org/synapse/pull/16343#issuecomment-1726083384 for rationale. * Changelog * Changelog --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: David Robertson <davidr@element.io>
* Add support for pydantic v2 via pydantic.v1 compat module (#16332)Maxwell G2023-09-251-0/+1
| | | While maintaining support with pydantic v1.
* Get CI to check PRs have been signed-off (#16348)David Robertson2023-09-251-0/+1
|
* Add missing license header. (#16359)Patrick Cloke2023-09-211-0/+1
|
* Convert more cached return values to immutable types (#16356)Patrick Cloke2023-09-201-0/+1
|
* Return immutable objects for cachedList decorators (#16350)Patrick Cloke2023-09-191-0/+1
|
* Merge branch 'release-v1.93' into developPatrick Cloke2023-09-1956-56/+0
|\
| * 1.93.0rc1Patrick Cloke2023-09-1956-56/+0
| |
* | Fix-up deactivated notes in docs. (#16355)Patrick Cloke2023-09-191-0/+1
|/
* Use string for federation_client_minimum_tls_version documentation examples ↵Jan Christian Grünhage2023-09-191-0/+1
| | | | (#16353)
* Test against PostgreSQL 16. (#16351)Patrick Cloke2023-09-181-0/+1
|
* Stop patching EventBase.__eq__ in tests. (#16349)Patrick Cloke2023-09-181-0/+1
| | | | It is clearer to directly test equality instead of doing indirect assertions via patching __eq__.
* Filter locked users in the admin API (#16328)Hanadi2023-09-181-0/+1
| | | | Co-authored-by: Hanadi Tamimi <hanadi.tamimi@sdui.de>
* Make cached account data/tags/admin types immutable (#16325)Patrick Cloke2023-09-181-0/+1
|
* Return an immutable value from get_latest_event_ids_in_room. (#16326)Patrick Cloke2023-09-181-0/+1
|
* Additional validation of receipts (#16327)Patrick Cloke2023-09-181-0/+1
| | | | Reject invalid receipts with a reasonable error message & expands tests for receipts.
* Mandate Pillow>=10.0.1 because of libwebp CVE (#16347)Mathieu Velten2023-09-181-0/+1
|
* Set email charset as utf-8 rather than utf8 (#16329)José Joaquín Atria2023-09-181-0/+1
|
* Add automatic purge after all users forget a room (#15488)Mathieu Velten2023-09-151-0/+1
| | | | | | Also add restore of purge/shutdown rooms after a synapse restart. Co-authored-by: Eric Eastwood <erice@matrix.org> Co-authored-by: Erik Johnston <erikj@matrix.org>
* Convert `_insert_graph_receipts_txn` to `simple_upsert` (#16299)Jason Little2023-09-151-0/+1
|
* Only use literal strings for process names (#16315)Erik Johnston2023-09-151-0/+1
|
* Some minor performance fixes for task schedular (#16313)Erik Johnston2023-09-141-0/+1
|
* Speed up deleting to-device messages task (#16318)Erik Johnston2023-09-141-0/+1
|
* docs: Link to the Alpine Linux community package for Synapse (#16304)65432023-09-141-0/+1
|
* Refactor `get_user_by_id` (#16316)Erik Johnston2023-09-141-0/+1
|
* Remove a reference cycle in background process (#16314)Erik Johnston2023-09-131-0/+1
|
* Fix using dehydrated devices (MSC2697) & refresh tokens (#16288)Hanadi2023-09-131-0/+1
| | | | | Refresh tokens were not correctly moved to the rehydrated device (similar to how the access token is currently handled). This resulted in invalid refresh tokens after rehydration.
* Use StrCollection in additional places. (#16301)Patrick Cloke2023-09-131-0/+1
|
* Don't schedule an async task on every sync (#16312)Erik Johnston2023-09-131-0/+1
|
* Fix deleting device inbox when using background worker (#16311)Erik Johnston2023-09-131-0/+1
| | | | | Introduced in #16240 The action for the task was only defined on the "master" handler, rather than the base worker one.
* Improve logging of replication (#16309)Erik Johnston2023-09-131-0/+1
|
* Merge branch 'master' into developMathieu Velten2023-09-122-2/+0
|\
| * 1.92.0Mathieu Velten2023-09-123-3/+0
| |
| * Support releasing on macOS. (#16266)Patrick Cloke2023-09-071-0/+1
| |
* | Bump mypy from 1.4.1 to 1.5.1. (#16300)Patrick Cloke2023-09-121-0/+1
| |
* | Stop purging tables which are slated for removal. (#16273)Patrick Cloke2023-09-121-0/+1
| |
* | Refactor storing of server keys (#16261)Erik Johnston2023-09-121-0/+1
| |
* | Add the List-Unsubscribe header for notification emails. (#16274)Patrick Cloke2023-09-111-0/+1
| | | | | | | | | | | | | | | | Adds both the List-Unsubscribe (RFC2369) and List-Unsubscribe-Post (RFC8058) headers to push notification emails, which together should: * Show an "Unsubscribe" link in the MUA UI when viewing Synapse notification emails. * Enable "one-click" unsubscribe (the user never leaves their MUA, which automatically makes a POST request to the specified endpoint).
* | Filter out down hosts when retrying fetching device lists (#16298)Erik Johnston2023-09-111-0/+1
| |
* | Improve type hints for attrs classes (#16276)David Robertson2023-09-081-0/+1
| |
* | Upgrade CI run of Python 3.12 from rc1 to rc2 (#16280)V024602023-09-081-0/+1
| |
* | Update ruff config (#16283)Patrick Cloke2023-09-081-0/+1
| | | | | | Enable additional checks & clean-up unneeded configuration.
* | Log values at DEBUG level with execute_values (#16281)David Robertson2023-09-081-0/+1
| |
* | Fix-up incorrect spellings in docs. (#16282)Patrick Cloke2023-09-081-0/+1
| |
* | Fix bug with new task scheduler using lots of CPU. (#16278)Erik Johnston2023-09-081-0/+1
| | | | | | | | | | Using the new `TaskScheduler` meant that we'ed create lots of new metrics (due to adding task ID to the desc of background process), resulting in requests for metrics taking an increasing amount of CPU.
* | Avoid temporary storage of sensitive information. (#16272)Patrick Cloke2023-09-081-0/+1
| | | | | | | | During the UI auth process, avoid storing sensitive information into the database.
* | Raise setuptools_rust version cap to 1.7.0 (#16277)V024602023-09-081-0/+1
| |
* | Reduce CPU overhead of change password endpoint (#16264)Erik Johnston2023-09-081-0/+1
| |
* | Recheck if remote device is cached before requesting it (#16252)Erik Johnston2023-09-071-0/+1
| | | | | | | | This fixes a bug where we could get stuck re-requesting the device over replication again and again.
* | Add `/notifications` endpoint to workers (#16265)Erik Johnston2023-09-071-0/+1
| |
* | Send the opentracing span information to appservices (#16227)Marcel2023-09-061-0/+1
| |
* | Handle "registration_enabled" parameter for CAS (#16262)Aurélien Grimpard2023-09-061-0/+1
| | | | | | | | Similar to OIDC, CAS providers can now disable registration such that only existing users are able to login via SSO.
* | Merge remote-tracking branch 'origin/release-v1.92' into developPatrick Cloke2023-09-062-0/+2
|\|
| * Add back newsfile from #16258.Patrick Cloke2023-09-061-0/+1
| |
| * Fix incorrect docstring for Ratelimiter. (#16255)Patrick Cloke2023-09-051-0/+1
| |
* | Apply missed suggestions from the review of #16090. (#16263)reivilibre2023-09-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | * Suggestions from PR * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
* | Add GCC and GNU Make to the Nix flake development environment so that `ruff` ↵reivilibre2023-09-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | can be compiled. (#16090) * Add gcc and GNU make to the Nix flake * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> * unset LD_LIBRARY_PATH --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
* | Update rust in flake.nix: 1.70.0 -> 1.71.1 to address CVE-2023-38497 (#16260)Andrew Morgan2023-09-061-0/+1
| |
* | Add the ability to use `G` (GiB) and `T` (TiB) suffixes in configuration ↵reivilibre2023-09-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | options that refer to numbers of bytes. (#16219) * Add more suffixes to `parse_size` * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
* | Allow modules to delete rooms. (#15997)reivilibre2023-09-061-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Allow user_id to be optional for room deletion * Add module API method to delete a room * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org> * Don't worry about the case block=True && requester_user_id is None --------- Signed-off-by: Olivier Wilkinson (reivilibre) <oliverw@matrix.org>
* | Delete device messages asynchronously and in staged batches (#16240)Mathieu Velten2023-09-061-0/+1
| |
* | Fix appservices being unable to handle to_device messages for multiple users ↵Will Hunt2023-09-051-0/+1
| | | | | | | | (#16251)
* | Add MSC4040 `matrix-fed` service lookups (#16137)Travis Ralston2023-09-051-0/+1
| |
* | Fix bug where we kept re-requesting a remote server's key repeatedly. (#16257)Erik Johnston2023-09-051-0/+1
| | | | | | | | | | * Correctly handle multiple rows per server/key * Newsfile
* | Merge tag 'v1.92.0rc1' into developDavid Robertson2023-09-0530-30/+0
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add configuration setting for CAS protocol version. Contributed by Aurélien Grimpard. ([\#15816](https://github.com/matrix-org/synapse/issues/15816)) - Suppress notifications from message edits per [MSC3958](https://github.com/matrix-org/matrix-spec-proposals/pull/3958). ([\#16113](https://github.com/matrix-org/synapse/issues/16113)) - Return a `Retry-After` with `M_LIMIT_EXCEEDED` error responses. ([\#16136](https://github.com/matrix-org/synapse/issues/16136)) - Add `last_seen_ts` to the [admin users API](https://matrix-org.github.io/synapse/latest/admin_api/user_admin_api.html). ([\#16218](https://github.com/matrix-org/synapse/issues/16218)) - Improve resource usage when sending data to a large number of remote hosts that are marked as "down". ([\#16223](https://github.com/matrix-org/synapse/issues/16223)) - Fix IPv6-related bugs on SMTP settings, adding groundwork to fix similar issues. Contributed by @evilham and @telmich (ungleich.ch). ([\#16155](https://github.com/matrix-org/synapse/issues/16155)) - Fix a spec compliance issue where requests to the `/publicRooms` federation API would specify `include_all_networks` as a string. ([\#16185](https://github.com/matrix-org/synapse/issues/16185)) - Fix inaccurate error message while attempting to ban or unban a user with the same or higher PL by spliting the conditional statements. Contributed by @leviosacz. ([\#16205](https://github.com/matrix-org/synapse/issues/16205)) - Fix a rare bug that broke looping calls, which could lead to e.g. linearly increasing memory usage. Introduced in v1.90.0. ([\#16210](https://github.com/matrix-org/synapse/issues/16210)) - Fix a long-standing bug where uploading images would fail if we could not generate thumbnails for them. ([\#16211](https://github.com/matrix-org/synapse/issues/16211)) - Fix a long-standing bug where we did not correctly back off from servers that had "gone" if they returned 4xx series error codes. ([\#16221](https://github.com/matrix-org/synapse/issues/16221)) - Update links to the [matrix.org blog](https://matrix.org/blog/). ([\#16008](https://github.com/matrix-org/synapse/issues/16008)) - Document which [admin APIs](https://matrix-org.github.io/synapse/latest/usage/administration/admin_api/index.html) are disabled when experimental [MSC3861](https://github.com/matrix-org/matrix-spec-proposals/pull/3861) support is enabled. ([\#16168](https://github.com/matrix-org/synapse/issues/16168)) - Document [`exclude_rooms_from_sync`](https://matrix-org.github.io/synapse/v1.92/usage/configuration/config_documentation.html#exclude_rooms_from_sync) configuration option. ([\#16178](https://github.com/matrix-org/synapse/issues/16178)) - Prepare unit tests for Python 3.12. ([\#16099](https://github.com/matrix-org/synapse/issues/16099)) - Fix nightly CI jobs. ([\#16121](https://github.com/matrix-org/synapse/issues/16121), [\#16213](https://github.com/matrix-org/synapse/issues/16213)) - Describe which rate limiter was hit in logs. ([\#16135](https://github.com/matrix-org/synapse/issues/16135)) - Simplify presence code when using workers. ([\#16170](https://github.com/matrix-org/synapse/issues/16170)) - Track per-device information in the presence code. ([\#16171](https://github.com/matrix-org/synapse/issues/16171), [\#16172](https://github.com/matrix-org/synapse/issues/16172)) - Stop using the `event_txn_id` table. ([\#16175](https://github.com/matrix-org/synapse/issues/16175)) - Use `AsyncMock` instead of custom code. ([\#16179](https://github.com/matrix-org/synapse/issues/16179), [\#16180](https://github.com/matrix-org/synapse/issues/16180)) - Improve error reporting of invalid data passed to `/_matrix/key/v2/query`. ([\#16183](https://github.com/matrix-org/synapse/issues/16183)) - Task scheduler: add replication notify for new task to launch ASAP. ([\#16184](https://github.com/matrix-org/synapse/issues/16184)) - Improve type hints. ([\#16186](https://github.com/matrix-org/synapse/issues/16186), [\#16188](https://github.com/matrix-org/synapse/issues/16188), [\#16201](https://github.com/matrix-org/synapse/issues/16201)) - Bump black version to 23.7.0. ([\#16187](https://github.com/matrix-org/synapse/issues/16187)) - Log the details of background update failures. ([\#16212](https://github.com/matrix-org/synapse/issues/16212)) - Cache device resync requests over replication. ([\#16241](https://github.com/matrix-org/synapse/issues/16241)) * Bump anyhow from 1.0.72 to 1.0.75. ([\#16141](https://github.com/matrix-org/synapse/issues/16141)) * Bump furo from 2023.7.26 to 2023.8.19. ([\#16238](https://github.com/matrix-org/synapse/issues/16238)) * Bump phonenumbers from 8.13.18 to 8.13.19. ([\#16237](https://github.com/matrix-org/synapse/issues/16237)) * Bump psycopg2 from 2.9.6 to 2.9.7. ([\#16196](https://github.com/matrix-org/synapse/issues/16196)) * Bump regex from 1.9.3 to 1.9.4. ([\#16195](https://github.com/matrix-org/synapse/issues/16195)) * Bump ruff from 0.0.277 to 0.0.286. ([\#16198](https://github.com/matrix-org/synapse/issues/16198)) * Bump sentry-sdk from 1.29.2 to 1.30.0. ([\#16236](https://github.com/matrix-org/synapse/issues/16236)) * Bump serde from 1.0.184 to 1.0.188. ([\#16194](https://github.com/matrix-org/synapse/issues/16194)) * Bump serde_json from 1.0.104 to 1.0.105. ([\#16140](https://github.com/matrix-org/synapse/issues/16140)) * Bump types-psycopg2 from 2.9.21.10 to 2.9.21.11. ([\#16200](https://github.com/matrix-org/synapse/issues/16200)) * Bump types-pyyaml from 6.0.12.10 to 6.0.12.11. ([\#16199](https://github.com/matrix-org/synapse/issues/16199))
| * 1.92.0rc1David Robertson2023-09-0533-33/+0
| |
* | Time out busy presence status & test multi-device busy (#16174)Patrick Cloke2023-09-051-0/+1
| | | | | | | | | | | | | | Add a (long) timeout to when a "busy" device is considered not online. This does *not* match MSC3026, but is a reasonable thing for an implementation to do. Expands tests for the (unstable) busy presence with multiple devices.
* | Track presence state per-device and combine to a user state. (#16066)Patrick Cloke2023-09-057-3/+4
| | | | | | | | | | | | | | | | | | | | | | Tracks presence on an individual per-device basis and combine the per-device state into a per-user state. This should help in situations where a user has multiple devices with conflicting status (e.g. one is syncing with unavailable and one is syncing with online). The tie-breaking is done by priority: BUSY > ONLINE > UNAVAILABLE > OFFLINE
* | Bump minimum supported Rust version to 1.61.0 (#16248)Erik Johnston2023-09-051-0/+1
| |
* | Bump twisted from 22.10.0 to 23.8.0 (#16235)dependabot[bot]2023-09-051-0/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Bump twisted from 22.10.0 to 23.8.0 Bumps [twisted](https://github.com/twisted/twisted) from 22.10.0 to 23.8.0. - [Release notes](https://github.com/twisted/twisted/releases) - [Changelog](https://github.com/twisted/twisted/blob/trunk/NEWS.rst) - [Commits](https://github.com/twisted/twisted/compare/twisted-22.10.0...twisted-23.8.0) --- updated-dependencies: - dependency-name: twisted dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * Fix types * Fix lint * Newsfile --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Erik Johnston <erik@matrix.org>
* Don't wake up destination transaction queue if they're not due for retry. ↵Erik Johnston2023-09-041-0/+1
| | | | (#16223)
* Add last_seen_ts to the admin users API (#16218)Mathieu Velten2023-09-041-0/+1
|
* Don't reset retry timers on "valid" error codes (#16221)Erik Johnston2023-09-041-0/+1
|
* Cache device resync requests over replication (#16241)David Robertson2023-09-041-0/+1
|
* Fix typo where we ended up with multiple `WorkerLocksHandler` (#16220)Erik Johnston2023-09-011-0/+1
| | | | | I don't think has caused any actual issues. Introduced in #15891
* Log the details of background update failures (#16212)David Robertson2023-09-011-0/+1
|
* Ignore redundant casts in latest deps CI job (#16213)David Robertson2023-08-301-0/+1
|
* Gracefully handle failing to thumbnail images (#16211)Erik Johnston2023-08-301-0/+1
|
* Fix rare bug that broke looping calls (#16210)Erik Johnston2023-08-301-0/+1
| | | | | | | | | | * Fix rare bug that broke looping calls We can't interact with the reactor from the main thread via looping call. Introduced in v1.90.0 / #15791. * Newsfile
* Stop writing to the event_txn_id table (#16175)Patrick Cloke2023-08-301-0/+1
|
* Describe which rate limiter was hit in logs (#16135)David Robertson2023-08-301-0/+1
|
* Track currently syncing users by device for presence (#16172)Patrick Cloke2023-08-291-0/+1
| | | | | | | Refactoring to use both the user ID & the device ID when tracking the currently syncing users in the presence handler. This is done both locally and over replication. Note that the device ID is discarded but will be used in a future change.
* Bump mypy-zope & mypy. (#16188)Patrick Cloke2023-08-291-0/+1
|
* Support IPv6-only SMTP servers (#16155)Evilham2023-08-291-0/+1
| | | | Use Twisted HostnameEndpoint to connect to SMTP servers (instead of connectTCP/connectSSL) which properly supports IPv6-only servers.
* Update black & fix the targeted Python versions. (#16187)Patrick Cloke2023-08-291-0/+1
| | | Black should target Python 3.8 to 3.11.
* Fix inaccurate error message while trying to ban or unban a user with the ↵Chen Zhang2023-08-291-0/+1
| | | | same or higher PL (#16205)
* Pass the device ID around in the presence handler (#16171)Patrick Cloke2023-08-281-0/+1
| | | | | | Refactoring to pass the device ID (in addition to the user ID) through the presence handler (specifically the `user_syncing`, `set_state`, and `bump_presence_active_time` methods and their replication versions).
* Combine logic about not overriding BUSY presence. (#16170)Patrick Cloke2023-08-281-0/+1
| | | | | | | | | | | | | Simplify some of the presence code by reducing duplicated code between worker & non-worker modes. The main change is to push some of the logic from `user_syncing` into `set_state`. This is done by passing whether the user is setting the presence via a `/sync` with a new `is_sync` flag to `set_state`. If this is `true` some additional logic is performed: * Don't override `busy` presence. * Update the `last_user_sync_ts`. * Never update the status message.
* Task scheduler: add replication notify for new task to launch ASAP (#16184)Mathieu Velten2023-08-281-0/+1
|
* Bump setuptools-rust from 1.6.0 to 1.7.0. (#16201)Patrick Cloke2023-08-281-0/+1
|
* Prepare unit tests for Python 3.12 (#16099)V024602023-08-251-0/+1
|
* service-identity, incremental, and setuptools-rust now have type hints. (#16186)Patrick Cloke2023-08-251-0/+1
|
* Validate input to POST /key/v2/query endpoint. (#16183)Patrick Cloke2023-08-251-0/+1
| | | To avoid 500 internal server errors with garbage input.
* Send proper JSON POST data to /publicRooms (#16185)Patrick Cloke2023-08-251-0/+1
| | | | The include_all_networks was previously sent in the JSON body as string "true" and "false" instead of boolean true and false.
* Replace simple_async_mock with AsyncMock (#16180)Patrick Cloke2023-08-251-0/+1
| | | | Python 3.8 has a native AsyncMock, use it instead of a custom implementation.
* Add warnings about MSC3861 on certain APIs. (#16168)Will Hunt2023-08-251-0/+1
|
* Replace make_awaitable with AsyncMock (#16179)Patrick Cloke2023-08-241-0/+1
| | | | Python 3.8 provides a native AsyncMock, we can replace the homegrown version we have.
* Document `exclude_rooms_fom_sync` configuration option (#16178)Shay2023-08-241-0/+1
|
* Add configuration setting for CAS protocol version (#15816)Aurélien Grimpard2023-08-241-0/+1
|
* Update URLs to matrix.org blog categories. (#16008)Amirreza Aflakparast2023-08-241-0/+1
|
* Fix typechecking with twisted trunk (#16121)David Robertson2023-08-241-0/+1
|
* Add `Retry-After` to M_LIMIT_EXCEEDED error responses (#16136)Will Hunt2023-08-241-0/+1
| | | Implements MSC4041 behind an experimental configuration flag.
* Merge branch 'release-v1.91' into developH. Shay2023-08-2340-40/+0
|\
| * 1.91.0rc1 v1.91.0rc1H. Shay2023-08-2340-40/+0
| |
* | Stabilize support for MSC3958 (suppress notifications from edits). (#16113)Patrick Cloke2023-08-231-0/+1
|/
* Fix rare deadlock when using read/write locks (#16169) release-v1.91.0Erik Johnston2023-08-231-0/+1
|
* Switch `devenv` dependency in the nix development environment to the latest ↵Andrew Morgan2023-08-231-0/+1
| | | | release (instead of the development branch) (#16063)
* Filter out unwanted user_agents from udv. (#16124)Neil Johnson2023-08-231-0/+1
|
* Fix rare deadlock when using read/write locks (#16133)Erik Johnston2023-08-231-0/+1
|
* Reduce DB contention on worker locks (#16160)Erik Johnston2023-08-231-0/+1
|
* Always update `retry_last_ts` (#16164)Erik Johnston2023-08-231-0/+1
|
* Task scheduler: mark task as active if we are scheduling ASAP (#16165)Mathieu Velten2023-08-231-0/+1
|
* Add tests for restoring the presence state after a restart. (#16151)Patrick Cloke2023-08-232-1/+2
|
* Properly update retry_last_ts when hitting the maximum retry interval (#16156)DeepBlueV7.X2023-08-231-0/+1
| | | | | | | | | | | | | | | | | | | | | * Properly update retry_last_ts when hitting the maximum retry interval This was broken in 1.87 when the maximum retry interval got changed from almost infinite to a week (and made configurable). fixes #16101 Signed-off-by: Nicolas Werner <nicolas.werner@hotmail.de> * Add changelog * Change fix + add test * Add comment --------- Signed-off-by: Nicolas Werner <nicolas.werner@hotmail.de> Co-authored-by: Mathieu Velten <mathieuv@matrix.org>
* Only lock when we're backfilling (#16159)Erik Johnston2023-08-231-0/+1
|
* Increase perf of read/write locks (#16149)Erik Johnston2023-08-231-0/+1
| | | We do this by marking the tables as `UNLOGGED` in PostgreSQL.
* Clean-up presence tests (#16158)Patrick Cloke2023-08-221-0/+1
| | | Reduce duplicated code & remove unused variables.
* Fix perf of `wait_for_stream_positions` (#16148)Erik Johnston2023-08-221-0/+1
|
* Disable `m.3pid_changes` capability when MSC3861 is enabled. (#16134)Mathieu Velten2023-08-222-1/+2
|
* Add an admin endpoint to allow authorizing server to signal token ↵Shay2023-08-221-0/+1
| | | | revocations (#16125)
* Fix user directory test for deactivated support user. (#16157)Patrick Cloke2023-08-221-0/+1
| | | | Support users should not be added to the user directory after being deactivated.
* Raise poetry-core version cap to 1.7.0 (#16152)Theodore Ni2023-08-221-0/+1
|
* Properly call setup_background_tasks in unit tests. (#16150)Patrick Cloke2023-08-221-0/+1
| | | | | This should only be called on HomeServer objects which are configured to run background tasks, which is automatically (and properly) done via the call to setup().
* Disallow user_consent where experimental MSC3861 is enabled (#16127)Hugh Nimmo-Smith2023-08-221-0/+1
|
* Add `client_secret_path` as alternative for `client_secret` for OIDC config ↵Maximilian Bosch2023-08-211-0/+1
| | | | (#16030)
* Implements a task scheduler for resumable potentially long running tasks ↵Mathieu Velten2023-08-211-0/+1
| | | | (#15891)
* Speed up state res in rare case we don't have all events (#16116)Erik Johnston2023-08-181-0/+1
| | | | | | | If we don't have all the auth events in a room then not all state events will have a chain cover index. Even so, we can still use the chain cover index on the events that do have it, rather than bailing and using the slower functions. This situation should not arise for newly persisted rooms, as we check we have the full auth chain for each event, but can happen for existing rooms. c.f. #15245
* MSC3861: allow impersonation by an admin using a query param (#16132)Mathieu Velten2023-08-181-0/+1
|