Accepting request 1120125 from network:messaging:matrix
- Update to 1.95.0 OBS-URL: https://build.opensuse.org/request/show/1120125 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/matrix-synapse?expand=0&rev=88
This commit is contained in:
commit
ed6636c562
4
_service
4
_service
@ -4,11 +4,11 @@
|
||||
<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.94.0</param>
|
||||
<param name="revision">v1.95.0</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<!--
|
||||
<param name="revision">v1.95.0rc1</param>
|
||||
<param name="revision">v1.96.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:e79aa3079dded94e691087b6896b651d46ee09aa031c31ce6c03f03d9250e19c
|
||||
size 35640333
|
3
matrix-synapse-1.95.0.obscpio
Normal file
3
matrix-synapse-1.95.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:712472d51f9f68f89a426bf372e67a6d818e7606cc7cbf3e6dd21d7a006d12cb
|
||||
size 35669005
|
@ -27,7 +27,7 @@
|
||||
|
||||
%define pkgname matrix-synapse
|
||||
Name: %{pkgname}-test
|
||||
Version: 1.94.0
|
||||
Version: 1.95.0
|
||||
Release: 0
|
||||
Summary: Test package for %{pkgname}
|
||||
License: Apache-2.0
|
||||
|
@ -1,3 +1,50 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 24 19:56:22 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- Update to 1.95.0
|
||||
- Bugfixes
|
||||
- Remove legacy unspecced knock_state_events field returned in
|
||||
some responses. (#16403)
|
||||
- Fix a bug introduced in Synapse 1.81.0 where an
|
||||
AttributeError would be raised when
|
||||
_matrix/client/v3/account/whoami is called over a unix
|
||||
socket. Contributed by @Sir-Photch. (#16404)
|
||||
- Properly return inline media when content types have
|
||||
parameters. (#16440)
|
||||
- Prevent the purging of large rooms from timing out when
|
||||
Postgres is in use. The timeout which causes this issue was
|
||||
introduced in Synapse 1.88.0. (#16455)
|
||||
- Improve the performance of purging rooms, particularly
|
||||
encrypted rooms. (#16457)
|
||||
- Fix a bug introduced in Synapse 1.59.0 where servers could be
|
||||
incorrectly marked as available after an error response was
|
||||
received. (#16506)
|
||||
- Improved Documentation
|
||||
- Document internal background update mechanism. (#16420)
|
||||
- Fix a typo in the sql for useful SQL for admins document.
|
||||
(#16477)
|
||||
- Internal Changes
|
||||
- Bump pyo3 from 0.17.1 to 0.19.2. (#16162)
|
||||
- Update registration of media repository URLs. (#16419)
|
||||
- Improve type hints. (#16421, #16468, #16469, #16507)
|
||||
- Refactor some code to simplify and better type receipts
|
||||
stream adjacent code. (#16426)
|
||||
- Factor out MultiWriter token from RoomStreamToken. (#16427)
|
||||
- Improve code comments. (#16428)
|
||||
- Reduce memory allocations. (#16429, #16431, #16433, #16434,
|
||||
#16438, #16444)
|
||||
- Remove unused method. (#16435)
|
||||
- Improve rate limiting logic. (#16441)
|
||||
- Do not block running of CI behind the check for sign-off on
|
||||
PRs. (#16454)
|
||||
- Update the release script to remind releaser to check for
|
||||
special release notes. (#16461)
|
||||
- Update complement.sh to match new public API shape. (#16466)
|
||||
- Clean up logging on event persister endpoints. (#16488)
|
||||
- Remove useless async job to delete device messages on sync,
|
||||
since we only deliver (and hence delete) up to 100 device
|
||||
messages at a time. (#16491)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 10 13:20:04 UTC 2023 - Marcus 'darix' Rückert <mrueckert@suse.de>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: matrix-synapse
|
||||
version: 1.94.0
|
||||
mtime: 1696931874
|
||||
commit: 25c412b3c57962104d7a9452f03a0fca7e999bc2
|
||||
version: 1.95.0
|
||||
mtime: 1698148862
|
||||
commit: 79f48b2b4fd6a90d919dc64f5a8d393c50cd5652
|
||||
|
@ -21,6 +21,7 @@
|
||||
# NOTE: Keep this is in the same order as pyproject.toml.
|
||||
%if %{with use_poetry_for_dependencies}
|
||||
%global Jinja2_version 3.1.2
|
||||
# TODO: 10.1.0
|
||||
%global Pillow_version 10.0.1
|
||||
%global PyYAML_version 6.0.1
|
||||
%global Twisted_version 22.10.0
|
||||
@ -28,18 +29,16 @@
|
||||
%global bcrypt_version 4.0.1
|
||||
%global bleach_version 5.0.1
|
||||
%global canonicaljson_version 2.0.0
|
||||
# TODO: 41.0.4
|
||||
%global cryptography_version 41.0.3
|
||||
%global cryptography_version 41.0.4
|
||||
%global immutabledict_version 3.0.0
|
||||
%global idna_version 3.4
|
||||
%global ijson_version 3.2.3
|
||||
# TODO: 4.19.0
|
||||
%global jsonschema_version 4.18.6
|
||||
%global jsonschema_version 4.19.1
|
||||
%global matrix_common_version 1.3.0
|
||||
%global matrix_common_max_version 2
|
||||
# TODO: 1.0.7
|
||||
%global msgpack_version 1.0.5
|
||||
%global netaddr_version 0.8.0
|
||||
%global netaddr_version 0.9.0
|
||||
# TODO: 8.13.22
|
||||
%global phonenumbers_version 8.13.18
|
||||
# TODO: 0.17.1
|
||||
@ -58,8 +57,9 @@
|
||||
%global treq_version 22.2.0
|
||||
%global unpaddedbase64_version 2.1.0
|
||||
%global matrix_synapse_ldap3_version 0.2.2
|
||||
# TODO: 23.2
|
||||
%global packaging_version 23.1
|
||||
# TODO: 2.9.8
|
||||
# TODO: 2.9.9
|
||||
%global psycopg2_version 2.9.7
|
||||
# TODO 7.3.1
|
||||
%global pysaml2_version 7.2.1
|
||||
@ -157,7 +157,7 @@
|
||||
%define pkgname matrix-synapse
|
||||
%define eggname matrix_synapse
|
||||
Name: %{pkgname}
|
||||
Version: 1.94.0
|
||||
Version: 1.95.0
|
||||
Release: 0
|
||||
Summary: Matrix protocol reference homeserver
|
||||
License: Apache-2.0
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0ba8aec93493884cf9cada3bac9218d63465cf31f2e31f0127c2143dabd39aa2
|
||||
size 5766480
|
||||
oid sha256:8413f1a6ef71c0121011162f855a83c0fafe121acf5bfc448ad31362a1453489
|
||||
size 5797853
|
||||
|
Loading…
x
Reference in New Issue
Block a user