Accepting request 1109344 from home:darix:apps
- Update to 1.91.2 OBS-URL: https://build.opensuse.org/request/show/1109344 OBS-URL: https://build.opensuse.org/package/show/network:messaging:matrix/matrix-synapse?expand=0&rev=285
This commit is contained in:
parent
89f349ba3d
commit
732a56b96c
12
_service
12
_service
@ -1,28 +1,28 @@
|
||||
<services>
|
||||
<service name="obs_scm" mode="disabled">
|
||||
<service name="obs_scm" mode="manual">
|
||||
<param name="filename">matrix-synapse</param>
|
||||
<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.90.0</param>
|
||||
<param name="revision">v1.91.2</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<!--
|
||||
<param name="revision">v1.90.1rc1</param>
|
||||
<param name="revision">v1.92.0rc1</param>
|
||||
<param name="versionrewrite-pattern">v([\.\d]+)(rc.*)</param>
|
||||
<param name="versionrewrite-replacement">\1~\2</param>
|
||||
-->
|
||||
</service>
|
||||
<service name="cargo_vendor" mode="disabled">
|
||||
<service name="cargo_vendor" mode="manual">
|
||||
<param name="srcdir">synapse</param>
|
||||
<!--
|
||||
<param name="update">true</param>
|
||||
-->
|
||||
</service>
|
||||
<service name="cargo_audit" mode="disabled">
|
||||
<service name="cargo_audit" mode="manual">
|
||||
<param name="srcdir">synapse</param>
|
||||
</service>
|
||||
<service name="set_version" mode="disabled"/>
|
||||
<service name="set_version" mode="manual"/>
|
||||
<service name="tar" mode="buildtime"/>
|
||||
<service name="recompress" mode="buildtime">
|
||||
<param name="compression">xz</param>
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a238ed3eff47fd7c72b07952d28341ef5b0aa06b2d20cd76ec58535b1ca274ce
|
||||
size 35386893
|
3
matrix-synapse-1.91.2.obscpio
Normal file
3
matrix-synapse-1.91.2.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8df6270da824c716c7855c1dbe4426801844378f369274ad9233dd5bc19e0cc2
|
||||
size 35482637
|
@ -27,7 +27,7 @@
|
||||
|
||||
%define pkgname matrix-synapse
|
||||
Name: %{pkgname}-test
|
||||
Version: 1.90.0
|
||||
Version: 1.91.2
|
||||
Release: 0
|
||||
Summary: Test package for %{pkgname}
|
||||
License: Apache-2.0
|
||||
|
@ -1,3 +1,99 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 6 20:43:15 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- Update to 1.91.2
|
||||
- Bugfixes
|
||||
- Revert MSC3861 introspection cache, admin impersonation and
|
||||
account lock. (#16258)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 4 14:06:47 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- Update to 1.91.1
|
||||
- Bugfixes
|
||||
- Fix a performance regression introduced in Synapse 1.91.0
|
||||
where event persistence would cause an excessive linear
|
||||
growth in CPU usage. (#16220)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 4 01:12:17 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- Update to 1.91.0
|
||||
- Features
|
||||
- Implements an admin API to lock an user without deactivating
|
||||
them. Based on MSC3939. (#15870)
|
||||
- Allow specifying client_secret_path as alternative to
|
||||
client_secret for OIDC providers. This avoids leaking the
|
||||
client secret in the homeserver config. Contributed by @Ma27.
|
||||
(#16030)
|
||||
- Allow customising the IdP display name, icon, and brand for
|
||||
SAML and CAS providers (in addition to OIDC provider).
|
||||
(#16094)
|
||||
- Add an admins query parameter to the List Accounts admin API,
|
||||
to include only admins or to exclude admins in user queries.
|
||||
(#16114)
|
||||
- Bugfixes
|
||||
- Fix long-standing bug where concurrent requests to change a
|
||||
user's push rules could cause a deadlock. Contributed by Nick
|
||||
@ Beeper (@Fizzadar). (#16052)
|
||||
- Fix a long-standing bug in /sync where timeout=0 does not
|
||||
skip caching, resulting in slow calls in cases where there
|
||||
are no new changes. Contributed by @PlasmaIntec. (#16080)
|
||||
- Fix performance of state resolutions for large, old rooms
|
||||
that did not have the full auth chain persisted. (#16116)
|
||||
- Filter out user agent references to the sliding sync proxy
|
||||
and rust-sdk from the user_daily_visits table to ensure that
|
||||
Element X can be represented fully. (#16124)
|
||||
- User constent and third-party changes capability cannot be
|
||||
enabled when using experimental MSC3861 support. (#16127,
|
||||
#16134)
|
||||
- Fix a rare race that could block new events from being sent
|
||||
for up to two minutes. Introduced in v1.90.0. (#16133,
|
||||
#16169)
|
||||
- Fix performance degredation when there are a lot of in-flight
|
||||
replication requests. (#16148)
|
||||
- Fix a bug introduced in 1.87 where synapse would send an
|
||||
excessive amount of federation requests to servers which have
|
||||
been offline for a long time. Contributed by Nico. (#16156,
|
||||
#16164)
|
||||
- Improved Documentation
|
||||
- Structured logging docs: add a link to explain the ELK stack
|
||||
(#16091)
|
||||
- Internal Changes
|
||||
- Update dehydrated devices implementation. (#16010)
|
||||
- Fix database performance of read/write worker locks. (#16061)
|
||||
- Fix building the nix development environment on MacOS
|
||||
systems. (#16063)
|
||||
- Override global statement timeout when creating indexes in
|
||||
Postgres. (#16085)
|
||||
- Fix the type annotation on run_db_interaction in the Module
|
||||
API. (#16089)
|
||||
- Clean-up the presence code. (#16092)
|
||||
- Run pyupgrade for Python 3.8+. (#16110)
|
||||
- Rename pagination and purge locks and add comments to explain
|
||||
why they exist and how they work. (#16112)
|
||||
- Attempt to fix the twisted trunk job. (#16115)
|
||||
- Cache token introspection response from OIDC provider.
|
||||
(#16117)
|
||||
- Add cache to get_server_keys_json_for_remote. (#16123)
|
||||
- Add an admin endpoint to allow authorizing server to signal
|
||||
token revocations. (#16125)
|
||||
- Add response time metrics for introspection requests for
|
||||
delegated auth. (#16131)
|
||||
- MSC3861: allow impersonation by an admin user using
|
||||
_oidc_admin_impersonate_user_id query parameter. (#16132)
|
||||
- Increase performance of read/write locks. (#16149)
|
||||
- Improve presence tests. (#16150, #16151, #16158)
|
||||
- Raised the poetry-core version cap to 1.7.0. (#16152)
|
||||
- Fix assertion in user directory unit tests. (#16157)
|
||||
- Reduce scope of locks when paginating to alleviate DB
|
||||
contention. (#16159)
|
||||
- Reduce DB contention on worker locks. (#16160)
|
||||
- Task scheduler: mark task as active if we are scheduling as
|
||||
soon as possible. (#16165)
|
||||
- Implements a task scheduler for resumable potentially long
|
||||
running tasks. (#15891)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 15 11:40:35 UTC 2023 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: matrix-synapse
|
||||
version: 1.90.0
|
||||
mtime: 1692094674
|
||||
commit: 29638220ab31aea16cd3da073025e9cb734628d5
|
||||
version: 1.91.2
|
||||
mtime: 1694013057
|
||||
commit: 9de615b3aa4f20cab182cf3822943b9465a30643
|
||||
|
@ -34,7 +34,7 @@
|
||||
%global cryptography_version 41.0.2
|
||||
%global immutabledict_version 3.0.0
|
||||
%global idna_version 3.4
|
||||
%global ijson_version 3.2.0
|
||||
%global ijson_version 3.2.3
|
||||
# TODO: 4.19.0
|
||||
%global jsonschema_version 4.18.6
|
||||
%global matrix_common_version 1.3.0
|
||||
@ -67,7 +67,7 @@
|
||||
%global Authlib_version 1.2.1
|
||||
# TODO 4.9.3
|
||||
%global lxml_version 4.9.2
|
||||
%global sentry_sdk_version 1.28.1
|
||||
%global sentry_sdk_version 1.29.2
|
||||
%global PyJWT_version 2.4.0
|
||||
%global jaeger_client_version 4.8.0
|
||||
%global opentracing_version 2.4.0
|
||||
@ -160,7 +160,7 @@
|
||||
%define pkgname matrix-synapse
|
||||
%define eggname matrix_synapse
|
||||
Name: %{pkgname}
|
||||
Version: 1.90.0
|
||||
Version: 1.91.2
|
||||
Release: 0
|
||||
Summary: Matrix protocol reference homeserver
|
||||
License: Apache-2.0
|
||||
@ -194,7 +194,7 @@ BuildRequires: systemd-rpm-macros
|
||||
BuildRequires: sysuser-shadow
|
||||
BuildRequires: sysuser-tools
|
||||
BuildRequires: unzip
|
||||
BuildRequires: (%{use_python}-poetry-core >= 1.0.0 with %{use_python}-poetry-core =< 1.6.1)
|
||||
BuildRequires: (%{use_python}-poetry-core >= 1.0.0 with %{use_python}-poetry-core =< 1.7.0)
|
||||
%{?systemd_ordering}
|
||||
%{sysusers_requires}
|
||||
%requires_peq %{use_python}-base
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:daa1449b940e8b45262677acdb80c74f9c1b61203e386b60fafbdc7cfd8dae71
|
||||
size 5629073
|
||||
oid sha256:ff32dd13fbe8c28fc0a31caeabf132296d4f72f17f84da2f2fcb8b89f0738ba8
|
||||
size 5740177
|
||||
|
Loading…
Reference in New Issue
Block a user