diff options
author | Remi Collet <remi@remirepo.net> | 2025-10-05 06:26:26 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-10-05 06:26:26 +0200 |
commit | e9f9fcbe1861c491d245a67d1f8166f6e4b3ae87 (patch) | |
tree | 9d1eb5b04963f3283283e82e4738d3a6442bba46 /redis.spec | |
parent | 6faad81353881ed4d8e9f92a8f40e310e35741e0 (diff) |
fix CONFIG REWRITE breaks configuration
reported as https://github.com/redis/redis/issues/14404
using patch from https://github.com/redis/redis/pull/14407
Diffstat (limited to 'redis.spec')
-rw-r--r-- | redis.spec | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -22,7 +22,7 @@ Name: redis Version: %{upstream_ver} -Release: 1%{?dist} +Release: 2%{?dist} Summary: A persistent key-value database # redis: RSALv2 or SSPLv1 or AGPLv3 (only AGPLv3 is OSS) # hiredis: BSD-3-Clause @@ -41,6 +41,8 @@ Source5: %{name}.tmpfiles # Fix default paths in configuration files for RPM layout Patch0: %{name}-conf.patch +# Workaround to https://github.com/redis/redis/issues/14404 +Patch1: %{name}-loadmod.patch BuildRequires: gcc BuildRequires: gcc-c++ @@ -129,6 +131,7 @@ API documentation is available in the redis-doc package. %prep %setup -q -n %{name}-%{upstream_ver} %patch -P0 -p1 -b .old +%patch -P1 -p1 -b .loadmod %if %{with jemalloc} rm -frv deps/jemalloc @@ -325,6 +328,11 @@ fi %changelog +* Sun Oct 5 2025 Remi Collet <remi@remirepo.net> - 8.2.2-2 +- fix CONFIG REWRITE breaks configuration + reported as https://github.com/redis/redis/issues/14404 + using patch from https://github.com/redis/redis/pull/14407 + * Fri Oct 3 2025 Remi Collet <remi@remirepo.net> - 8.2.2-1 - Redis 8.2.2 Released Fri 3 Oct 2025 10:00:00 IST - Update urgency: SECURITY: |