summary refs log tree commit diff
path: root/scripts-dev/check_signature.py (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-09-18Simplify super() calls to Python 3 syntax. (#8344)Patrick Cloke133-281/+272
This converts calls like super(Foo, self) -> super(). Generated with: sed -i "" -Ee 's/super\([^\(]+\)/super()/g' **/*.py
2020-09-18Allow appservice users to /login (#8320)Will Hunt3-11/+173
Add ability for ASes to /login using the `uk.half-shot.msc2778.login.application_service` login `type`. Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
2020-09-18Update test logging to be able to accept braces (#8335)Jonathan de Jong2-2/+2
2020-09-18Fix ratelimiting for federation `/send` requests. (#8342)Erik Johnston4-17/+54
c.f. #8295 for rationale
2020-09-17Move lint dependencies to extras_require (#8330)Jonathan de Jong4-12/+10
Lint dependencies can now be installed with pip install -e ".[lint]" This should help keep the version in sync between tox and documentation.
2020-09-17blacklist MSC2753 sytests until it's implemented in synapse (#8285)Matthew Hodgson2-0/+9
Dendrite's implementing MSC2753 over at https://github.com/matrix-org/dendrite/pull/1370 to prove the implementation for MSC purposes, and so sytest has sprouted tests for it over at https://github.com/matrix-org/sytest/pull/944. But we don't want them to run on synapse until synapse implements it.
2020-09-17Remove obsolete __future__ imports (#8337)Jonathan de Jong19-40/+2
2020-09-17Use admin_patterns for all admin APIs. (#8331)Patrick Cloke7-26/+20
This reduces duplication of the admin prefix in regular expressions.
2020-09-17Fix a potential bug of UnboundLocalError (#8329)Jonathan de Jong2-5/+9