Blame SPECS/redis.spec

e7825d
# RHSCL spec file for redis, adapted for SCL from:
e7825d
#
e7825d
# Fedora spec file for redis
e7825d
#
e7825d
# License: MIT
e7825d
# http://opensource.org/licenses/MIT
e7825d
#
e7825d
# Please preserve changelog entries
e7825d
#
e7825d
%global _hardened_build 1
e7825d
e7825d
%if 0%{?scl:1}
e7825d
%scl_package redis
e7825d
%else
e7825d
%global pkg_name          %{name}
e7825d
%global _root_sysconfdir  %{_sysconfdir}
e7825d
%global _root_initddir    %{_initddir}
e7825d
%global _root_libexecdir  %{_libexecdir}
e7825d
%endif
e7825d
e7825d
# Tests fail in mock, not in local build.
e7825d
%global with_tests   %{?_with_tests:1}%{!?_with_tests:0}
e7825d
e7825d
Name:             %{?scl_prefix}redis
95114a
Version:          5.0.5
3a8238
Release:          3%{?dist}
e7825d
Summary:          A persistent key-value database
e7825d
e7825d
Group:            Applications/Databases
e7825d
# redis, jemalloc, linenoise, lzf, hiredis are BSD
e7825d
# lua is MIT
e7825d
License:          BSD and MIT
e7825d
URL:              http://redis.io
e7825d
Source0:          http://download.redis.io/releases/%{pkg_name}-%{version}.tar.gz
e7825d
Source1:          %{pkg_name}.logrotate
e7825d
Source3:          %{pkg_name}.service
e7825d
Source6:          %{pkg_name}-sentinel.service
e7825d
Source7:          %{pkg_name}-shutdown
e7825d
Source8:          %{pkg_name}-limit-systemd
e7825d
e7825d
# To refresh patches:
e7825d
# tar xf redis-xxx.tar.gz && cd redis-xxx && git init && git add . && git commit -m "%%{version} baseline"
e7825d
# git am %%{patches}
e7825d
# Then refresh your patches
e7825d
# git format-patch HEAD~<number of expected patches>
e7825d
# Update configuration for Fedora
e7825d
# https://github.com/antirez/redis/pull/3491 - man pages
e7825d
Patch0001:        0001-1st-man-pageis-for-redis-cli-redis-benchmark-redis-c.patch
e7825d
# https://github.com/antirez/redis/pull/3494 - symlink
e7825d
Patch0002:        0002-install-redis-check-rdb-as-a-symlink-instead-of-dupl.patch
e7825d
3a8238
# Security patches
3a8238
Patch102:          redis-CVE-2021-41099.patch
3a8238
Patch103:          redis-CVE-2021-32687.patch
3a8238
Patch104:          redis-CVE-2021-32626.patch
3a8238
Patch105:          redis-CVE-2021-32627.patch
3a8238
Patch106:          redis-CVE-2021-32675.patch
e7825d
e7825d
BuildRequires:    tcl >= 8.5
e7825d
e7825d
# Required for redis-shutdown
e7825d
Requires:         /bin/awk
e7825d
Requires:         logrotate
e7825d
Requires(pre):    shadow-utils
e7825d
BuildRequires:    systemd-units
e7825d
Requires(post):   systemd-units
e7825d
Requires(preun):  systemd-units
e7825d
Requires(postun): systemd-units
e7825d
e7825d
Provides:         bundled(hiredis)
e7825d
Provides:         bundled(lua-libs)
e7825d
Provides:         bundled(linenoise)
e7825d
Provides:         bundled(jemalloc) = 4.0.3
e7825d
Provides:         bundled(lzf)
e7825d
e7825d
e7825d
%description
e7825d
Redis is an advanced key-value store. It is often referred to as a data
e7825d
structure server since keys can contain strings, hashes, lists, sets and
e7825d
sorted sets.
e7825d
e7825d
You can run atomic operations on these types, like appending to a string;
e7825d
incrementing the value in a hash; pushing to a list; computing set
e7825d
intersection, union and difference; or getting the member with highest
e7825d
ranking in a sorted set.
e7825d
e7825d
In order to achieve its outstanding performance, Redis works with an
e7825d
in-memory dataset. Depending on your use case, you can persist it either
e7825d
by dumping the dataset to disk every once in a while, or by appending
e7825d
each command to a log.
e7825d
e7825d
Redis also supports trivial-to-setup master-slave replication, with very
e7825d
fast non-blocking first synchronization, auto-reconnection on net split
e7825d
and so forth.
e7825d
e7825d
Other features include Transactions, Pub/Sub, Lua scripting, Keys with a
e7825d
limited time-to-live, and configuration settings to make Redis behave like
e7825d
a cache.
e7825d
e7825d
You can use Redis from most programming languages also.
e7825d
e7825d
Documentation: http://redis.io/documentation
e7825d
e7825d
e7825d
%prep
e7825d
%setup -q -n %{pkg_name}-%{version}
e7825d
e7825d
%patch0001 -p1
e7825d
%patch0002 -p1
e7825d
3a8238
%patch102 -p1 -b .cve-2021-41099
3a8238
%patch103 -p1 -b .cve-2021-32687
3a8238
%patch104 -p1 -b .cve-2021-32626
3a8238
%patch105 -p1 -b .cve-2021-32627
3a8238
%patch106 -p1 -b .cve-2021-32675
3a8238
e7825d
mv deps/lua/COPYRIGHT    COPYRIGHT-lua
e7825d
mv deps/jemalloc/COPYING COPYING-jemalloc
e7825d
mv deps/hiredis/COPYING  COPYING-hiredis
e7825d
e7825d
# Configuration file changes and additions
e7825d
sed -i -e 's|^logfile .*$|logfile /var/log/redis/redis.log|g' redis.conf
95114a
sed -i -e 's|^logfile .*$|logfile /var/log/redis/sentinel.log|g' sentinel.conf
e7825d
sed -i -e 's|^dir .*$|dir /var/lib/redis|g' redis.conf
e7825d
e7825d
%global make_flags	DEBUG="" V="echo" LDFLAGS="%{?__global_ldflags}" CFLAGS+="%{optflags} -fPIC" INSTALL="install -p" PREFIX=%{buildroot}%{_prefix}
e7825d
e7825d
%build
e7825d
make %{?_smp_mflags} %{make_flags} all
e7825d
e7825d
e7825d
%check
e7825d
%if %{with_tests}
e7825d
make test
e7825d
make test-sentinel
e7825d
%else
e7825d
: Test disabled, missing '--with tests' option.
e7825d
%endif
e7825d
e7825d
%install
e7825d
make %{make_flags} install
e7825d
e7825d
# Install misc other
e7825d
install -p -D -m 644 %{SOURCE1}       %{buildroot}%{_root_sysconfdir}/logrotate.d/%{name}
e7825d
sed -e 's:/var:%{_localstatedir}:' -i %{buildroot}%{_root_sysconfdir}/logrotate.d/%{name}
e7825d
e7825d
sed -e 's:/var:%{_localstatedir}:' -i %{pkg_name}.conf sentinel.conf
e7825d
install -p -D -m 644 %{pkg_name}.conf %{buildroot}%{_sysconfdir}/%{pkg_name}.conf
e7825d
install -p -D -m 644 sentinel.conf    %{buildroot}%{_sysconfdir}/%{pkg_name}-sentinel.conf
e7825d
install -d -m 750 %{buildroot}%{_localstatedir}/lib/%{pkg_name}
e7825d
install -d -m 750 %{buildroot}%{_localstatedir}/log/%{pkg_name}
e7825d
e7825d
# Install systemd unit
e7825d
sed -e 's:/usr/bin:%{_bindir}:;s:/var:%{_localstatedir}:;s:/etc:%{_sysconfdir}:;s:/usr/libexec:%{_libexecdir}:' \
e7825d
    %{SOURCE3} >tmp_file
e7825d
install -p -D -m 644 tmp_file   %{buildroot}%{_unitdir}/%{name}.service
e7825d
sed -e 's:/usr/bin:%{_bindir}:;s:/var:%{_localstatedir}:;s:/etc:%{_sysconfdir}:;s:/usr/libexec:%{_libexecdir}:' \
e7825d
    %{SOURCE6} >tmp_file
e7825d
install -p -D -m 644 tmp_file   %{buildroot}%{_unitdir}/%{name}-sentinel.service
e7825d
# this folder requires systemd >= 204
e7825d
install -p -D -m 644 %{SOURCE8} %{buildroot}%{_root_sysconfdir}/systemd/system/%{name}.service.d/limit.conf
e7825d
install -p -D -m 644 %{SOURCE8} %{buildroot}%{_root_sysconfdir}/systemd/system/%{name}-sentinel.service.d/limit.conf
e7825d
e7825d
# Fix non-standard-executable-perm error
e7825d
chmod 755 %{buildroot}%{_bindir}/%{pkg_name}-*
e7825d
e7825d
# Install redis-shutdown
e7825d
sed -e 's:/usr/bin:%{_bindir}:;s:/var:%{_localstatedir}:;s:/etc:%{_sysconfdir}:' \
e7825d
    %{SOURCE7} >tmp_file
e7825d
install -pDm755 tmp_file %{buildroot}%{_libexecdir}/%{pkg_name}-shutdown
e7825d
e7825d
rm tmp_file
e7825d
e7825d
# Install man pages
e7825d
man=$(dirname %{buildroot}%{_mandir})
e7825d
for page in man/man?/*; do
e7825d
    install -Dpm644 $page $man/$page
e7825d
done
e7825d
ln -s redis-server.1 %{buildroot}%{_mandir}/man1/redis-sentinel.1
e7825d
ln -s redis.conf.5   %{buildroot}%{_mandir}/man5/redis-sentinel.conf.5
e7825d
e7825d
%if 0%{?nfsmountable:1}
e7825d
install -d -m 750 %{buildroot}%{_scl_scripts}/register.content%{_localstatedir}/lib/%{pkg_name}
e7825d
install -d -m 750 %{buildroot}%{_scl_scripts}/register.content%{_localstatedir}/log/%{pkg_name}
e7825d
e7825d
e7825d
install -D -m 644 %{buildroot}%{_root_sysconfdir}/logrotate.d/%{name} \
e7825d
                  %{buildroot}%{_scl_scripts}/register.content%{_root_sysconfdir}/logrotate.d/%{name}
e7825d
e7825d
install -D -m 644 %{buildroot}%{_sysconfdir}/%{pkg_name}.conf \
e7825d
                  %{buildroot}%{_scl_scripts}/register.content%{_sysconfdir}/%{pkg_name}.conf
e7825d
install -D -m 644 %{buildroot}%{_sysconfdir}/%{pkg_name}-sentinel.conf \
e7825d
                  %{buildroot}%{_scl_scripts}/register.content%{_sysconfdir}/%{pkg_name}-sentinel.conf
e7825d
e7825d
install -p -D -m 644 %{buildroot}%{_unitdir}/%{name}.service \
e7825d
                     %{buildroot}%{_scl_scripts}/register.content%{_unitdir}/%{name}.service
e7825d
install -p -D -m 644 %{buildroot}%{_unitdir}/%{name}-sentinel.service \
e7825d
                     %{buildroot}%{_scl_scripts}/register.content%{_unitdir}/%{name}-sentinel.service
e7825d
%endif
e7825d
e7825d
e7825d
%post
e7825d
%systemd_post %{name}.service
e7825d
%systemd_post %{name}-sentinel.service
e7825d
e7825d
%pre
e7825d
getent group  redis &> /dev/null || \
e7825d
groupadd -r redis &> /dev/null
e7825d
getent passwd redis &> /dev/null || \
e7825d
useradd -r -g redis -d %{_sharedstatedir}/redis -s /sbin/nologin \
e7825d
        -c 'Redis Server' redis &> /dev/null
e7825d
exit 0
e7825d
e7825d
%preun
e7825d
%systemd_preun %{name}.service
e7825d
%systemd_preun %{name}-sentinel.service
e7825d
e7825d
%postun
e7825d
%systemd_postun_with_restart %{name}.service
e7825d
%systemd_postun_with_restart %{name}-sentinel.service
e7825d
e7825d
e7825d
%files
e7825d
%{!?_licensedir:%global license %%doc}
e7825d
%license COPYING
e7825d
%license COPYRIGHT-lua
e7825d
%license COPYING-jemalloc
e7825d
%license COPYING-hiredis
e7825d
%doc 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO README.md
e7825d
%config(noreplace) %{_root_sysconfdir}/logrotate.d/%{name}
e7825d
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{pkg_name}.conf
e7825d
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{pkg_name}-sentinel.conf
e7825d
%dir %attr(0750, redis, redis) %{_localstatedir}/lib/%{pkg_name}
e7825d
%dir %attr(0750, redis, redis) %{_localstatedir}/log/%{pkg_name}
e7825d
%{_bindir}/%{pkg_name}-*
e7825d
%{_libexecdir}/%{pkg_name}-shutdown
e7825d
%{_mandir}/man1/%{pkg_name}*
e7825d
%{_mandir}/man5/%{pkg_name}*
e7825d
e7825d
%{_unitdir}/%{name}.service
e7825d
%{_unitdir}/%{name}-sentinel.service
e7825d
%dir %{_root_sysconfdir}/systemd/system/%{name}.service.d
e7825d
%config(noreplace) %{_root_sysconfdir}/systemd/system/%{name}.service.d/limit.conf
e7825d
%dir %{_root_sysconfdir}/systemd/system/%{name}-sentinel.service.d
e7825d
%config(noreplace) %{_root_sysconfdir}/systemd/system/%{name}-sentinel.service.d/limit.conf
e7825d
e7825d
e7825d
%if 0%{?nfsmountable:1}
e7825d
%dir %{_scl_scripts}/register.content%{_root_sysconfdir}/logrotate.d
e7825d
     %{_scl_scripts}/register.content%{_root_sysconfdir}/logrotate.d/%{name}
e7825d
%dir                           %{_scl_scripts}/register.content%{_sysconfdir}
e7825d
     %attr(0640, redis, root)  %{_scl_scripts}/register.content%{_sysconfdir}/%{pkg_name}.conf
e7825d
     %attr(0640, redis, root)  %{_scl_scripts}/register.content%{_sysconfdir}/%{pkg_name}-sentinel.conf
e7825d
%dir                           %{_scl_scripts}/register.content%{_localstatedir}
e7825d
%dir                           %{_scl_scripts}/register.content%{_localstatedir}/lib
e7825d
%dir %attr(0750, redis, redis) %{_scl_scripts}/register.content%{_localstatedir}/lib/%{pkg_name}
e7825d
%dir                           %{_scl_scripts}/register.content%{_localstatedir}/log
e7825d
%dir %attr(0750, redis, redis) %{_scl_scripts}/register.content%{_localstatedir}/log/%{pkg_name}
e7825d
%dir                           %{_scl_scripts}/register.content%{_localstatedir}
e7825d
%dir %{_scl_scripts}/register.content%{_unitdir}
e7825d
     %{_scl_scripts}/register.content%{_unitdir}/%{name}.service
e7825d
     %{_scl_scripts}/register.content%{_unitdir}/%{name}-sentinel.service
e7825d
%endif
e7825d
e7825d
e7825d
%changelog
3a8238
* Mon Oct 11 2021 Remi Collet <rcollet@redhat.com> - 5.0.5-3
3a8238
- fix denial of service via Redis Standard Protocol (RESP) request
3a8238
  CVE-2021-32675
3a8238
3a8238
* Fri Oct  8 2021 Remi Collet <rcollet@redhat.com> - 5.0.5-2
3a8238
- fix lua scripts can overflow the heap-based Lua stack
3a8238
  CVE-2021-32626
3a8238
- fix integer overflow issue with Streams
3a8238
  CVE-2021-32627
3a8238
- fix integer overflow bug in the ziplist data structure
3a8238
  CVE-2021-32628
3a8238
- fix integer overflow issue with intsets
3a8238
  CVE-2021-32687
3a8238
- fix integer overflow issue with strings
3a8238
  CVE-2021-41099
3a8238
95114a
* Fri Jul 12 2019 Remi Collet <rcollete@redhat.com> - 5.0.5-1
95114a
- rebase to 5.0.5
95114a
- fix Heap buffer overflow in HyperLogLog triggered by malicious client
95114a
  CVE-2019-10192
95114a
- fix Stack buffer overflow in HyperLogLog triggered by malicious client
95114a
  CVE-2019-10193
95114a
e7825d
* Mon Jan 14 2019 Remi Collet <rcollete@redhat.com> - 5.0.3-2
e7825d
- fix License and URL
e7825d
e7825d
* Thu Jan 10 2019 Remi Collet <rcollete@redhat.com> - 5.0.3-1
e7825d
- update to 5.0.3 for RHSCL 3.3
e7825d
e7825d
* Fri Feb 23 2018 Remi Collet <rcollete@redhat.com> - 3.2.4-3
e7825d
- fix wrong file referenced in init script #1548516
e7825d
e7825d
* Tue Oct 25 2016 Remi Collet <remi@fedoraproject.org> - 3.2.4-1
e7825d
- rebase to 3.2.4 #1379378
e7825d
- fix init scripts (reload|force-reload) #1369495
e7825d
e7825d
* Wed Sep 14 2016 Remi Collet <remi@fedoraproject.org> - 3.2.3-3
e7825d
- move redis-shutdown to libexec #1375922
e7825d
- add LSB headers to init scripts #1369495
e7825d
e7825d
* Mon Sep 12 2016 Remi Collet <remi@fedoraproject.org> - 3.2.3-2
e7825d
- provide redis-check-rdb as a symlink to redis-server
e7825d
  add patch from https://github.com/antirez/redis/pull/3494
e7825d
- data and configuration should not be publicly readable #1374717
e7825d
- remove /var/run/redis with systemd
e7825d
- add man pages from https://github.com/antirez/redis/pull/3491 #1369821
e7825d
e7825d
* Thu Sep  8 2016 Remi Collet <rcollet@redhat.com> - 3.2.3-1
e7825d
- rebase to 3.2.3 #1368102
e7825d
- fix redis-shutdown script
e7825d
- init script doesn't support load/force-reload option #1369495
e7825d
e7825d
* Wed Jul 27 2016 Remi Collet <rcollet@redhat.com> - 3.2.1-1
e7825d
- adapt for RHSCL 2.3.0
e7825d
e7825d
* Fri Jun 24 2016 Remi Collet <remi@fedoraproject.org> - 3.2.1-2
e7825d
- fix %%postun scriptlet, thanks Matthias)
e7825d
e7825d
* Mon Jun 20 2016 Remi Collet <remi@fedoraproject.org> - 3.2.1-1
e7825d
- Redis 3.2.1 - Release date: Fri Jun 17 15:01:56 CEST 2016
e7825d
- Upgrade urgency HIGH: Critical fix to Redis Sentinel,
e7825d
  due to 3.2.0 regression compared to 3.0.
e7825d
e7825d
* Tue May 10 2016 Remi Collet <remi@fedoraproject.org> - 3.2.0-1
e7825d
- update to 3.2.0
e7825d
e7825d
* Mon Feb  8 2016 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2-0.4.rc3
e7825d
- Fix redis-shutdown to handle password-protected instances shutdown
e7825d
e7825d
* Thu Jan 28 2016 Remi Collet <remi@fedoraproject.org> - 3.2-0.3.rc3
e7825d
- update to 3.2-rc3 (version 3.1.103)
e7825d
e7825d
* Tue Jan 26 2016 Remi Collet <remi@fedoraproject.org> - 3.2-0.2.rc2
e7825d
- update to 3.2-rc2 (version 3.1.102)
e7825d
e7825d
* Fri Jan 15 2016 Remi Collet <remi@fedoraproject.org> - 3.2-0.1.rc1
e7825d
- update to 3.2-rc1 (version 3.1.101)
e7825d
  This is the first release candidate of Redis 3.2
e7825d
e7825d
* Sat Dec 26 2015 Remi Collet <remi@fedoraproject.org> - 3.0.6-1
e7825d
- Redis 3.0.6 - Release date: 18 Dec 2015
e7825d
- Upgrade urgency: MODERATE
e7825d
e7825d
* Fri Oct 16 2015 Remi Collet <remi@fedoraproject.org> - 3.0.5-1
e7825d
- Redis 3.0.5 - Release date: 15 Oct 2015
e7825d
- Upgrade urgency: MODERATE
e7825d
e7825d
* Thu Sep 10 2015 Remi Collet <remi@fedoraproject.org> - 3.0.4-1
e7825d
- Redis 3.0.4 - Release date: 8 Sep 2015
e7825d
- Upgrade urgency: HIGH for Redis and Sentinel.
e7825d
e7825d
* Wed Aug  5 2015 Remi Collet <remi@fedoraproject.org> - 3.0.3-1.1
e7825d
- make redis-shutdown more robust, see #22
e7825d
e7825d
* Fri Jul 17 2015 Remi Collet <remi@fedoraproject.org> - 3.0.3-1
e7825d
- Redis 3.0.3 - Release date: 17 Jul 2015
e7825d
- Upgrade urgency: LOW for Redis and Sentinel.
e7825d
e7825d
* Tue Jun  9 2015 Remi Collet <remi@fedoraproject.org> - 3.0.2-1
e7825d
- Redis 3.0.2 - Release date: 4 Jun 2015
e7825d
- Upgrade urgency: HIGH for Redis because of a security issue.
e7825d
                   LOW for Sentinel.
e7825d
e7825d
* Wed May  6 2015 Remi Collet <remi@fedoraproject.org> - 3.0.1-1
e7825d
- Redis 3.0.1 - Release date: 5 May 2015
e7825d
- Upgrade urgency: LOW for Redis and Cluster, MODERATE for Sentinel.
e7825d
e7825d
* Tue Apr 14 2015 Remi Collet <remi@fedoraproject.org> - 3.0.0-2
e7825d
- rebuild with new redis-shutdown from rawhide
e7825d
- improved description from rawhide
e7825d
- use redis/redis owner for directories under /var
e7825d
e7825d
* Mon Apr  6 2015 Remi Collet <remi@fedoraproject.org> - 3.0.0-1
e7825d
- Redis 3.0.0 - Release date: 1 Apr 2015
e7825d
e7825d
* Thu Mar 26 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.19-2
e7825d
- Fix redis-shutdown on multiple NIC setup (RHBZ #1201237)
e7825d
e7825d
* Wed Dec 17 2014 Remi Collet <remi@fedoraproject.org> - 2.8.19-1
e7825d
- Redis 2.8.19 - Release date: 16 Dec 2014
e7825d
  upgrade urgency: LOW for both Redis and Sentinel.
e7825d
e7825d
* Sat Dec 13 2014 Remi Collet <remi@fedoraproject.org> - 2.8.18-2
e7825d
- provides /etc/systemd/system/redis.service.d/limit.conf
e7825d
  and /etc/systemd/system/redis-sentinel.service.d/limit.conf
e7825d
  or /etc/security/limits.d/95-redis.conf
e7825d
e7825d
* Thu Dec  4 2014 Remi Collet <remi@fedoraproject.org> - 2.8.18-1.1
e7825d
- EL-5 rebuild with upstream patch
e7825d
e7825d
* Thu Dec  4 2014 Remi Collet <remi@fedoraproject.org> - 2.8.18-1
e7825d
- Redis 2.8.18 - Release date: 4 Dec 2014
e7825d
  upgrade urgency: LOW for both Redis and Sentinel.
e7825d
- fix isfinite missing on EL-5
e7825d
e7825d
* Sun Sep 21 2014 Remi Collet <remi@fedoraproject.org> - 2.8.17-2
e7825d
- fix sentinel service unit file for systemd
e7825d
- also use redis-shutdown in init scripts
e7825d
e7825d
* Sat Sep 20 2014 Remi Collet <remi@fedoraproject.org> - 2.8.17-1
e7825d
- Redis 2.8.17 - Release date: 19 Sep 2014
e7825d
  upgrade urgency: HIGH for Redis Sentinel, LOW for Redis Server.
e7825d
e7825d
* Wed Sep 17 2014 Remi Collet <remi@fedoraproject.org> - 2.8.16-1
e7825d
- Redis 2.8.16 - Release date: 16 Sep 2014
e7825d
  upgrade urgency: HIGH for Redis, LOW for Sentinel.
e7825d
e7825d
* Fri Sep 12 2014 Remi Collet <remi@fedoraproject.org> - 2.8.15-1
e7825d
- Redis 2.8.15 - Release date: 12 Sep 2014
e7825d
  upgrade urgency: LOW for Redis, HIGH for Sentinel.
e7825d
- move commands from /usr/sbin to /usr/bin
e7825d
- add redis-shutdown command (systemd)
e7825d
e7825d
* Thu Sep  4 2014 Remi Collet <remi@fedoraproject.org> - 2.8.14-1
e7825d
- Redis 2.8.14 - Release date:  1 Sep 2014
e7825d
  upgrade urgency: HIGH for Lua scripting users, otherwise LOW.
e7825d
e7825d
* Tue Jul 15 2014 Remi Collet <remi@fedoraproject.org> - 2.8.13-1
e7825d
- Redis 2.8.13 - Release date: 14 Jul 2014
e7825d
  upgrade urgency: LOW for Redis and Sentinel
e7825d
e7825d
* Tue Jun 24 2014 Remi Collet <remi@fedoraproject.org> - 2.8.12-1
e7825d
- Redis 2.8.12 - Release date: 23 Jun 2014
e7825d
  upgrade urgency: HIGH for Redis, CRITICAL for Sentinel.
e7825d
- always use jemalloc (instead of tcmalloc)
e7825d
e7825d
* Mon Jun 16 2014 Remi Collet <remi@fedoraproject.org> - 2.8.11-1
e7825d
- Redis 2.8.11 - Release date: 11 Jun 2014
e7825d
  upgrade urgency: HIGH if you use Lua scripting, LOW otherwise.
e7825d
e7825d
* Fri Jun  6 2014 Remi Collet <remi@fedoraproject.org> - 2.8.10-1
e7825d
- Redis 2.8.10 - Release date: 5 Jun 2014
e7825d
  upgrade urgency: HIGH if you use min-slaves-to-write option.
e7825d
e7825d
* Tue Apr 22 2014 Remi Collet <remi@fedoraproject.org> - 2.8.9-1
e7825d
- Redis 2.8.9 - Release date: 22 Apr 2014
e7825d
  upgrade urgency: LOW, only new features introduced, no bugs fixed.
e7825d
e7825d
* Thu Mar 27 2014 Remi Collet <remi@fedoraproject.org> - 2.8.8-1
e7825d
- Redis 2.8.8 - Release date: 25 Mar 2014
e7825d
  upgrade urgency: HIGH for Redis, LOW for Sentinel.
e7825d
e7825d
* Sat Mar  8 2014 Remi Collet <remi@fedoraproject.org> - 2.8.7-1
e7825d
- Redis 2.8.7 - Release date: 5 Mar 2014
e7825d
  upgrade urgency: LOW for Redis, LOW for Sentinel.
e7825d
e7825d
* Fri Feb 14 2014 Remi Collet <remi@fedoraproject.org> - 2.8.6-1
e7825d
- Redis 2.8.6 - Release date: 13 Feb 2014
e7825d
  upgrade urgency: HIGH for Redis, LOW for Sentinel.
e7825d
e7825d
* Thu Jan 16 2014 Remi Collet <remi@fedoraproject.org> - 2.8.4-1
e7825d
- Redis 2.8.4 - Release date: 13 Jan 2014
e7825d
  upgrade urgency: MODERATE for Redis and Sentinel.
e7825d
e7825d
* Mon Jan  6 2014 Remi Collet <remi@fedoraproject.org> - 2.8.3-2
e7825d
- add redis-sentinel command (link to redis-server)
e7825d
- don't rely on config for daemonize and pidfile
e7825d
- add redis-sentinel service
e7825d
e7825d
* Sat Dec 14 2013 Remi Collet <remi@fedoraproject.org> - 2.8.3-1
e7825d
- Redis 2.8.3
e7825d
  upgrade urgency: MODERATE for Redis, HIGH for Sentinel.
e7825d
- redis own /etc/redis.conf (needed CONFIG WRITE)
e7825d
- add sentinel.conf as documentation
e7825d
e7825d
* Mon Dec  2 2013 Remi Collet <remi@fedoraproject.org> - 2.8.2-1
e7825d
- Redis 2.8.2, new major version
e7825d
- pull rawhide changes (add tmpfiles)
e7825d
e7825d
* Sun Sep  8 2013 Remi Collet <remi@fedoraproject.org> - 2.6.16-1
e7825d
- Redis 2.6.16
e7825d
  upgrade urgency: MODERATE
e7825d
e7825d
* Fri Sep 06 2013 Fabian Deutsch <fabian.deutsch@gmx.de> - 2.6.16-1
e7825d
- Update to 2.6.16
e7825d
- Fix rhbz#973151
e7825d
- Fix rhbz#656683
e7825d
- Fix rhbz#977357 (Jan Vcelak <jvcelak@fedoraproject.org>)
e7825d
e7825d
* Sat Aug 24 2013 Remi Collet <remi@fedoraproject.org> - 2.6.15-1
e7825d
- Redis 2.6.15
e7825d
  upgrade urgency: MODERATE, upgrade ASAP only if you experience
e7825d
  issues related to the expired keys collection algorithm,
e7825d
  or if you use the ZUNIONSTORE command.
e7825d
e7825d
* Sun Jul 28 2013 Remi Collet <remi@fedoraproject.org> - 2.6.14-1
e7825d
- Redis 2.6.14
e7825d
  upgrade urgency: HIGH because of the following two issues:
e7825d
    Lua scripting + Replication + AOF in slaves problem
e7825d
    AOF + expires possible race condition
e7825d
- add option to run tests during build (not in mock)
e7825d
e7825d
* Tue Jul 23 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.6.13-4
e7825d
- ARM has gperftools
e7825d
e7825d
* Wed Jun 19 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-3
e7825d
- Modify jemalloc patch for s390 compatibility (Thanks sharkcz)
e7825d
e7825d
* Fri Jun 07 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-2
e7825d
- Unbundle jemalloc
e7825d
e7825d
* Fri Jun 07 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-1
e7825d
- Add compile PIE flag (rhbz#955459)
e7825d
- Update to redis 2.6.13 (rhbz#820919)
e7825d
e7825d
* Tue Apr 30 2013 Remi Collet <remi@fedoraproject.org> - 2.6.13-1
e7825d
- Redis 2.6.13
e7825d
  upgrade urgency: MODERATE, nothing very critical
e7825d
e7825d
* Sat Mar 30 2013 Remi Collet <remi@fedoraproject.org> - 2.6.12-1
e7825d
- Redis 2.6.12
e7825d
  upgrade urgency: MODERATE, nothing very critical
e7825d
  but a few non trivial bugs
e7825d
e7825d
* Tue Mar 12 2013 Remi Collet <remi@fedoraproject.org> - 2.6.11-1
e7825d
- Redis 2.6.11
e7825d
  upgrade urgency: LOW, however updating is encouraged
e7825d
  if you have many instances per server and you want
e7825d
  to lower the CPU / energy usage.
e7825d
e7825d
* Mon Feb 11 2013 Remi Collet <remi@fedoraproject.org> - 2.6.10-1
e7825d
- Redis 2.6.10
e7825d
  upgrade urgency: MODERATE, this release contains many non
e7825d
  critical fixes and many small improvements.
e7825d
e7825d
* Thu Jan 17 2013 Remi Collet <remi@fedoraproject.org> - 2.6.9-1
e7825d
- Redis 2.6.9
e7825d
  upgrade urgency: MODERATE if you use replication.
e7825d
e7825d
* Fri Jan 11 2013 Remi Collet <remi@fedoraproject.org> - 2.6.8-1
e7825d
- Redis 2.6.8
e7825d
  upgrade urgency: MODERATE if you use Lua scripting. Otherwise LOW.
e7825d
e7825d
* Tue Dec  4 2012 Remi Collet <remi@fedoraproject.org> - 2.6.7-1
e7825d
- Redis 2.6.7
e7825d
  upgrade urgency: MODERATE (unless you BLPOP using the same
e7825d
  key multiple times).
e7825d
e7825d
* Fri Nov 23 2012 Remi Collet <remi@fedoraproject.org> - 2.6.5-1
e7825d
- Redis 2.6.5 (upgrade urgency: moderate)
e7825d
e7825d
* Fri Nov 16 2012 Remi Collet <remi@fedoraproject.org> - 2.6.4-1
e7825d
- Redis 2.6.4 (upgrade urgency: low)
e7825d
e7825d
* Sun Oct 28 2012 Remi Collet <remi@fedoraproject.org> - 2.6.2-1
e7825d
- Redis 2.6.2 (upgrade urgency: low)
e7825d
- fix typo in systemd macro
e7825d
e7825d
* Wed Oct 24 2012 Remi Collet <remi@fedoraproject.org> - 2.6.0-1
e7825d
- Redis 2.6.0 is the latest stable version
e7825d
- add patch for old glibc on RHEL-5
e7825d
e7825d
* Sat Oct 20 2012 Remi Collet <remi@fedoraproject.org> - 2.6.0-0.2.rc8
e7825d
- Update to redis 2.6.0-rc8
e7825d
- improve systemd integration
e7825d
e7825d
* Thu Aug 30 2012 Remi Collet <remi@fedoraproject.org> - 2.6.0-0.1.rc6
e7825d
- Update to redis 2.6.0-rc6
e7825d
e7825d
* Thu Aug 30 2012 Remi Collet <remi@fedoraproject.org> - 2.4.16-1
e7825d
- Update to redis 2.4.16
e7825d
e7825d
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.15-3
e7825d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e7825d
e7825d
* Sun Jul 08 2012 Silas Sewell <silas@sewell.org> - 2.4.15-2
e7825d
- Remove TODO from docs
e7825d
e7825d
* Sun Jul 08 2012 Silas Sewell <silas@sewell.org> - 2.4.15-1
e7825d
- Update to redis 2.4.15
e7825d
e7825d
* Sat May 19 2012 Silas Sewell <silas@sewell.org> - 2.4.13-1
e7825d
- Update to redis 2.4.13
e7825d
e7825d
* Sat Mar 31 2012 Silas Sewell <silas@sewell.org> - 2.4.10-1
e7825d
- Update to redis 2.4.10
e7825d
e7825d
* Fri Feb 24 2012 Silas Sewell <silas@sewell.org> - 2.4.8-1
e7825d
- Update to redis 2.4.8
e7825d
e7825d
* Sat Feb 04 2012 Silas Sewell <silas@sewell.org> - 2.4.7-1
e7825d
- Update to redis 2.4.7
e7825d
e7825d
* Wed Feb 01 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-4
e7825d
- Fixed a typo in the spec
e7825d
e7825d
* Tue Jan 31 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-3
e7825d
- Fix .service file, to match config (Type=simple).
e7825d
e7825d
* Tue Jan 31 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-2
e7825d
- Fix .service file, credits go to Timon.
e7825d
e7825d
* Thu Jan 12 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-1
e7825d
- Update to 2.4.6
e7825d
- systemd unit file added
e7825d
- Compiler flags changed to compile 2.4.6
e7825d
- Remove doc/ and Changelog
e7825d
e7825d
* Sun Jul 24 2011 Silas Sewell <silas@sewell.org> - 2.2.12-1
e7825d
- Update to redis 2.2.12
e7825d
e7825d
* Fri May 06 2011 Dan HorĂ¡k <dan[at]danny.cz> - 2.2.5-2
e7825d
- google-perftools exists only on selected architectures
e7825d
e7825d
* Sat Apr 23 2011 Silas Sewell <silas@sewell.ch> - 2.2.5-1
e7825d
- Update to redis 2.2.5
e7825d
e7825d
* Sat Mar 26 2011 Silas Sewell <silas@sewell.ch> - 2.2.2-1
e7825d
- Update to redis 2.2.2
e7825d
e7825d
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-2
e7825d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
e7825d
e7825d
* Sun Dec 19 2010 Silas Sewell <silas@sewell.ch> - 2.0.4-1
e7825d
- Update to redis 2.0.4
e7825d
e7825d
* Tue Oct 19 2010 Silas Sewell <silas@sewell.ch> - 2.0.3-1
e7825d
- Update to redis 2.0.3
e7825d
e7825d
* Fri Oct 08 2010 Silas Sewell <silas@sewell.ch> - 2.0.2-1
e7825d
- Update to redis 2.0.2
e7825d
- Disable checks section for el5
e7825d
e7825d
* Sat Sep 11 2010 Silas Sewell <silas@sewell.ch> - 2.0.1-1
e7825d
- Update to redis 2.0.1
e7825d
e7825d
* Sat Sep 04 2010 Silas Sewell <silas@sewell.ch> - 2.0.0-1
e7825d
- Update to redis 2.0.0
e7825d
e7825d
* Thu Sep 02 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-3
e7825d
- Add Fedora build flags
e7825d
- Send all scriplet output to /dev/null
e7825d
- Remove debugging flags
e7825d
- Add redis.conf check to init script
e7825d
e7825d
* Mon Aug 16 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-2
e7825d
- Don't compress man pages
e7825d
- Use patch to fix redis.conf
e7825d
e7825d
* Tue Jul 06 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-1
e7825d
- Initial package