code_spécifique_watcha
Andrew Morgan 5 years ago
parent 234f55f3c4
commit 41e4566682
  1. 74
      CHANGES.md
  2. 1
      changelog.d/5727.feature
  3. 1
      changelog.d/6140.misc
  4. 1
      changelog.d/6164.doc
  5. 1
      changelog.d/6213.bugfix
  6. 1
      changelog.d/6218.misc
  7. 1
      changelog.d/6220.feature
  8. 1
      changelog.d/6232.bugfix
  9. 1
      changelog.d/6235.bugfix
  10. 1
      changelog.d/6238.feature
  11. 1
      changelog.d/6240.misc
  12. 1
      changelog.d/6250.misc
  13. 1
      changelog.d/6251.misc
  14. 1
      changelog.d/6253.bugfix
  15. 1
      changelog.d/6254.bugfix
  16. 1
      changelog.d/6257.doc
  17. 1
      changelog.d/6259.misc
  18. 1
      changelog.d/6263.misc
  19. 1
      changelog.d/6269.misc
  20. 1
      changelog.d/6270.misc
  21. 1
      changelog.d/6271.misc
  22. 1
      changelog.d/6272.doc
  23. 1
      changelog.d/6273.doc
  24. 1
      changelog.d/6274.misc
  25. 1
      changelog.d/6275.misc
  26. 1
      changelog.d/6276.misc
  27. 1
      changelog.d/6277.misc
  28. 1
      changelog.d/6278.bugfix
  29. 1
      changelog.d/6279.misc
  30. 1
      changelog.d/6280.misc
  31. 1
      changelog.d/6284.bugfix
  32. 1
      changelog.d/6291.misc
  33. 1
      changelog.d/6294.misc
  34. 1
      changelog.d/6295.misc
  35. 1
      changelog.d/6298.misc
  36. 1
      changelog.d/6300.misc
  37. 1
      changelog.d/6301.feature
  38. 1
      changelog.d/6304.misc
  39. 1
      changelog.d/6305.misc
  40. 1
      changelog.d/6306.bugfix
  41. 1
      changelog.d/6307.bugfix
  42. 1
      changelog.d/6308.misc
  43. 1
      changelog.d/6310.feature
  44. 1
      changelog.d/6312.misc
  45. 1
      changelog.d/6313.bugfix
  46. 1
      changelog.d/6314.misc
  47. 1
      changelog.d/6317.misc
  48. 1
      changelog.d/6318.misc
  49. 1
      changelog.d/6319.misc
  50. 1
      changelog.d/6320.bugfix
  51. 1
      changelog.d/6330.misc
  52. 1
      changelog.d/6335.bugfix
  53. 1
      changelog.d/6336.misc
  54. 1
      changelog.d/6338.bugfix
  55. 1
      changelog.d/6340.feature
  56. 1
      changelog.d/6341.misc
  57. 1
      changelog.d/6357.misc
  58. 1
      changelog.d/6359.bugfix
  59. 1
      changelog.d/6361.misc
  60. 1
      changelog.d/6363.bugfix
  61. 1
      changelog.d/6389.bugfix
  62. 2
      synapse/__init__.py

@ -1,3 +1,77 @@
Synapse 1.6.0rc1 (2019-11-20)
=============================
Features
--------
- Add federation support for cross-signing. ([\#5727](https://github.com/matrix-org/synapse/issues/5727))
- Increase default room version from 4 to 5, thereby enforcing server key validity period checks. ([\#6220](https://github.com/matrix-org/synapse/issues/6220))
- Add support for outbound http proxying via http_proxy/HTTPS_PROXY env vars. ([\#6238](https://github.com/matrix-org/synapse/issues/6238))
- Implement label-based filtering on `/sync` and `/messages` ([MSC2326](https://github.com/matrix-org/matrix-doc/pull/2326)). ([\#6301](https://github.com/matrix-org/synapse/issues/6301), [\#6310](https://github.com/matrix-org/synapse/issues/6310), [\#6340](https://github.com/matrix-org/synapse/issues/6340))
Bugfixes
--------
- Fix LruCache callback deduplication for Python 3.8. Contributed by @V02460. ([\#6213](https://github.com/matrix-org/synapse/issues/6213))
- Remove a room from a server's public rooms list on room upgrade. ([\#6232](https://github.com/matrix-org/synapse/issues/6232), [\#6235](https://github.com/matrix-org/synapse/issues/6235))
- Delete keys from key backup when deleting backup versions. ([\#6253](https://github.com/matrix-org/synapse/issues/6253))
- Make notification of cross-signing signatures work with workers. ([\#6254](https://github.com/matrix-org/synapse/issues/6254))
- Fix exception when remote servers attempt to join a room that they're not allowed to join. ([\#6278](https://github.com/matrix-org/synapse/issues/6278))
- Prevent errors from appearing on Synapse startup if `git` is not installed. ([\#6284](https://github.com/matrix-org/synapse/issues/6284))
- Appservice requests will no longer contain a double slash prefix when the appservice url provided ends in a slash. ([\#6306](https://github.com/matrix-org/synapse/issues/6306))
- Fix `/purge_room` admin API. ([\#6307](https://github.com/matrix-org/synapse/issues/6307))
- Fix the `hidden` field in the `devices` table for SQLite versions prior to 3.23.0. ([\#6313](https://github.com/matrix-org/synapse/issues/6313))
- Fix bug which casued rejected events to be persisted with the wrong room state. ([\#6320](https://github.com/matrix-org/synapse/issues/6320))
- Fix bug where `rc_login` ratelimiting would prematurely kick in. ([\#6335](https://github.com/matrix-org/synapse/issues/6335))
- Prevent the server taking a long time to start up when guest registration is enabled. ([\#6338](https://github.com/matrix-org/synapse/issues/6338))
- Fix bug where upgrading a guest account to a full user would fail when account validity is enabled. ([\#6359](https://github.com/matrix-org/synapse/issues/6359))
- Fix `to_device` stream ID getting reset every time Synapse restarts, which had the potential to cause unable to decrypt errors. ([\#6363](https://github.com/matrix-org/synapse/issues/6363))
- Fix permission denied error when trying to generate a config file with the docker image. ([\#6389](https://github.com/matrix-org/synapse/issues/6389))
Improved Documentation
----------------------
- Contributor documentation now mentions script to run linters. ([\#6164](https://github.com/matrix-org/synapse/issues/6164))
- Modify CAPTCHA_SETUP.md to update the terms `private key` and `public key` to `secret key` and `site key` respectively. Contributed by Yash Jipkate. ([\#6257](https://github.com/matrix-org/synapse/issues/6257))
- Update `INSTALL.md` Email section to talk about `account_threepid_delegates`. ([\#6272](https://github.com/matrix-org/synapse/issues/6272))
- Fix a small typo in `account_threepid_delegates` configuration option. ([\#6273](https://github.com/matrix-org/synapse/issues/6273))
Internal Changes
----------------
- Add a CI job to test the `synapse_port_db` script. ([\#6140](https://github.com/matrix-org/synapse/issues/6140), [\#6276](https://github.com/matrix-org/synapse/issues/6276))
- Convert EventContext to an attrs. ([\#6218](https://github.com/matrix-org/synapse/issues/6218))
- Move `persist_events` out from main data store. ([\#6240](https://github.com/matrix-org/synapse/issues/6240), [\#6300](https://github.com/matrix-org/synapse/issues/6300))
- Reduce verbosity of user/room stats. ([\#6250](https://github.com/matrix-org/synapse/issues/6250))
- Reduce impact of debug logging. ([\#6251](https://github.com/matrix-org/synapse/issues/6251))
- Expose some homeserver functionality to spam checkers. ([\#6259](https://github.com/matrix-org/synapse/issues/6259))
- Change cache descriptors to always return deferreds. ([\#6263](https://github.com/matrix-org/synapse/issues/6263), [\#6291](https://github.com/matrix-org/synapse/issues/6291))
- Fix incorrect comment regarding the functionality of an `if` statement. ([\#6269](https://github.com/matrix-org/synapse/issues/6269))
- Update CI to run `isort` over the `scripts` and `scripts-dev` directories. ([\#6270](https://github.com/matrix-org/synapse/issues/6270))
- Replace every instance of `logger.warn` method with `logger.warning` as the former is deprecated. ([\#6271](https://github.com/matrix-org/synapse/issues/6271), [\#6314](https://github.com/matrix-org/synapse/issues/6314))
- Port replication http server endpoints to async/await. ([\#6274](https://github.com/matrix-org/synapse/issues/6274))
- Port room rest handlers to async/await. ([\#6275](https://github.com/matrix-org/synapse/issues/6275))
- Remove redundant CLI parameters on CI's `flake8` step. ([\#6277](https://github.com/matrix-org/synapse/issues/6277))
- Port `federation_server.py` to async/await. ([\#6279](https://github.com/matrix-org/synapse/issues/6279))
- Port receipt and read markers to async/wait. ([\#6280](https://github.com/matrix-org/synapse/issues/6280))
- Split out state storage into separate data store. ([\#6294](https://github.com/matrix-org/synapse/issues/6294), [\#6295](https://github.com/matrix-org/synapse/issues/6295))
- Refactor EventContext for clarity. ([\#6298](https://github.com/matrix-org/synapse/issues/6298))
- Update the version of black used to 19.10b0. ([\#6304](https://github.com/matrix-org/synapse/issues/6304))
- Add some documentation about worker replication. ([\#6305](https://github.com/matrix-org/synapse/issues/6305))
- Move admin endpoints into separate files. Contributed by Awesome Technologies Innovationslabor GmbH. ([\#6308](https://github.com/matrix-org/synapse/issues/6308))
- Document the use of `lint.sh` for code style enforcement & extend it to run on specified paths only. ([\#6312](https://github.com/matrix-org/synapse/issues/6312))
- Add optional python dependencies and dependant binary libraries to snapcraft packaging. ([\#6317](https://github.com/matrix-org/synapse/issues/6317))
- Remove the dependency on psutil and replace functionality with the stdlib `resource` module. ([\#6318](https://github.com/matrix-org/synapse/issues/6318), [\#6336](https://github.com/matrix-org/synapse/issues/6336))
- Improve documentation for EventContext fields. ([\#6319](https://github.com/matrix-org/synapse/issues/6319))
- Add some checks that we aren't using state from rejected events. ([\#6330](https://github.com/matrix-org/synapse/issues/6330))
- Add continuous integration for python 3.8. ([\#6341](https://github.com/matrix-org/synapse/issues/6341))
- Correct spacing/case of various instances of the word "homeserver". ([\#6357](https://github.com/matrix-org/synapse/issues/6357))
- Temporarily blacklist the failing unit test PurgeRoomTestCase.test_purge_room. ([\#6361](https://github.com/matrix-org/synapse/issues/6361))
Synapse 1.5.1 (2019-11-06)
==========================

@ -1 +0,0 @@
Add federation support for cross-signing.

@ -1 +0,0 @@
Add a CI job to test the `synapse_port_db` script.

@ -1 +0,0 @@
Contributor documentation now mentions script to run linters.

@ -1 +0,0 @@
Fix LruCache callback deduplication for Python 3.8. Contributed by @V02460.

@ -1 +0,0 @@
Convert EventContext to an attrs.

@ -1 +0,0 @@
Increase default room version from 4 to 5, thereby enforcing server key validity period checks.

@ -1 +0,0 @@
Remove a room from a server's public rooms list on room upgrade.

@ -1 +0,0 @@
Remove a room from a server's public rooms list on room upgrade.

@ -1 +0,0 @@
Add support for outbound http proxying via http_proxy/HTTPS_PROXY env vars.

@ -1 +0,0 @@
Move `persist_events` out from main data store.

@ -1 +0,0 @@
Reduce verbosity of user/room stats.

@ -1 +0,0 @@
Reduce impact of debug logging.

@ -1 +0,0 @@
Delete keys from key backup when deleting backup versions.

@ -1 +0,0 @@
Make notification of cross-signing signatures work with workers.

@ -1 +0,0 @@
Modify CAPTCHA_SETUP.md to update the terms `private key` and `public key` to `secret key` and `site key` respectively. Contributed by Yash Jipkate.

@ -1 +0,0 @@
Expose some homeserver functionality to spam checkers.

@ -1 +0,0 @@
Change cache descriptors to always return deferreds.

@ -1 +0,0 @@
Fix incorrect comment regarding the functionality of an `if` statement.

@ -1 +0,0 @@
Update CI to run `isort` over the `scripts` and `scripts-dev` directories.

@ -1 +0,0 @@
Replace every instance of `logger.warn` method with `logger.warning` as the former is deprecated.

@ -1 +0,0 @@
Update `INSTALL.md` Email section to talk about `account_threepid_delegates`.

@ -1 +0,0 @@
Fix a small typo in `account_threepid_delegates` configuration option.

@ -1 +0,0 @@
Port replication http server endpoints to async/await.

@ -1 +0,0 @@
Port room rest handlers to async/await.

@ -1 +0,0 @@
Add a CI job to test the `synapse_port_db` script.

@ -1 +0,0 @@
Remove redundant CLI parameters on CI's `flake8` step.

@ -1 +0,0 @@
Fix exception when remote servers attempt to join a room that they're not allowed to join.

@ -1 +0,0 @@
Port `federation_server.py` to async/await.

@ -1 +0,0 @@
Port receipt and read markers to async/wait.

@ -1 +0,0 @@
Prevent errors from appearing on Synapse startup if `git` is not installed.

@ -1 +0,0 @@
Change cache descriptors to always return deferreds.

@ -1 +0,0 @@
Split out state storage into separate data store.

@ -1 +0,0 @@
Split out state storage into separate data store.

@ -1 +0,0 @@
Refactor EventContext for clarity.

@ -1 +0,0 @@
Move `persist_events` out from main data store.

@ -1 +0,0 @@
Implement label-based filtering on `/sync` and `/messages` ([MSC2326](https://github.com/matrix-org/matrix-doc/pull/2326)).

@ -1 +0,0 @@
Update the version of black used to 19.10b0.

@ -1 +0,0 @@
Add some documentation about worker replication.

@ -1 +0,0 @@
Appservice requests will no longer contain a double slash prefix when the appservice url provided ends in a slash.

@ -1 +0,0 @@
Fix `/purge_room` admin API.

@ -1 +0,0 @@
Move admin endpoints into separate files. Contributed by Awesome Technologies Innovationslabor GmbH.

@ -1 +0,0 @@
Implement label-based filtering on `/sync` and `/messages` ([MSC2326](https://github.com/matrix-org/matrix-doc/pull/2326)).

@ -1 +0,0 @@
Document the use of `lint.sh` for code style enforcement & extend it to run on specified paths only.

@ -1 +0,0 @@
Fix the `hidden` field in the `devices` table for SQLite versions prior to 3.23.0.

@ -1 +0,0 @@
Replace every instance of `logger.warn` method with `logger.warning` as the former is deprecated.

@ -1 +0,0 @@
Add optional python dependencies and dependant binary libraries to snapcraft packaging.

@ -1 +0,0 @@
Remove the dependency on psutil and replace functionality with the stdlib `resource` module.

@ -1 +0,0 @@
Improve documentation for EventContext fields.

@ -1 +0,0 @@
Fix bug which casued rejected events to be persisted with the wrong room state.

@ -1 +0,0 @@
Add some checks that we aren't using state from rejected events.

@ -1 +0,0 @@
Fix bug where `rc_login` ratelimiting would prematurely kick in.

@ -1 +0,0 @@
Remove the dependency on psutil and replace functionality with the stdlib `resource` module.

@ -1 +0,0 @@
Prevent the server taking a long time to start up when guest registration is enabled.

@ -1 +0,0 @@
Implement label-based filtering on `/sync` and `/messages` ([MSC2326](https://github.com/matrix-org/matrix-doc/pull/2326)).

@ -1 +0,0 @@
Add continuous integration for python 3.8.

@ -1 +0,0 @@
Correct spacing/case of various instances of the word "homeserver".

@ -1 +0,0 @@
Fix bug where upgrading a guest account to a full user would fail when account validity is enabled.

@ -1 +0,0 @@
Temporarily blacklist the failing unit test PurgeRoomTestCase.test_purge_room.

@ -1 +0,0 @@
Fix `to_device` stream ID getting reset every time Synapse restarts, which had the potential to cause unable to decrypt errors.

@ -1 +0,0 @@
Fix permission denied error when trying to generate a config file with the docker image.

@ -36,7 +36,7 @@ try:
except ImportError:
pass
__version__ = "1.5.1"
__version__ = "1.6.0rc1"
if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
# We import here so that we don't have to install a bunch of deps when

Loading…
Cancel
Save