Accepting request 813544 from home:darix:apps
- Update to 1.15.0 OBS-URL: https://build.opensuse.org/request/show/813544 OBS-URL: https://build.opensuse.org/package/show/network:messaging:matrix/matrix-synapse?expand=0&rev=127
This commit is contained in:
parent
6489b06085
commit
3a7795e617
2
_service
2
_service
@ -4,7 +4,7 @@
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="url">https://github.com/matrix-org/synapse.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">v1.14.0</param>
|
||||
<param name="revision">v1.15.0</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<!--
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:44fcad091549cfce9400215249940bd02ff16c3bf83d68dac8a327f37e2783d2
|
||||
size 27326477
|
@ -32,7 +32,7 @@
|
||||
|
||||
%define pkgname matrix-synapse
|
||||
Name: %{pkgname}-test
|
||||
Version: 1.14.0
|
||||
Version: 1.15.0
|
||||
Release: 0
|
||||
Summary: Test package for %{pkgname}
|
||||
License: Apache-2.0
|
||||
|
@ -1,3 +1,92 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 11 14:28:57 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- Update to 1.15.0
|
||||
- Features
|
||||
- Advertise support for Client-Server API r0.6.0 and remove
|
||||
related unstable feature flags. (#6585)
|
||||
- Add an option to disable autojoining rooms for guest
|
||||
accounts. (#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)
|
||||
- Add admin APIs to allow server admins to manage users'
|
||||
devices. Contributed by @dklimpel. (#7481)
|
||||
- Add support for generating thumbnails for WebP images.
|
||||
Previously, users would see an empty box instead of preview
|
||||
image. Contributed by @WGH-. (#7586)
|
||||
- Support the standardized m.login.sso user-interactive
|
||||
authentication flow. (#7630)
|
||||
- Bugfixes
|
||||
- Allow new users to be registered via the admin API even if
|
||||
the monthly active user limit has been reached. Contributed
|
||||
by @dklimpel. (#7263)
|
||||
- Fix email notifications not being enabled for new users when
|
||||
created via the Admin API. (#7267)
|
||||
- Fix str placeholders in an instance of
|
||||
PrepareDatabaseException. Introduced in Synapse v1.8.0.
|
||||
(#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)
|
||||
- Fix a bug causing the cross-signing keys to be ignored when
|
||||
resyncing a device list. (#7594)
|
||||
- Fix metrics failing when there is a large number of active
|
||||
background processes. (#7597)
|
||||
- Fix bug where returning rooms for a group would fail if it
|
||||
included a room that the server was not in. (#7599)
|
||||
- Fix duplicate key violation when persisting read markers.
|
||||
(#7607)
|
||||
- Prevent an entire iteration of the device list resync loop
|
||||
from failing if one server responds with a malformed result.
|
||||
(#7609)
|
||||
- Fix exceptions when fetching events from a remote host fails.
|
||||
(#7622)
|
||||
- Make synctl restart start synapse if it wasn't running.
|
||||
(#7624)
|
||||
- Pass device information through to the login endpoint when
|
||||
using the login fallback. (#7629)
|
||||
- Advertise the m.login.token login flow when OpenID Connect is
|
||||
enabled. (#7631)
|
||||
- Fix bug in account data replication stream. (#7656)
|
||||
- Improved Documentation
|
||||
- Update the OpenBSD installation instructions. (#7587)
|
||||
- Advertise Python 3.8 support in setup.py. (#7602)
|
||||
- Add a link to #synapse:matrix.org in the troubleshooting
|
||||
section of the README. (#7603)
|
||||
- Clarifications to the admin api documentation. (#7647)
|
||||
- Internal Changes
|
||||
- Convert the identity handler to async/await. (#7561)
|
||||
- Improve query performance for fetching state from a
|
||||
PostgreSQL database. Contributed by @ilmari. (#7567)
|
||||
- Speed up processing of federation stream RDATA rows. (#7584)
|
||||
- Add comment to systemd example to show postgresql dependency.
|
||||
(#7591)
|
||||
- Refactor Ratelimiter to limit the amount of expensive config
|
||||
value accesses. (#7595)
|
||||
- Convert groups handlers to async/await. (#7600)
|
||||
- Clean up exception handling in SAML2ResponseResource. (#7614)
|
||||
- Check that all asynchronous tasks succeed and general cleanup
|
||||
of MonthlyActiveUsersTestCase and TestMauLimit. (#7619)
|
||||
- Convert get_user_id_by_threepid to async/await. (#7620)
|
||||
- Switch to upstream dh-virtualenv rather than our fork for
|
||||
Debian package builds. (#7621)
|
||||
- Update CI scripts to check the number in the newsfile
|
||||
fragment. (#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)
|
||||
- Minor cleanups to OpenID Connect integration. (#7628)
|
||||
- Attempt to fix flaky test:
|
||||
PhoneHomeStatsTestCase.test_performance_100. (#7634)
|
||||
- Fix typos of m.olm.curve25519-aes-sha2 and
|
||||
m.megolm.v1.aes-sha2 in comments, test files. (#7637)
|
||||
- Convert user directory, state deltas, and stats handlers to
|
||||
async/await. (#7640)
|
||||
- Remove some unused constants. (#7644)
|
||||
- Fix type information on assert_*_is_admin methods. (#7645)
|
||||
- Convert registration handler to async/await. (#7649)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 4 20:54:32 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: matrix-synapse
|
||||
version: 1.14.0
|
||||
mtime: 1590662349
|
||||
commit: 76261fc59d86bee339e033c2c38920c90bd391c0
|
||||
version: 1.15.0
|
||||
mtime: 1591878447
|
||||
commit: 3b3f327a0d73f81609399d194a13b42fd01e85f7
|
||||
|
||||
|
@ -46,7 +46,7 @@
|
||||
%define modname synapse
|
||||
%define pkgname matrix-synapse
|
||||
Name: %{pkgname}
|
||||
Version: 1.14.0
|
||||
Version: 1.15.0
|
||||
Release: 0
|
||||
Summary: Matrix protocol reference homeserver
|
||||
License: Apache-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user