- Update to 1.109.0
OBS-URL: https://build.opensuse.org/package/show/network:messaging:matrix/matrix-synapse?expand=0&rev=323
This commit is contained in:
parent
4292fdf4d2
commit
ec22451f4e
4
_service
4
_service
@ -4,11 +4,11 @@
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="url">https://github.com/element-hq/synapse.git</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">v1.108.0</param>
|
||||
<param name="revision">v1.109.0</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<!--
|
||||
<param name="revision">v1.109.0rc1</param>
|
||||
<param name="revision">v1.110.0rc1</param>
|
||||
<param name="versionrewrite-pattern">v([\.\d]+)(rc.*)</param>
|
||||
<param name="versionrewrite-replacement">\1~\2</param>
|
||||
-->
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:14e4e4d83e302f3ebe8e9af1df0f5eefc531529faf84163fa9a9c1ce0cea0ddf
|
||||
size 36457997
|
3
matrix-synapse-1.109.0.obscpio
Normal file
3
matrix-synapse-1.109.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e58ccaa5ab878b34d47c44546a4f8b3764af4013643cce4dbc017fbfe76b5ea1
|
||||
size 36599309
|
@ -27,7 +27,7 @@
|
||||
|
||||
%define pkgname matrix-synapse
|
||||
Name: %{pkgname}-test
|
||||
Version: 1.108.0
|
||||
Version: 1.109.0
|
||||
Release: 0
|
||||
Summary: Test package for %{pkgname}
|
||||
License: AGPL-3.0-or-later
|
||||
|
@ -1,3 +1,68 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 18 11:01:41 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- Update to 1.109.0
|
||||
- Features
|
||||
- Add the ability to auto-accept invites on the behalf of
|
||||
users. See the auto_accept_invites config option for details.
|
||||
(#17147)
|
||||
- Add experimental MSC3575 Sliding Sync /sync/e2ee endpoint for
|
||||
to-device messages and device encryption info. (#17167)
|
||||
- Support MSC3916 by adding unstable media endpoints to
|
||||
/_matrix/client. (#17213)
|
||||
- Add logging to tasks managed by the task scheduler, showing
|
||||
CPU and database usage. (#17219)
|
||||
- Bugfixes
|
||||
- When rolling back to a previous Synapse version and then
|
||||
forwards again to this release, don't require server
|
||||
operators to manually run SQL. (#17305, #17309)
|
||||
- Fix bug where one-time-keys were not always included in /sync
|
||||
response when using workers. Introduced in v1.109.0rc1.
|
||||
(#17275)
|
||||
- Fix bug where /sync could get stuck due to edge case in
|
||||
device lists handling. Introduced in v1.109.0rc1. (#17292)
|
||||
- Fix deduplicating of membership events to not create unused
|
||||
state groups. (#17164)
|
||||
- Fix bug where duplicate events could be sent down sync when
|
||||
using workers that are overloaded. (#17215)
|
||||
- Ignore attempts to send to-device messages to bad users, to
|
||||
avoid log spam when we try to connect to the bad server.
|
||||
(#17240)
|
||||
- Fix handling of duplicate concurrent uploading of device
|
||||
one-time-keys. (#17241)
|
||||
- Fix reporting of default tags to Sentry, such as worker name.
|
||||
Broke in v1.108.0. (#17251)
|
||||
- Fix bug where typing updates would not be sent when using
|
||||
workers after a restart. (#17252)
|
||||
- Improved Documentation
|
||||
- Update the LemonLDAP documentation to say that claims should
|
||||
be explicitly included in the returned id_token, as Synapse
|
||||
won't request them. (#17204)
|
||||
- Internal Changes
|
||||
- Fix the building of binary wheels for macOS by switching to
|
||||
macOS 12 CI runners. (#17319)
|
||||
- Use the release branch for sytest in release-branch PRs.
|
||||
(#17306)
|
||||
- Improve DB usage when fetching related events. (#17083)
|
||||
- Log exceptions when failing to auto-join new user according
|
||||
to the auto_join_rooms option. (#17176)
|
||||
- Reduce work of calculating outbound device lists updates.
|
||||
(#17211)
|
||||
- Improve performance of calculating device lists changes in
|
||||
/sync. (#17216)
|
||||
- Move towards using MultiWriterIdGenerator everywhere.
|
||||
(#17226)
|
||||
- Replaces all usages of StreamIdGenerator with
|
||||
MultiWriterIdGenerator. (#17229)
|
||||
- Change the allow_unsafe_locale config option to also apply
|
||||
when setting up new databases. (#17238)
|
||||
- Fix errors in logs about closing incorrect logging contexts
|
||||
when media gets rejected by a module. (#17239, #17246)
|
||||
- Clean out invalid destinations from device_federation_outbox
|
||||
table. (#17242)
|
||||
- Stop logging errors when receiving invalid User IDs in key
|
||||
querys requests. (#17250)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 28 12:37:01 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: matrix-synapse
|
||||
version: 1.108.0
|
||||
mtime: 1716893668
|
||||
commit: f35bc08d3933416d2c7a0c566f895214e9ffd88e
|
||||
version: 1.109.0
|
||||
mtime: 1718703994
|
||||
commit: 4af654f0da31072bf0e0cac33202c621369ee823
|
||||
|
@ -23,49 +23,50 @@
|
||||
%global Jinja2_version 3.1.2
|
||||
%global Pillow_version 10.2.0
|
||||
%global PyYAML_version 6.0.1
|
||||
%global attrs_version 23.1.0
|
||||
%global bcrypt_version 4.0.1
|
||||
%global bleach_version 5.0.1
|
||||
%global attrs_version 23.2.0
|
||||
%global bcrypt_version 4.1.3
|
||||
%global bleach_version 6.1.0
|
||||
%global canonicaljson_version 2.0.0
|
||||
# TODO: 42.0.5
|
||||
%global cryptography_version 42.0.4
|
||||
%global immutabledict_version 3.0.0
|
||||
%global idna_version 3.6
|
||||
%global cryptography_version 42.0.7
|
||||
%global immutabledict_version 4.2.0
|
||||
%global idna_version 3.7
|
||||
%global ijson_version 3.2.3
|
||||
%global jsonschema_version 4.20.0
|
||||
%global matrix_common_version 1.3.0
|
||||
%global matrix_common_max_version 2
|
||||
%global msgpack_version 1.0.7
|
||||
%global netaddr_version 0.9.0
|
||||
%global netaddr_version 1.2.1
|
||||
%global phonenumbers_version 8.13.33
|
||||
%global prometheus_client_version 0.20.0
|
||||
%global psutil_version 2.0.0
|
||||
%global pyOpenSSL_version 23.3.0
|
||||
%global pyasn1_version 0.5.1
|
||||
%global pyOpenSSL_version 24.1.0
|
||||
%global pyasn1_version 0.6.0
|
||||
%global pyasn1_modules_version 0.3.0
|
||||
%global pymacaroons_version 0.13.0
|
||||
%global service_identity_version 23.1.0
|
||||
%global service_identity_version 24.1.0
|
||||
%global signedjson_version 1.1.4
|
||||
%global signedjson_max_version 2
|
||||
%global sortedcontainers_version 2.4.0
|
||||
%global systemd_version 234
|
||||
%global systemd_version 235
|
||||
%global typing_extensions_version 4.1.1
|
||||
%global treq_version 23.11.0
|
||||
%global unpaddedbase64_version 2.1.0
|
||||
%global matrix_synapse_ldap3_version 0.3.0
|
||||
%global packaging_version 23.2
|
||||
%global packaging_version 24.0
|
||||
%global psycopg2_version 2.9.9
|
||||
%global pysaml2_version 7.3.1
|
||||
%global Authlib_version 1.2.1
|
||||
%global lxml_version 4.9.3
|
||||
%global sentry_sdk_version 1.36.0
|
||||
%global PyJWT_version 2.4.0
|
||||
%global Authlib_version 1.3.0
|
||||
# TODO: 5.2.2
|
||||
%global lxml_version 5.1.0
|
||||
%global sentry_sdk_version 2.1.1
|
||||
%global PyJWT_version 2.6.0
|
||||
%global jaeger_client_version 4.8.0
|
||||
%global opentracing_version 2.4.0
|
||||
%global hiredis_version 2.2.3
|
||||
%global txredisapi_version 1.4.9
|
||||
%global hiredis_version 2.3.2
|
||||
%global txredisapi_version 1.4.10
|
||||
%global Pympler_version 1.0.1
|
||||
%global pydantic_version 1.9.1
|
||||
%global pydantic_version 2.7.1
|
||||
# TODO: 2.13.1
|
||||
%global pyicu_version 2.12
|
||||
%else
|
||||
# some version locks based on poetry.lock
|
||||
@ -86,7 +87,7 @@
|
||||
%global matrix_common_max_version 2
|
||||
%global msgpack_version 0.5.2
|
||||
%global netaddr_version 0.7.18
|
||||
%global phonenumbers_version 8.2.0
|
||||
%global phonenumbers_version 8.13.37
|
||||
%global prometheus_client_version 0.4.0
|
||||
%global psutil_version 2.0.0
|
||||
%global pyOpenSSL_version 16.0.0
|
||||
@ -149,7 +150,7 @@
|
||||
%define pkgname matrix-synapse
|
||||
%define eggname matrix_synapse
|
||||
Name: %{pkgname}
|
||||
Version: 1.108.0
|
||||
Version: 1.109.0
|
||||
Release: 0
|
||||
Summary: Matrix protocol reference homeserver
|
||||
License: AGPL-3.0-or-later
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a0d9ca47db20428e15e9c825272c63599124f3dad38086fa7215bf728390905d
|
||||
size 7082041
|
||||
oid sha256:9502acbf97400026802aa8042ccb25b4a1c6d6de4840d05359c2ec3d31753995
|
||||
size 7084668
|
||||
|
Loading…
x
Reference in New Issue
Block a user