Accepting request 1245106 from network:messaging:matrix
Forwarded request #1245105 from darix - Update to 1.124.0 OBS-URL: https://build.opensuse.org/request/show/1245106 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/matrix-synapse?expand=0&rev=121
This commit is contained in:
commit
8cf915e893
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.123.0</param>
|
||||
<param name="revision">v1.124.0</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<!--
|
||||
<param name="revision">v1.124.0rc1</param>
|
||||
<param name="revision">v1.125.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:8891a18eda6ee56e8f0809419933025dfdd4d7db7eb4b1f97616991a56b305e2
|
||||
size 38691853
|
3
matrix-synapse-1.124.0.obscpio
Normal file
3
matrix-synapse-1.124.0.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ca8a0a7ab9b05ac6ba6aebbd21ee3a8558c5b38307258171304a3f05138085f3
|
||||
size 38803469
|
@ -27,7 +27,7 @@
|
||||
|
||||
%define pkgname matrix-synapse
|
||||
Name: %{pkgname}-test
|
||||
Version: 1.123.0
|
||||
Version: 1.124.0
|
||||
Release: 0
|
||||
Summary: Test package for %{pkgname}
|
||||
License: AGPL-3.0-or-later
|
||||
|
@ -1,3 +1,51 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 11 13:24:15 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- Update to 1.124.0
|
||||
- Bugfixes
|
||||
- Fix regression in performance of sending events due to
|
||||
superfluous reads and locks. Introduced in v1.124.0rc1.
|
||||
(#18141)
|
||||
- Fix regression where persisting events in some rooms could
|
||||
fail after a previous unclean shutdown. Introduced in
|
||||
v1.124.0rc1. (#18137)
|
||||
- Add rate limit rc_presence.per_user. This prevents load from
|
||||
excessive presence updates sent by clients via sync api. Also
|
||||
rate limit /_matrix/client/v3/presence as per the spec.
|
||||
Contributed by @rda0. (#18000)
|
||||
- Deactivated users will no longer automatically accept an
|
||||
invite when auto_accept_invites is enabled. (#18073)
|
||||
- Fix join being denied after being invited over federation.
|
||||
Also fixes other out-of-band membership transitions. (#18075)
|
||||
- Updates contributed docker-compose.yml file to PostgreSQL
|
||||
v15, as v12 is no longer supported by Synapse. Contributed by
|
||||
@maxkratz. (#18089)
|
||||
- Fix rare edge case where state groups could be deleted while
|
||||
we are persisting new events that reference them. (#18107,
|
||||
#18130, #18131)
|
||||
- Raise an error if someone is using an incorrect suffix in a
|
||||
config duration string. (#18112)
|
||||
- Fix a bug where the Delete Room Admin API would fail if the
|
||||
block parameter was set to true and a worker other than the
|
||||
main process was configured to handle background tasks.
|
||||
(#18119)
|
||||
- Internal Changes
|
||||
- Increase the length of the generated nonce parameter when
|
||||
perfoming OIDC logins to comply with the TI-Messenger spec.
|
||||
(#18109)
|
||||
- Updates to locked dependencies
|
||||
- Bump dawidd6/action-download-artifact from 7 to 8. (#18108)
|
||||
- Bump log from 0.4.22 to 0.4.25. (#18098)
|
||||
- Bump python-multipart from 0.0.18 to 0.0.20. (#18096)
|
||||
- Bump serde_json from 1.0.135 to 1.0.137. (#18099)
|
||||
- Bump types-bleach from 6.1.0.20240331 to 6.2.0.20241123.
|
||||
(#18082)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 17:44:27 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
- enable support for building against 3.11 on older distros
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 28 16:33:21 UTC 2025 - Marcus Rueckert <mrueckert@suse.de>
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: matrix-synapse
|
||||
version: 1.123.0
|
||||
mtime: 1738078678
|
||||
commit: 3d8535b1def2fde26a10bdf15d0b9dbd941a6005
|
||||
version: 1.124.0
|
||||
mtime: 1739271410
|
||||
commit: c1b7c6b12e7b9b2cf586a3210145f70a5e30ed67
|
||||
|
@ -126,7 +126,11 @@
|
||||
|
||||
%define requires_peq() %(echo '%*' | LC_ALL=C xargs -r rpm -q --whatprovides --qf 'Requires: %%{name} = %%{epoch}:%%{version}\\n' | sed -e 's/ (none):/ /' -e 's/ 0:/ /' | grep -v "is not")
|
||||
|
||||
%if 0%{?suse_version} >= 1600
|
||||
%define use_python %{primary_python}
|
||||
%else
|
||||
%define use_python python311
|
||||
%endif
|
||||
|
||||
%define pythons %{use_python}
|
||||
|
||||
@ -155,7 +159,7 @@
|
||||
%define pkgname matrix-synapse
|
||||
%define eggname matrix_synapse
|
||||
Name: %{pkgname}
|
||||
Version: 1.123.0
|
||||
Version: 1.124.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:1651aa1ae4bf7d59547b5af42a274aed68fb61b66643d6deed126baf8ce833f0
|
||||
size 4084862
|
||||
oid sha256:b9c901122378e1d64dc5f5bca1852dc1c5bc7d7271cbcd2777674d644f3fcc05
|
||||
size 4120195
|
||||
|
Loading…
x
Reference in New Issue
Block a user