Accepting request 1164312 from home:darix:apps
- Update to 1.104.0 OBS-URL: https://build.opensuse.org/request/show/1164312 OBS-URL: https://build.opensuse.org/package/show/network:messaging:matrix/matrix-synapse?expand=0&rev=312
This commit is contained in:
parent
09b0e5c958
commit
7b251c237b
4
_service
4
_service
@ -4,11 +4,11 @@
|
|||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="url">https://github.com/element-hq/synapse.git</param>
|
<param name="url">https://github.com/element-hq/synapse.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">v1.103.0</param>
|
<param name="revision">v1.104.0</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="versionrewrite-replacement">\1</param>
|
<param name="versionrewrite-replacement">\1</param>
|
||||||
<!--
|
<!--
|
||||||
<param name="revision">v1.99.0rc1</param>
|
<param name="revision">v1.105.0rc1</param>
|
||||||
<param name="versionrewrite-pattern">v([\.\d]+)(rc.*)</param>
|
<param name="versionrewrite-pattern">v([\.\d]+)(rc.*)</param>
|
||||||
<param name="versionrewrite-replacement">\1~\2</param>
|
<param name="versionrewrite-replacement">\1~\2</param>
|
||||||
-->
|
-->
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ece126bf405b4830f0f539d8f59c4da4911df789f26ba31ff8addb6f9f6f72ff
|
|
||||||
size 36274189
|
|
3
matrix-synapse-1.104.0.obscpio
Normal file
3
matrix-synapse-1.104.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:042225735d6366974e9e59a20f30d3baa8b6cf2f1d9cb298b34c044224bc969a
|
||||||
|
size 36306957
|
@ -27,7 +27,7 @@
|
|||||||
|
|
||||||
%define pkgname matrix-synapse
|
%define pkgname matrix-synapse
|
||||||
Name: %{pkgname}-test
|
Name: %{pkgname}-test
|
||||||
Version: 1.103.0
|
Version: 1.104.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Test package for %{pkgname}
|
Summary: Test package for %{pkgname}
|
||||||
License: AGPL-3.0-or-later
|
License: AGPL-3.0-or-later
|
||||||
|
@ -1,3 +1,58 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Apr 2 21:08:17 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>
|
||||||
|
|
||||||
|
- Update to 1.104.0
|
||||||
|
- Features
|
||||||
|
- Add an OIDC config to specify extra parameters for the
|
||||||
|
authorization grant URL. IT can be useful to pass an ACR
|
||||||
|
value for example. (#16971)
|
||||||
|
- Add support for OIDC provider returning JWT. (#16972, #17031)
|
||||||
|
- Bugfixes
|
||||||
|
- Fix regression when using OIDC provider. Introduced in
|
||||||
|
v1.104.0rc1. (#17031)
|
||||||
|
- Fix a bug which meant that, under certain circumstances, we
|
||||||
|
might never retry sending events or to-device messages over
|
||||||
|
federation after a failure. (#16925)
|
||||||
|
- Fix various long-standing bugs which could cause incorrect
|
||||||
|
state to be returned from /sync in certain situations.
|
||||||
|
(#16949)
|
||||||
|
- Fix case in which m.fully_read marker would not get updated.
|
||||||
|
Contributed by @SpiritCroc. (#16990)
|
||||||
|
- Fix bug which did not retract a user's pending knocks at
|
||||||
|
rooms when their account was deactivated. Contributed by
|
||||||
|
@hanadi92. (#17010)
|
||||||
|
- Updates to the Docker image
|
||||||
|
- Updated start.py to generate config using the correct user ID
|
||||||
|
when running as root (fixes #16824, #15202). (#16978)
|
||||||
|
- Improved Documentation
|
||||||
|
- Add a query to force a refresh of a remote user's device list
|
||||||
|
to the "Useful SQL for Admins" documentation page. (#16892)
|
||||||
|
- Minor grammatical corrections to the upgrade documentation.
|
||||||
|
(#16965)
|
||||||
|
- Fix the sort order for the documentation version picker, so
|
||||||
|
that newer releases appear above older ones. (#16966)
|
||||||
|
- Remove recommendation for a specific poetry version from
|
||||||
|
contributing guide. (#17002)
|
||||||
|
- Internal Changes
|
||||||
|
- Improve lock performance when a lot of locks are all waiting
|
||||||
|
for a single lock to be released. (#16840)
|
||||||
|
- Update power level default for public rooms. (#16907)
|
||||||
|
- Improve event validation. (#16908)
|
||||||
|
- Multi-worker-docker-container: disable log buffering.
|
||||||
|
(#16919)
|
||||||
|
- Refactor state delta calculation in /sync handler. (#16929)
|
||||||
|
- Clarify docs for some room state functions. (#16950)
|
||||||
|
- Specify IP subnets in canonical form. (#16953)
|
||||||
|
- As done for SAML mapping provider, let's pass the module API
|
||||||
|
to the OIDC one so the mapper can do more logic in its code.
|
||||||
|
(#16974)
|
||||||
|
- Allow containers building on top of Synapse's Complement
|
||||||
|
container is use the included PostgreSQL cluster. (#16985)
|
||||||
|
- Raise poetry-core version cap to 1.9.0. (#16986)
|
||||||
|
- Patch the db conn pool sooner in tests. (#17017)
|
||||||
|
- cleaned up TODOs in the poetry section and bumped the minimum
|
||||||
|
versions to what is available in TW
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 27 12:14:05 UTC 2024 - Adam Majer <adam.majer@suse.de>
|
Wed Mar 27 12:14:05 UTC 2024 - Adam Majer <adam.majer@suse.de>
|
||||||
|
|
||||||
@ -27,6 +82,11 @@ Wed Mar 27 12:14:05 UTC 2024 - Adam Majer <adam.majer@suse.de>
|
|||||||
For changes in older version since 1.98.0, see
|
For changes in older version since 1.98.0, see
|
||||||
https://github.com/element-hq/synapse/releases
|
https://github.com/element-hq/synapse/releases
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Mar 22 00:28:47 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>
|
||||||
|
|
||||||
|
- allow newer poetry-core after bump in TW
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Mar 1 23:54:12 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>
|
Fri Mar 1 23:54:12 UTC 2024 - Marcus Rueckert <mrueckert@suse.de>
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: matrix-synapse
|
name: matrix-synapse
|
||||||
version: 1.103.0
|
version: 1.104.0
|
||||||
mtime: 1710851081
|
mtime: 1712074622
|
||||||
commit: 0b4dc4de7cd92180074ccf32ed4a53b7fa330aad
|
commit: ca27b516656223150d218bdd838df302fedf838c
|
||||||
|
@ -21,29 +21,24 @@
|
|||||||
# NOTE: Keep this is in the same order as pyproject.toml.
|
# NOTE: Keep this is in the same order as pyproject.toml.
|
||||||
%if %{with use_poetry_for_dependencies}
|
%if %{with use_poetry_for_dependencies}
|
||||||
%global Jinja2_version 3.1.2
|
%global Jinja2_version 3.1.2
|
||||||
# TODO: 10.1.0
|
%global Pillow_version 10.2.0
|
||||||
%global Pillow_version 10.0.1
|
|
||||||
%global PyYAML_version 6.0.1
|
%global PyYAML_version 6.0.1
|
||||||
# TODO: 23.10
|
|
||||||
%global Twisted_version 22.10.0
|
|
||||||
%global attrs_version 23.1.0
|
%global attrs_version 23.1.0
|
||||||
%global bcrypt_version 4.0.1
|
%global bcrypt_version 4.0.1
|
||||||
%global bleach_version 5.0.1
|
%global bleach_version 5.0.1
|
||||||
%global canonicaljson_version 2.0.0
|
%global canonicaljson_version 2.0.0
|
||||||
%global cryptography_version 41.0.7
|
# TODO: 42.0.5
|
||||||
|
%global cryptography_version 42.0.4
|
||||||
%global immutabledict_version 3.0.0
|
%global immutabledict_version 3.0.0
|
||||||
%global idna_version 3.6
|
%global idna_version 3.6
|
||||||
%global ijson_version 3.2.3
|
%global ijson_version 3.2.3
|
||||||
%global jsonschema_version 4.20.0
|
%global jsonschema_version 4.20.0
|
||||||
%global matrix_common_version 1.3.0
|
%global matrix_common_version 1.3.0
|
||||||
%global matrix_common_max_version 2
|
%global matrix_common_max_version 2
|
||||||
# TODO: 1.0.7
|
%global msgpack_version 1.0.7
|
||||||
%global msgpack_version 1.0.5
|
|
||||||
%global netaddr_version 0.9.0
|
%global netaddr_version 0.9.0
|
||||||
# TODO: 8.13.26
|
%global phonenumbers_version 8.13.33
|
||||||
%global phonenumbers_version 8.13.18
|
%global prometheus_client_version 0.20.0
|
||||||
# TODO: 0.19.0
|
|
||||||
%global prometheus_client_version 0.17.0
|
|
||||||
%global psutil_version 2.0.0
|
%global psutil_version 2.0.0
|
||||||
%global pyOpenSSL_version 23.3.0
|
%global pyOpenSSL_version 23.3.0
|
||||||
%global pyasn1_version 0.5.1
|
%global pyasn1_version 0.5.1
|
||||||
@ -55,28 +50,23 @@
|
|||||||
%global sortedcontainers_version 2.4.0
|
%global sortedcontainers_version 2.4.0
|
||||||
%global systemd_version 234
|
%global systemd_version 234
|
||||||
%global typing_extensions_version 4.1.1
|
%global typing_extensions_version 4.1.1
|
||||||
# TODO: 23.11
|
%global treq_version 23.11.0
|
||||||
%global treq_version 22.2.0
|
|
||||||
%global unpaddedbase64_version 2.1.0
|
%global unpaddedbase64_version 2.1.0
|
||||||
%global matrix_synapse_ldap3_version 0.3.0
|
%global matrix_synapse_ldap3_version 0.3.0
|
||||||
%global packaging_version 23.2
|
%global packaging_version 23.2
|
||||||
# TODO: 2.9.9
|
%global psycopg2_version 2.9.9
|
||||||
%global psycopg2_version 2.9.7
|
%global pysaml2_version 7.3.1
|
||||||
# TODO 7.3.1
|
|
||||||
%global pysaml2_version 7.2.1
|
|
||||||
%global Authlib_version 1.2.1
|
%global Authlib_version 1.2.1
|
||||||
%global lxml_version 4.9.3
|
%global lxml_version 4.9.3
|
||||||
%global sentry_sdk_version 1.36.0
|
%global sentry_sdk_version 1.36.0
|
||||||
%global PyJWT_version 2.4.0
|
%global PyJWT_version 2.4.0
|
||||||
%global jaeger_client_version 4.8.0
|
%global jaeger_client_version 4.8.0
|
||||||
%global opentracing_version 2.4.0
|
%global opentracing_version 2.4.0
|
||||||
# TODO: 2.2.3
|
%global hiredis_version 2.2.3
|
||||||
%global hiredis_version 2.2.2
|
|
||||||
%global txredisapi_version 1.4.9
|
%global txredisapi_version 1.4.9
|
||||||
%global Pympler_version 1.0.1
|
%global Pympler_version 1.0.1
|
||||||
%global pydantic_version 1.9.1
|
%global pydantic_version 1.9.1
|
||||||
# TODO: 2.12
|
%global pyicu_version 2.12
|
||||||
%global pyicu_version 2.11
|
|
||||||
%else
|
%else
|
||||||
# some version locks based on poetry.lock
|
# some version locks based on poetry.lock
|
||||||
%global Jinja2_version 3.0
|
%global Jinja2_version 3.0
|
||||||
@ -159,7 +149,7 @@
|
|||||||
%define pkgname matrix-synapse
|
%define pkgname matrix-synapse
|
||||||
%define eggname matrix_synapse
|
%define eggname matrix_synapse
|
||||||
Name: %{pkgname}
|
Name: %{pkgname}
|
||||||
Version: 1.103.0
|
Version: 1.104.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Matrix protocol reference homeserver
|
Summary: Matrix protocol reference homeserver
|
||||||
License: AGPL-3.0-or-later
|
License: AGPL-3.0-or-later
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:4f8f1b58ea9b52fa3a3b3167156387428ebd2b4f9d6b19f01316ac72a731a2bb
|
oid sha256:a46ce61b9981a4ccde109c2cabf725940dcc877d8616ab58723edfb0f4f3d2ca
|
||||||
size 5821426
|
size 5862839
|
||||||
|
Loading…
x
Reference in New Issue
Block a user