Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2019-06-10 | fix CI on python 2.7 | Richard van der Hoff | 1 | -6/+4 | |
2019-06-10 | fix build fails | Richard van der Hoff | 2 | -1/+4 | |
2019-06-10 | Tests for SSL certs for federation connections | Richard van der Hoff | 6 | -106/+343 | |
Add some tests for bad certificates for federation and .well-known connections | |||||
2019-06-10 | Fix federation connections to literal IP addresses | Richard van der Hoff | 2 | -6/+11 | |
turns out we need a shiny version of service_identity to enforce this correctly. | |||||
2019-06-10 | clean up impl, and import idna directly | Richard van der Hoff | 2 | -15/+12 | |
2019-06-09 | Share an SSL context object between SSL connections | Richard van der Hoff | 1 | -60/+89 | |
This involves changing how the info callbacks work. | |||||
2019-06-07 | 1.0.0rc1 v1.0.0rc1 | Neil Johnson | 81 | -83/+84 | |
2019-06-07 | Automatically retry builds when a buildkite agent is lost (#5380) | Andrew Morgan | 2 | -0/+67 | |
Sometimes the build agents get lost or die (error codes -1 and 2). Retry automatically a maximum of 2 times if this happens. Error code reference: * -1: Agent was lost * 0: Build successful * 1: There was an error in your code * 2: The build stopped abruptly * 255: The build was cancelled | |||||
2019-06-06 | Prevent multiple device list updates from breaking a batch send (#5156) | Andrew Morgan | 4 | -31/+196 | |
fixes #5153 | |||||
2019-06-06 | Set default room version to v4. (#5379) | Neil Johnson | 5 | -3/+11 | |
Set default room version to v4. | |||||
2019-06-06 | remove bloat | Neil Johnson | 1 | -10/+1 | |
2019-06-07 | fix maybe | Amber H. Brown | 1 | -20/+2 | |
2019-06-06 | Add ability to perform password reset via email without trusting the ↵ | Andrew Morgan | 20 | -71/+922 | |
identity server (#5377) Sends password reset emails from the homeserver instead of proxying to the identity server. This is now the default behaviour for security reasons. If you wish to continue proxying password reset requests to the identity server you must now enable the email.trust_identity_server_for_password_resets option. This PR is a culmination of 3 smaller PRs which have each been separately reviewed: * #5308 * #5345 * #5368 | |||||
2019-06-06 | Stop hardcoding trust of old matrix.org key (#5374) | Richard van der Hoff | 6 | -95/+293 | |
There are a few changes going on here: * We make checking the signature on a key server response optional: if no verify_keys are specified, we trust to TLS to validate the connection. * We change the default config so that it does not require responses to be signed by the old key. * We replace the old 'perspectives' config with 'trusted_key_servers', which is also formatted slightly differently. * We emit a warning to the logs every time we trust a key server response signed by the old key. | |||||
2019-06-06 | Neilj/1.0 upgrade notes (#5371) | Neil Johnson | 4 | -8/+79 | |
1.0 upgrade/install notes | |||||
2019-06-07 | just user dir? | Amber H. Brown | 1 | -1/+19 | |
2019-06-06 | Regen sample config before kicking off agents (#5370) | Andrew Morgan | 2 | -2/+3 | |
* Regen sample config before kicking off agents * Add changelog | |||||
2019-06-07 | remove background updates that arent needed | Amber H. Brown | 1 | -33/+1 | |
2019-06-06 | Fix missing logcontext for PresenceHandler.on_shutdown. (#5369) | Richard van der Hoff | 2 | -1/+8 | |
Fixes some warnings, and a scary-looking stacktrace when sytest kills the process. | |||||
2019-06-06 | Better words | Erik Johnston | 1 | -1/+1 | |
2019-06-06 | Add credit in the changelog | Brendan Abolivier | 2 | -1/+1 | |
2019-06-06 | Simplify condition | Brendan Abolivier | 1 | -2/+2 | |
2019-06-06 | add more comments | Amber Brown | 1 | -0/+5 | |
2019-06-05 | Fix `federation_custom_ca_list` configuration option. | Richard van der Hoff | 2 | -1/+2 | |
Previously, setting this option would cause an exception at startup. | |||||
2019-06-05 | Neilj/add r0.5 to versions (#5360) | Neil Johnson | 2 | -0/+2 | |
* Update _matrix/client/versions to reference support for r0.5.0 | |||||
2019-06-06 | Fix background updates to handle redactions/rejections (#5352) | Erik Johnston | 5 | -12/+117 | |
* Fix background updates to handle redactions/rejections In background updates based on current state delta stream we need to handle that we may not have all the events (or at least that `get_events` may raise an exception). | |||||
2019-06-05 | add a script to generate new signing_key files | Richard van der Hoff | 2 | -0/+38 | |
2019-06-05 | Update sample config | Richard van der Hoff | 1 | -4/+4 | |
2019-06-05 | Fix notes about well-known and acme (#5357) | Richard van der Hoff | 2 | -6/+6 | |
fixes #4951 | |||||
2019-06-05 | Validate federation server TLS certificates by default. | Richard van der Hoff | 3 | -8/+15 | |
2019-06-05 | Simplify condition |