summary refs log tree commit diff
path: root/docs (unfollow)
Commit message (Collapse)AuthorFilesLines
2019-11-04Use a sensible default value for labelsBrendan Abolivier1-1/+1
2019-11-04Use the right format for rowsBrendan Abolivier1-1/+1
2019-11-04MSC2326: Add background update to take previous events into accountBrendan Abolivier2-0/+72
2019-11-01Incorporate reviewBrendan Abolivier7-15/+21
2019-11-01Factor out an _AsyncEventContextImpl (#6298)Richard van der Hoff4-85/+65
The intention here is to make it clearer which fields we can expect to be populated when: notably, that the _event_type etc aren't used for the synchronous impl of EventContext.
2019-11-01Update synapse/storage/data_stores/main/schema/delta/56/event_labels.sqlBrendan Abolivier1-1/+1
Co-Authored-By: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
2019-11-02Add contributer docs for using the provided linters script (#6164)Jason Robinson3-0/+13
* Add lint dependencies black, flake8 and isort These are required when running the `lint.sh` dev scripts. Signed-off-by: Jason Robinson <jasonr@matrix.org> * Add contributer docs for using the providers linters script Add also to the pull request template to avoid build failures due to people not knowing that linters need running. Signed-off-by: Jason Robinson <jasonr@matrix.org> * Fix mention of linter errors correction Co-Authored-By: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Add mention for installing linter dependencies Co-Authored-By: Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> * Remove linters from python dependencies as per PR review Signed-off-by: Jason Robinson <jasonr@matrix.org>
2019-11-01Support for routing outbound HTTP requests via a proxy (#6239)Richard van der Hoff16-12/+812
The `http_proxy` and `HTTPS_PROXY` env vars can be set to a `host[:port]` value which should point to a proxy. The address of the proxy should be excluded from IP blacklists such as the `url_preview_ip_range_blacklist`. The proxy will then be used for * push * url previews * phone-home stats * recaptcha validation * CAS auth validation It will *not* be used for: * Application Services * Identity servers * Outbound federation * In worker configurations, connections from workers to masters Fixes #4198.