Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2019-07-08 | Update ModuleApi to avoid register(generate_token=True) (#5640) | Richard van der Hoff | 2 | -8/+57 | |
* Update ModuleApi to avoid register(generate_token=True) This is the only place this is still used, so I'm trying to kill it off. * changelog | |||||
2019-07-08 | Factor out some redundant code in the login impl (#5639) | Richard van der Hoff | 2 | -39/+11 | |
* Factor out some redundant code in the login impl Also fixes a redundant access_token which was generated during jwt login. * changelog | |||||
2019-07-08 | Move get_or_create_user to test code (#5628) | Richard van der Hoff | 3 | -60/+60 | |
This is only used in tests, so... | |||||
2019-07-08 | Lint | Brendan Abolivier | 1 | -1/+2 | |
2019-07-08 | Use application/json when querying the IS's /store-invite endpoint | Brendan Abolivier | 1 | -4/+17 | |
2019-07-08 | Add a few more common environment directory names to black exclusion (#5630) | Andrew Morgan | 2 | -0/+3 | |
* Add a few more common environment directory names to black exclusion * Add changelog | |||||
2019-07-05 | Add default push rule to ignore reactions (#5623) | J. Ryan Stinnett | 2 | -0/+14 | |
This adds a default push rule following the proposal in [MSC2153](https://github.com/matrix-org/matrix-doc/pull/2153). See also https://github.com/vector-im/riot-web/issues/10208 See also https://github.com/matrix-org/matrix-js-sdk/pull/976 | |||||
2019-07-05 | Add origin_server_ts and sender fields to m.replace (#5613) | Andrew Morgan | 3 | -7/+24 | |
Riot team would like some extra fields as part of m.replace, so here you go. Fixes: #5598 | |||||
2019-07-05 | Remove support for invite_3pid_guest. (#5625) | Richard van der Hoff | 7 | -196/+3 | |
This has never been documented, and I'm not sure it's ever been used outside sytest. It's quite a lot of poorly-maintained code, so I'd like to get rid of it. For now I haven't removed the database table; I suggest we leave that for a future clearout. | |||||
2019-07-05 | remove dead transaction persist code (#5622) | Richard van der Hoff | 4 | -69/+1 | |
this hasn't done anything for years | |||||
2019-07-05 | Fixes to the federation rate limiter (#5621) | Richard van der Hoff | 6 | -16/+148 | |
- Put the default window_size back to 1000ms (broken by #5181) - Make the `rc_federation` config actually do something - fix an off-by-one error in the 'concurrent' limit - Avoid creating an unused `_PerHostRatelimiter` object for every single incoming request | |||||
2019-07-05 | Make errors about email password resets much clearer (#5616) | Andrew Morgan | 2 | -11/+9 | |
The runtime errors that dealt with local email password resets talked about config options that users may not even have in their config file yet (if upgrading). Instead, the cryptic errors are now replaced with hopefully much more helpful ones. | |||||
2019-07-05 | Improve the backwards compatibility re-exports of synapse.logging.context ↵ | Amber Brown | 4 | -5/+62 | |
(#5617) * Improve the backwards compatibility re-exports of synapse.logging.context. * reexport logformatter too | |||||
2019-07-05 | Add a sytest blacklist file (#5611) | Andrew Morgan | 5 | -148/+43 | |
* Add a sytest blacklist file * Add changelog * Add blacklist to manifest | |||||
2019-07-04 | Update changelog v1.1.0 github/release-v1.1.0 release-v1.1.0 | Erik Johnston | 1 | -0/+10 | |
2019-07-04 | 1.1.0 | Erik Johnston | 4 | -4/+9 | |
2019-07-04 | Suggest people use a config file for Docker instead of env vars | Andrew Morgan | 2 | -1/+2 | |
2019-07-04 | Move logging utilities out of the side drawer of util/ and into logging/ (#5606) | Amber Brown | 98 | -233/+249 | |
2019-07-03 | Fix 'utime went backwards' errors on daemonization. (#5609) | Richard van der Hoff | 3 | -31/+44 | |
* Fix 'utime went backwards' errors on daemonization. Fixes #5608 * remove spurious debug | |||||
2019-07-03 | 1.1.0rc2 v1.1.0rc2 | Richard van der Hoff | 6 | -5/+18 | |
2019-07-03 | Fix a number of "Starting txn from sentinel context" warnings (#5605) | Richard van der Hoff | 5 | -6/+35 | |
Fixes #5602, #5603 | |||||
2019-07-03 | Remove SMTP_* env var functionality from docker conf (#5596) | Andrew Morgan | 2 | -19/+1 | |
Removes any `SMTP_*` docker container environment variables from having any effe |