Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
1.15.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
babolivier committed Jun 9, 2020
1 parent 2dc9468 commit 236d2d6
Show file tree
Hide file tree
Showing 45 changed files with 67 additions and 44 deletions.
66 changes: 66 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,69 @@
Synapse 1.15.0rc1 (2020-06-09)
==============================

Features
--------

- Advertise support for Client-Server API r0.6.0 and remove related unstable feature flags. ([\#6585](https://github.com/matrix-org/synapse/issues/6585))
- Add an option to disable autojoining rooms for guest accounts. ([\#6637](https://github.com/matrix-org/synapse/issues/6637))
- For SAML authentication, add the ability to pass email addresses to be added to new users' accounts via SAML attributes. Contributed by Christopher Cooper. ([\#7385](https://github.com/matrix-org/synapse/issues/7385))
- Add admin APIs to allow server admins to manage users' devices. Contributed by @dklimpel. ([\#7481](https://github.com/matrix-org/synapse/issues/7481))
- Add support for generating thumbnails for WebP images. Previously, users would see an empty box instead of preview image. ([\#7586](https://github.com/matrix-org/synapse/issues/7586))
- Support the standardized `m.login.sso` user-interactive authentication flow. ([\#7630](https://github.com/matrix-org/synapse/issues/7630))


Bugfixes
--------

- Allow new users to be registered via the admin API even if the monthly active user limit has been reached. Contributed by @dkimpel. ([\#7263](https://github.com/matrix-org/synapse/issues/7263))
- Fix email notifications not being enabled for new users when created via the Admin API. ([\#7267](https://github.com/matrix-org/synapse/issues/7267))
- Fix str placeholders in an instance of `PrepareDatabaseException`. Introduced in Synapse v1.8.0. ([\#7575](https://github.com/matrix-org/synapse/issues/7575))
- Fix a bug in automatic user creation during first time login with `m.login.jwt`. Regression in v1.6.0. Contributed by @olof. ([\#7585](https://github.com/matrix-org/synapse/issues/7585))
- Fix a bug causing the cross-signing keys to be ignored when resyncing a device list. ([\#7594](https://github.com/matrix-org/synapse/issues/7594))
- Fix metrics failing when there is a large number of active background processes. ([\#7597](https://github.com/matrix-org/synapse/issues/7597))
- Fix bug where returning rooms for a group would fail if it included a room that the server was not in. ([\#7599](https://github.com/matrix-org/synapse/issues/7599))
- Fix duplicate key violation when persisting read markers. ([\#7607](https://github.com/matrix-org/synapse/issues/7607))
- Prevent an entire iteration of the device list resync loop from failing if one server responds with a malformed result. ([\#7609](https://github.com/matrix-org/synapse/issues/7609))
- Fix exceptions when fetching events from a remote host fails. ([\#7622](https://github.com/matrix-org/synapse/issues/7622))
- Make `synctl restart` start synapse if it wasn't running. ([\#7624](https://github.com/matrix-org/synapse/issues/7624))
- Pass device information through to the login endpoint when using the login fallback. ([\#7629](https://github.com/matrix-org/synapse/issues/7629))
- Advertise the `m.login.token` login flow when OpenID Connect is enabled. ([\#7631](https://github.com/matrix-org/synapse/issues/7631))
- Fix bug in account data replication stream. ([\#7656](https://github.com/matrix-org/synapse/issues/7656))


Improved Documentation
----------------------

- Update the OpenBSD installation instructions. ([\#7587](https://github.com/matrix-org/synapse/issues/7587))
- Advertise Python 3.8 support in `setup.py`. ([\#7602](https://github.com/matrix-org/synapse/issues/7602))
- Add a link to `#synapse:matrix.org` in the troubleshooting section of the README. ([\#7603](https://github.com/matrix-org/synapse/issues/7603))
- Clarifications to the admin api documentation. ([\#7647](https://github.com/matrix-org/synapse/issues/7647))


Internal Changes
----------------

- Convert the identity handler to async/await. ([\#7561](https://github.com/matrix-org/synapse/issues/7561))
- Improve query performance for fetching state from a PostgreSQL database. ([\#7567](https://github.com/matrix-org/synapse/issues/7567))
- Speed up processing of federation stream RDATA rows. ([\#7584](https://github.com/matrix-org/synapse/issues/7584))
- Add comment to systemd example to show postgresql dependency. ([\#7591](https://github.com/matrix-org/synapse/issues/7591))
- Refactor `Ratelimiter` to limit the amount of expensive config value accesses. ([\#7595](https://github.com/matrix-org/synapse/issues/7595))
- Convert groups handlers to async/await. ([\#7600](https://github.com/matrix-org/synapse/issues/7600))
- Clean up exception handling in `SAML2ResponseResource`. ([\#7614](https://github.com/matrix-org/synapse/issues/7614))
- Check that all asynchronous tasks succeed and general cleanup of `MonthlyActiveUsersTestCase` and `TestMauLimit`. ([\#7619](https://github.com/matrix-org/synapse/issues/7619))
- Convert `get_user_id_by_threepid` to async/await. ([\#7620](https://github.com/matrix-org/synapse/issues/7620))
- Switch to upstream `dh-virtualenv` rather than our fork for Debian package builds. ([\#7621](https://github.com/matrix-org/synapse/issues/7621))
- Update CI scripts to check the number in the newsfile fragment. ([\#7623](https://github.com/matrix-org/synapse/issues/7623))
- Check if the localpart of a Matrix ID is reserved for guest users earlier in the registration flow, as well as when responding to requests to `/register/available`. ([\#7625](https://github.com/matrix-org/synapse/issues/7625))
- Minor cleanups to OpenID Connect integration. ([\#7628](https://github.com/matrix-org/synapse/issues/7628))
- Attempt to fix flaky test: `PhoneHomeStatsTestCase.test_performance_100`. ([\#7634](https://github.com/matrix-org/synapse/issues/7634))
- Fix typos of `m.olm.curve25519-aes-sha2` and `m.megolm.v1.aes-sha2` in comments, test files. ([\#7637](https://github.com/matrix-org/synapse/issues/7637))
- Convert user directory, state deltas, and stats handlers to async/await. ([\#7640](https://github.com/matrix-org/synapse/issues/7640))
- Remove some unused constants. ([\#7644](https://github.com/matrix-org/synapse/issues/7644))
- Fix type information on `assert_*_is_admin` methods. ([\#7645](https://github.com/matrix-org/synapse/issues/7645))
- Convert registration handler to async/await. ([\#7649](https://github.com/matrix-org/synapse/issues/7649))


Synapse 1.14.0 (2020-05-28)
===========================

Expand Down
1 change: 0 additions & 1 deletion changelog.d/6585.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/6637.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7263.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7267.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7385.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7481.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7561.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7567.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7575.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7584.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7585.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7586.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7587.doc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7591.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7594.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7595.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7597.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7599.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7600.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7602.doc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7603.doc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7607.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7609.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7614.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7619.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7620.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7621.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7622.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7623.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7624.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7625.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7628.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7629.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7630.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7631.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7634.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7637.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7640.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7644.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7645.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7647.doc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7649.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/7656.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion synapse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
except ImportError:
pass

__version__ = "1.14.0"
__version__ = "1.15.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
Expand Down

0 comments on commit 236d2d6

Please sign in to comment.