version and towncrier

pull/14/head
Amber Brown 6 years ago
parent 77055dba92
commit 7e9ced4178
  1. 44
      CHANGES.md
  2. 1
      changelog.d/3378.misc
  3. 1
      changelog.d/3659.feature
  4. 1
      changelog.d/3673.misc
  5. 1
      changelog.d/3680.feature
  6. 1
      changelog.d/3722.bugfix
  7. 1
      changelog.d/3724.feature
  8. 1
      changelog.d/3725.misc
  9. 1
      changelog.d/3726.misc
  10. 1
      changelog.d/3727.misc
  11. 1
      changelog.d/3730.misc
  12. 1
      changelog.d/3734.misc
  13. 1
      changelog.d/3735.misc
  14. 1
      changelog.d/3737.misc
  15. 1
      changelog.d/3740.misc
  16. 1
      changelog.d/3746.misc
  17. 1
      changelog.d/3747.bugfix
  18. 1
      changelog.d/3749.feature
  19. 1
      changelog.d/3751.feature
  20. 1
      changelog.d/3753.bugfix
  21. 1
      changelog.d/3754.bugfix
  22. 1
      changelog.d/3755.bugfix
  23. 1
      changelog.d/3756.bugfix
  24. 1
      changelog.d/3758.bugfix
  25. 1
      changelog.d/3760.bugfix
  26. 1
      changelog.d/3764.misc
  27. 1
      changelog.d/3768.bugfix
  28. 1
      changelog.d/3777.bugfix
  29. 2
      synapse/__init__.py

@ -1,3 +1,47 @@
Synapse 0.33.4rc1 (2018-09-04)
==============================
Features
--------
- Support profile API endpoints on workers ([\#3659](https://github.com/matrix-org/synapse/issues/3659))
- Server notices for resource limit blocking ([\#3680](https://github.com/matrix-org/synapse/issues/3680))
- Allow guests to use /rooms/:roomId/event/:eventId ([\#3724](https://github.com/matrix-org/synapse/issues/3724))
- Add mau_trial_days config param, so that users only get counted as MAU after N days. ([\#3749](https://github.com/matrix-org/synapse/issues/3749))
- Require twisted 17.1 or later (fixes [#3741](https://github.com/matrix-org/synapse/issues/3741)). ([\#3751](https://github.com/matrix-org/synapse/issues/3751))
Bugfixes
--------
- Fix error collecting prometheus metrics when run on dedicated thread due to threading concurrency issues ([\#3722](https://github.com/matrix-org/synapse/issues/3722))
- Fix bug where we resent "limit exceeded" server notices repeatedly ([\#3747](https://github.com/matrix-org/synapse/issues/3747))
- Fix bug where we broke sync when using limit_usage_by_mau but hadn't configured server notices ([\#3753](https://github.com/matrix-org/synapse/issues/3753))
- Fix 'federation_domain_whitelist' such that an empty list correctly blocks all outbound federation traffic ([\#3754](https://github.com/matrix-org/synapse/issues/3754))
- Fix tagging of server notice rooms ([\#3755](https://github.com/matrix-org/synapse/issues/3755), [\#3756](https://github.com/matrix-org/synapse/issues/3756))
- Fix 'admin_uri' config variable and error parameter to be 'admin_contact' to match the spec. ([\#3758](https://github.com/matrix-org/synapse/issues/3758))
- Don't return non-LL-member state in incremental sync state blocks ([\#3760](https://github.com/matrix-org/synapse/issues/3760))
- Fix bug in sending presence over federation ([\#3768](https://github.com/matrix-org/synapse/issues/3768))
- Fix bug where preserved threepid user comes to sign up and server is mau blocked ([\#3777](https://github.com/matrix-org/synapse/issues/3777))
Internal Changes
----------------
- Removed the link to the unmaintained matrix-synapse-auto-deploy project from the readme. ([\#3378](https://github.com/matrix-org/synapse/issues/3378))
- Refactor state module to support multiple room versions ([\#3673](https://github.com/matrix-org/synapse/issues/3673))
- The synapse.storage module has been ported to Python 3. ([\#3725](https://github.com/matrix-org/synapse/issues/3725))
- Split the state_group_cache into member and non-member state events (and so speed up LL /sync) ([\#3726](https://github.com/matrix-org/synapse/issues/3726))
- Log failure to authenticate remote servers as warnings (without stack traces) ([\#3727](https://github.com/matrix-org/synapse/issues/3727))
- The CONTRIBUTING guidelines have been updated to mention our use of Markdown and that .misc files have content. ([\#3730](https://github.com/matrix-org/synapse/issues/3730))
- Reference the need for an HTTP replication port when using the federation_reader worker ([\#3734](https://github.com/matrix-org/synapse/issues/3734))
- Fix minor spelling error in federation client documentation. ([\#3735](https://github.com/matrix-org/synapse/issues/3735))
- Remove redundant state resolution function ([\#3737](https://github.com/matrix-org/synapse/issues/3737))
- The test suite now passes on PostgreSQL. ([\#3740](https://github.com/matrix-org/synapse/issues/3740))
- Fix MAU cache invalidation due to missing yield ([\#3746](https://github.com/matrix-org/synapse/issues/3746))
- Make sure that we close db connections opened during init ([\#3764](https://github.com/matrix-org/synapse/issues/3764))
Synapse 0.33.3 (2018-08-22)
===========================

@ -1 +0,0 @@
Removed the link to the unmaintained matrix-synapse-auto-deploy project from the readme.

@ -1 +0,0 @@
Support profile API endpoints on workers

@ -1 +0,0 @@
Refactor state module to support multiple room versions

@ -1 +0,0 @@
Server notices for resource limit blocking

@ -1 +0,0 @@
Fix error collecting prometheus metrics when run on dedicated thread due to threading concurrency issues

@ -1 +0,0 @@
Allow guests to use /rooms/:roomId/event/:eventId

@ -1 +0,0 @@
The synapse.storage module has been ported to Python 3.

@ -1 +0,0 @@
Split the state_group_cache into member and non-member state events (and so speed up LL /sync)

@ -1 +0,0 @@
Log failure to authenticate remote servers as warnings (without stack traces)

@ -1 +0,0 @@
The CONTRIBUTING guidelines have been updated to mention our use of Markdown and that .misc files have content.

@ -1 +0,0 @@
Reference the need for an HTTP replication port when using the federation_reader worker

@ -1 +0,0 @@
Fix minor spelling error in federation client documentation.

@ -1 +0,0 @@
Remove redundant state resolution function

@ -1 +0,0 @@
The test suite now passes on PostgreSQL.

@ -1 +0,0 @@
Fix MAU cache invalidation due to missing yield

@ -1 +0,0 @@
Fix bug where we resent "limit exceeded" server notices repeatedly

@ -1 +0,0 @@
Add mau_trial_days config param, so that users only get counted as MAU after N days.

@ -1 +0,0 @@
Require twisted 17.1 or later (fixes [#3741](https://github.com/matrix-org/synapse/issues/3741)).

@ -1 +0,0 @@
Fix bug where we broke sync when using limit_usage_by_mau but hadn't configured server notices

@ -1 +0,0 @@
Fix 'federation_domain_whitelist' such that an empty list correctly blocks all outbound federation traffic

@ -1 +0,0 @@
Fix tagging of server notice rooms

@ -1 +0,0 @@
Fix tagging of server notice rooms

@ -1 +0,0 @@
Fix 'admin_uri' config variable and error parameter to be 'admin_contact' to match the spec.

@ -1 +0,0 @@
Don't return non-LL-member state in incremental sync state blocks

@ -1 +0,0 @@
Make sure that we close db connections opened during init

@ -1 +0,0 @@
Fix bug in sending presence over federation

@ -1 +0,0 @@
Fix bug where preserved threepid user comes to sign up and server is mau blocked

@ -17,4 +17,4 @@
""" This is a reference implementation of a Matrix home server.
"""
__version__ = "0.33.3"
__version__ = "0.33.4rc1"

Loading…
Cancel
Save