mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Merge branch 'master' into develop
This commit is contained in:
commit
d86794325f
@ -156,7 +156,7 @@ workflows:
|
||||
- dockerhubuploadrelease:
|
||||
filters:
|
||||
tags:
|
||||
only: /^v[0-9].[0-9]+.[0-9]+(.[0-9]+)?/
|
||||
only: /v[0-9].[0-9]+.[0-9]+.*/
|
||||
branches:
|
||||
ignore: /.*/
|
||||
- dockerhubuploadlatest:
|
||||
|
84
CHANGES.md
84
CHANGES.md
@ -1,11 +1,91 @@
|
||||
Synapse 0.33.6 (2018-10-04)
|
||||
===========================
|
||||
|
||||
Internal Changes
|
||||
----------------
|
||||
|
||||
- Pin to prometheus_client<0.4 to avoid renaming all of our metrics ([\#4002](https://github.com/matrix-org/synapse/issues/4002))
|
||||
|
||||
|
||||
Synapse 0.33.6rc1 (2018-10-03)
|
||||
==============================
|
||||
|
||||
Features
|
||||
--------
|
||||
|
||||
- Adding the ability to change MAX_UPLOAD_SIZE for the docker container variables. ([\#3883](https://github.com/matrix-org/synapse/issues/3883))
|
||||
- Report "python_version" in the phone home stats ([\#3894](https://github.com/matrix-org/synapse/issues/3894))
|
||||
- Always LL ourselves if we're in a room ([\#3916](https://github.com/matrix-org/synapse/issues/3916))
|
||||
- Include eventid in log lines when processing incoming federation transactions ([\#3959](https://github.com/matrix-org/synapse/issues/3959))
|
||||
- Remove spurious check which made 'localhost' servers not work ([\#3964](https://github.com/matrix-org/synapse/issues/3964))
|
||||
|
||||
|
||||
Bugfixes
|
||||
--------
|
||||
|
||||
- Fix problem when playing media from Chrome using direct URL (thanks @remjey!) ([\#3578](https://github.com/matrix-org/synapse/issues/3578))
|
||||
- support registering regular users non-interactively with register_new_matrix_user script ([\#3836](https://github.com/matrix-org/synapse/issues/3836))
|
||||
- Fix broken invite email links for self hosted riots ([\#3868](https://github.com/matrix-org/synapse/issues/3868))
|
||||
- Don't ratelimit autojoins ([\#3879](https://github.com/matrix-org/synapse/issues/3879))
|
||||
- Fix 500 error when deleting unknown room alias ([\#3889](https://github.com/matrix-org/synapse/issues/3889))
|
||||
- Fix some b'abcd' noise in logs and metrics ([\#3892](https://github.com/matrix-org/synapse/issues/3892), [\#3895](https://github.com/matrix-org/synapse/issues/3895))
|
||||
- When we join a room, always try the server we used for the alias lookup first, to avoid unresponsive and out-of-date servers. ([\#3899](https://github.com/matrix-org/synapse/issues/3899))
|
||||
- Fix incorrect server-name indication for outgoing federation requests ([\#3907](https://github.com/matrix-org/synapse/issues/3907))
|
||||
- Fix adding client IPs to the database failing on Python 3. ([\#3908](https://github.com/matrix-org/synapse/issues/3908))
|
||||
- Fix bug where things occaisonally were not being timed out correctly. ([\#3910](https://github.com/matrix-org/synapse/issues/3910))
|
||||
- Fix bug where outbound federation would stop talking to some servers when using workers ([\#3914](https://github.com/matrix-org/synapse/issues/3914))
|
||||
- Fix some instances of ExpiringCache not expiring cache items ([\#3932](https://github.com/matrix-org/synapse/issues/3932), [\#3980](https://github.com/matrix-org/synapse/issues/3980))
|
||||
- Fix out-of-bounds error when LLing yourself ([\#3936](https://github.com/matrix-org/synapse/issues/3936))
|
||||
- Sending server notices regarding user consent now works on Python 3. ([\#3938](https://github.com/matrix-org/synapse/issues/3938))
|
||||
- Fix exceptions from metrics handler ([\#3956](https://github.com/matrix-org/synapse/issues/3956))
|
||||
- Fix error message for events with m.room.create missing from auth_events ([\#3960](https://github.com/matrix-org/synapse/issues/3960))
|
||||
- Fix errors due to concurrent monthly_active_user upserts ([\#3961](https://github.com/matrix-org/synapse/issues/3961))
|
||||
- Fix exceptions when processing incoming events over federation ([\#3968](https://github.com/matrix-org/synapse/issues/3968))
|
||||
- Replaced all occurences of e.message with str(e). Contributed by Schnuffle ([\#3970](https://github.com/matrix-org/synapse/issues/3970))
|
||||
- Fix lazy loaded sync in the presence of rejected state events ([\#3986](https://github.com/matrix-org/synapse/issues/3986))
|
||||
- Fix error when logging incomplete HTTP requests ([\#3990](https://github.com/matrix-org/synapse/issues/3990))
|
||||
|
||||
|
||||
Internal Changes
|
||||
----------------
|
||||
|
||||
- Unit tests can now be run under PostgreSQL in Docker using ``test_postgresql.sh``. ([\#3699](https://github.com/matrix-org/synapse/issues/3699))
|
||||
- Speed up calculation of typing updates for replication ([\#3794](https://github.com/matrix-org/synapse/issues/3794))
|
||||
- Remove documentation regarding installation on Cygwin, the use of WSL is recommended instead. ([\#3873](https://github.com/matrix-org/synapse/issues/3873))
|
||||
- Fix typo in README, synaspse -> synapse ([\#3897](https://github.com/matrix-org/synapse/issues/3897))
|
||||
- Increase the timeout when filling missing events in federation requests ([\#3903](https://github.com/matrix-org/synapse/issues/3903))
|
||||
- Improve the logging when handling a federation transaction ([\#3904](https://github.com/matrix-org/synapse/issues/3904), [\#3966](https://github.com/matrix-org/synapse/issues/3966))
|
||||
- Improve logging of outbound federation requests ([\#3906](https://github.com/matrix-org/synapse/issues/3906), [\#3909](https://github.com/matrix-org/synapse/issues/3909))
|
||||
- Fix the docker image building on python 3 ([\#3911](https://github.com/matrix-org/synapse/issues/3911))
|
||||
- Add a regression test for logging failed HTTP requests on Python 3. ([\#3912](https://github.com/matrix-org/synapse/issues/3912))
|
||||
- Comments and interface cleanup for on_receive_pdu ([\#3924](https://github.com/matrix-org/synapse/issues/3924))
|
||||
- Fix spurious exceptions when remote http client closes conncetion ([\#3925](https://github.com/matrix-org/synapse/issues/3925))
|
||||
- Log exceptions thrown by background tasks ([\#3927](https://github.com/matrix-org/synapse/issues/3927))
|
||||
- Add a cache to get_destination_retry_timings ([\#3933](https://github.com/matrix-org/synapse/issues/3933), [\#3991](https://github.com/matrix-org/synapse/issues/3991))
|
||||
- Automate pushes to docker hub ([\#3946](https://github.com/matrix-org/synapse/issues/3946))
|
||||
- Require attrs 16.0.0 or later ([\#3947](https://github.com/matrix-org/synapse/issues/3947))
|
||||
- Fix incompatibility with python3 on alpine ([\#3948](https://github.com/matrix-org/synapse/issues/3948))
|
||||
- Run the test suite on the oldest supported versions of our dependencies in CI. ([\#3952](https://github.com/matrix-org/synapse/issues/3952))
|
||||
- CircleCI now only runs merged jobs on PRs, and commit jobs on develop, master, and release branches. ([\#3957](https://github.com/matrix-org/synapse/issues/3957))
|
||||
- Fix docstrings and add tests for state store methods ([\#3958](https://github.com/matrix-org/synapse/issues/3958))
|
||||
- fix docstring for FederationClient.get_state_for_room ([\#3963](https://github.com/matrix-org/synapse/issues/3963))
|
||||
- Run notify_app_services as a bg process ([\#3965](https://github.com/matrix-org/synapse/issues/3965))
|
||||
- Clarifications in FederationHandler ([\#3967](https://github.com/matrix-org/synapse/issues/3967))
|
||||
- Further reduce the docker image size ([\#3972](https://github.com/matrix-org/synapse/issues/3972))
|
||||
- Build py3 docker images for docker hub too ([\#3976](https://github.com/matrix-org/synapse/issues/3976))
|
||||
- Updated the installation instructions to point to the matrix-synapse package on PyPI. ([\#3985](https://github.com/matrix-org/synapse/issues/3985))
|
||||
- Disable USE_FROZEN_DICTS for unittests by default. ([\#3987](https://github.com/matrix-org/synapse/issues/3987))
|
||||
- Remove unused Jenkins and development related files from the repo. ([\#3988](https://github.com/matrix-org/synapse/issues/3988))
|
||||
- Improve stacktraces in certain exceptions in the logs ([\#3989](https://github.com/matrix-org/synapse/issues/3989))
|
||||
|
||||
|
||||
Synapse 0.33.5.1 (2018-09-25)
|
||||
=============================
|
||||
|
||||
Internal Changes
|
||||
----------------
|
||||
|
||||
- Fix incompatibility with older Twisted version in tests. Thanks
|
||||
@OlegGirko! ([\#3940](https://github.com/matrix-org/synapse/issues/3940))
|
||||
- Fix incompatibility with older Twisted version in tests. Thanks @OlegGirko! ([\#3940](https://github.com/matrix-org/synapse/issues/3940))
|
||||
|
||||
|
||||
Synapse 0.33.5 (2018-09-24)
|
||||
|
@ -1 +0,0 @@
|
||||
Fix problem when playing media from Chrome using direct URL (thanks @remjey!)
|
@ -1,2 +0,0 @@
|
||||
Unit tests can now be run under PostgreSQL in Docker using
|
||||
``test_postgresql.sh``.
|
@ -1 +0,0 @@
|
||||
Speed up calculation of typing updates for replication
|
@ -1 +0,0 @@
|
||||
support registering regular users non-interactively with register_new_matrix_user script
|
@ -1 +0,0 @@
|
||||
Fix broken invite email links for self hosted riots
|
@ -1,2 +0,0 @@
|
||||
Remove documentation regarding installation on Cygwin, the use of WSL is
|
||||
recommended instead.
|
@ -1 +0,0 @@
|
||||
Don't ratelimit autojoins
|
@ -1 +0,0 @@
|
||||
Adding the ability to change MAX_UPLOAD_SIZE for the docker container variables.
|
@ -1 +0,0 @@
|
||||
Fix 500 error when deleting unknown room alias
|
@ -1 +0,0 @@
|
||||
Fix some b'abcd' noise in logs and metrics
|
@ -1 +0,0 @@
|
||||
Report "python_version" in the phone home stats
|
@ -1 +0,0 @@
|
||||
Fix some b'abcd' noise in logs and metrics
|
@ -1 +0,0 @@
|
||||
Fix typo in README, synaspse -> synapse
|
@ -1 +0,0 @@
|
||||
When we join a room, always try the server we used for the alias lookup first, to avoid unresponsive and out-of-date servers.
|
@ -1 +0,0 @@
|
||||
Increase the timeout when filling missing events in federation requests
|
@ -1 +0,0 @@
|
||||
Improve the logging when handling a federation transaction
|
@ -1 +0,0 @@
|
||||
Improve logging of outbound federation requests
|
@ -1 +0,0 @@
|
||||
Fix incorrect server-name indication for outgoing federation requests
|
@ -1 +0,0 @@
|
||||
Fix adding client IPs to the database failing on Python 3.
|
@ -1 +0,0 @@
|
||||
Improve logging of outbound federation requests
|
@ -1 +0,0 @@
|
||||
Fix bug where things occaisonally were not being timed out correctly.
|
@ -1 +0,0 @@
|
||||
Fix the docker image building on python 3
|
@ -1 +0,0 @@
|
||||
Add a regression test for logging failed HTTP requests on Python 3.
|
@ -1 +0,0 @@
|
||||
Fix bug where outbound federation would stop talking to some servers when using workers
|
@ -1 +0,0 @@
|
||||
Always LL ourselves if we're in a room
|
@ -1 +0,0 @@
|
||||
Comments and interface cleanup for on_receive_pdu
|
@ -1 +0,0 @@
|
||||
Fix spurious exceptions when remote http client closes conncetion
|
@ -1 +0,0 @@
|
||||
Log exceptions thrown by background tasks
|
@ -1 +0,0 @@
|
||||
Fix some instances of ExpiringCache not expiring cache items
|
@ -1 +0,0 @@
|
||||
Add a cache to get_destination_retry_timings
|
@ -1 +0,0 @@
|
||||
Fix out-of-bounds error when LLing yourself
|
@ -1 +0,0 @@
|
||||
Sending server notices regarding user consent now works on Python 3.
|
@ -1 +0,0 @@
|
||||
Automate pushes to docker hub
|
@ -1 +0,0 @@
|
||||
Require attrs 16.0.0 or later
|
@ -1 +0,0 @@
|
||||
Fix incompatibility with python3 on alpine
|
@ -1 +0,0 @@
|
||||
Run the test suite on the oldest supported versions of our dependencies in CI.
|
@ -1 +0,0 @@
|
||||
Fix exceptions from metrics handler
|
@ -1 +0,0 @@
|
||||
CircleCI now only runs merged jobs on PRs, and commit jobs on develop, master, and release branches.
|
@ -1 +0,0 @@
|
||||
Fix docstrings and add tests for state store methods
|
@ -1 +0,0 @@
|
||||
Include eventid in log lines when processing incoming federation transactions
|
@ -1 +0,0 @@
|
||||
Fix error message for events with m.room.create missing from auth_events
|
@ -1 +0,0 @@
|
||||
Fix errors due to concurrent monthly_active_user upserts
|
@ -1 +0,0 @@
|
||||
fix docstring for FederationClient.get_state_for_room
|
@ -1 +0,0 @@
|
||||
Remove spurious check which made 'localhost' servers not work
|
@ -1 +0,0 @@
|
||||
Run notify_app_services as a bg process
|
@ -1 +0,0 @@
|
||||
Improve the logging when handling a federation transaction
|
@ -1 +0,0 @@
|
||||
Clarifications in FederationHandler
|
@ -1 +0,0 @@
|
||||
Fix exceptions when processing incoming events over federation
|
@ -1 +0,0 @@
|
||||
Replaced all occurences of e.message with str(e). Contributed by Schnuffle
|
@ -1 +0,0 @@
|
||||
Further reduce the docker image size
|
@ -1 +0,0 @@
|
||||
Build py3 docker images for docker hub too
|
@ -1 +0,0 @@
|
||||
Fix some instances of ExpiringCache not expiring cache items
|
@ -1 +0,0 @@
|
||||
Updated the installation instructions to point to the matrix-synapse package on PyPI.
|
@ -1 +0,0 @@
|
||||
Fix lazy loaded sync in the presence of rejected state events
|
@ -1 +0,0 @@
|
||||
Disable USE_FROZEN_DICTS for unittests by default.
|
@ -1 +0,0 @@
|
||||
Remove unused Jenkins and development related files from the repo.
|
@ -1 +0,0 @@
|
||||
Improve stacktraces in certain exceptions in the logs
|
@ -1 +0,0 @@
|
||||
Fix error when logging incomplete HTTP requests
|
@ -1 +0,0 @@
|
||||
Add a cache to get_destination_retry_timings
|
@ -27,4 +27,4 @@ try:
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
__version__ = "0.33.5.1"
|
||||
__version__ = "0.33.6"
|
||||
|
@ -58,7 +58,10 @@ REQUIREMENTS = {
|
||||
"msgpack-python>=0.3.0": ["msgpack"],
|
||||
"phonenumbers>=8.2.0": ["phonenumbers"],
|
||||
"six>=1.10": ["six"],
|
||||
"prometheus_client>=0.0.18": ["prometheus_client"],
|
||||
|
||||
# prometheus_client 0.4.0 changed the format of counter metrics
|
||||
# (cf https://github.com/matrix-org/synapse/issues/4001)
|
||||
"prometheus_client>=0.0.18,<0.4.0": ["prometheus_client"],
|
||||
|
||||
# we use attr.s(slots), which arrived in 16.0.0
|
||||
"attrs>=16.0.0": ["attr>=16.0.0"],
|
||||
|
Loading…
Reference in New Issue
Block a user