Blame SPECS/redis.spec

78ee1b
#
78ee1b
# RHEL / Fedora spec file for redis
78ee1b
#
78ee1b
# License: MIT
78ee1b
# http://opensource.org/licenses/MIT
78ee1b
#
78ee1b
# Please preserve changelog entries
78ee1b
#
78ee1b
78ee1b
# Tests fail in mock, not in local build.
78ee1b
%bcond_with    tests
78ee1b
78ee1b
# Commit IDs for the (unversioned) redis-doc repository
78ee1b
# https://fedoraproject.org/wiki/Packaging:SourceURL "Commit Revision"
78ee1b
%global doc_commit 8d4bf9bc476829a84a055c049be72634d6e938df
78ee1b
%global short_doc_commit %(c=%{doc_commit}; echo ${c:0:7})
78ee1b
78ee1b
# %%{rpmmacrodir} not usable on EL-6
78ee1b
%global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d)
78ee1b
78ee1b
Name:              redis
cc53ee
Version:           6.2.7
cc53ee
Release:           1%{?dist}
78ee1b
Summary:           A persistent key-value database
78ee1b
# redis, jemalloc, linenoise, lzf, hiredis are BSD
78ee1b
# lua is MIT
78ee1b
License:           BSD and MIT
78ee1b
URL:               https://redis.io
78ee1b
Source0:           https://download.redis.io/releases/%{name}-%{version}.tar.gz
78ee1b
Source1:           %{name}.logrotate
78ee1b
Source2:           %{name}-sentinel.service
78ee1b
Source3:           %{name}.service
78ee1b
Source4:           %{name}-sentinel.init
78ee1b
Source5:           %{name}.init
78ee1b
Source6:           %{name}-shutdown
78ee1b
Source7:           %{name}-limit-systemd
78ee1b
Source8:           %{name}-limit-init
78ee1b
Source9:           macros.%{name}
78ee1b
Source10:          https://github.com/antirez/%{name}-doc/archive/%{doc_commit}/%{name}-doc-%{short_doc_commit}.tar.gz
78ee1b
78ee1b
# To refresh patches:
78ee1b
# tar xf redis-xxx.tar.gz && cd redis-xxx && git init && git add . && git commit -m "%%{version} baseline"
78ee1b
# git am %%{patches}
78ee1b
# Then refresh your patches
78ee1b
# git format-patch HEAD~<number of expected patches>
78ee1b
# Update configuration for Fedora
78ee1b
# https://github.com/antirez/redis/pull/3491 - man pages
78ee1b
Patch0001:         0001-1st-man-pageis-for-redis-cli-redis-benchmark-redis-c.patch
aee5d3
# revert BC break
aee5d3
Patch0003:         redis-config.patch
78ee1b
78ee1b
# Security patches
78ee1b
78ee1b
BuildRequires:     gcc
78ee1b
%if %{with tests}
78ee1b
BuildRequires:     procps-ng
78ee1b
BuildRequires:     tcl
78ee1b
%endif
78ee1b
BuildRequires:     pkgconfig(libsystemd)
78ee1b
BuildRequires:     systemd-devel
78ee1b
BuildRequires:     openssl-devel
78ee1b
# Required for redis-shutdown
78ee1b
Requires:          /bin/awk
78ee1b
Requires:          logrotate
78ee1b
Requires(pre):     shadow-utils
78ee1b
Requires(post):    systemd
78ee1b
Requires(preun):   systemd
78ee1b
Requires(postun):  systemd
78ee1b
# from deps/hiredis/hiredis.h
cc53ee
Provides:          bundled(hiredis) = 1.0.0
78ee1b
# from deps/jemalloc/VERSION
78ee1b
Provides:          bundled(jemalloc) = 5.1.0
78ee1b
# from deps/lua/src/lua.h
78ee1b
Provides:          bundled(lua-libs) = 5.1.5
78ee1b
# from deps/linenoise/linenoise.h
78ee1b
Provides:          bundled(linenoise) = 1.0
78ee1b
Provides:          bundled(lzf)
78ee1b
78ee1b
%global redis_modules_abi 1
78ee1b
%global redis_modules_dir %{_libdir}/%{name}/modules
78ee1b
Provides:          redis(modules_abi)%{?_isa} = %{redis_modules_abi}
78ee1b
78ee1b
%description
78ee1b
Redis is an advanced key-value store. It is often referred to as a data 
78ee1b
structure server since keys can contain strings, hashes, lists, sets and 
78ee1b
sorted sets.
78ee1b
78ee1b
You can run atomic operations on these types, like appending to a string;
78ee1b
incrementing the value in a hash; pushing to a list; computing set 
78ee1b
intersection, union and difference; or getting the member with highest 
78ee1b
ranking in a sorted set.
78ee1b
78ee1b
In order to achieve its outstanding performance, Redis works with an 
78ee1b
in-memory dataset. Depending on your use case, you can persist it either 
78ee1b
by dumping the dataset to disk every once in a while, or by appending 
78ee1b
each command to a log.
78ee1b
78ee1b
Redis also supports trivial-to-setup master-slave replication, with very 
78ee1b
fast non-blocking first synchronization, auto-reconnection on net split 
78ee1b
and so forth.
78ee1b
78ee1b
Other features include Transactions, Pub/Sub, Lua scripting, Keys with a 
78ee1b
limited time-to-live, and configuration settings to make Redis behave like 
78ee1b
a cache.
78ee1b
78ee1b
You can use Redis from most programming languages also.
78ee1b
78ee1b
%package           devel
78ee1b
Summary:           Development header for Redis module development
78ee1b
# Header-Only Library (https://fedoraproject.org/wiki/Packaging:Guidelines)
78ee1b
Provides:          %{name}-static = %{version}-%{release}
78ee1b
78ee1b
%description       devel
78ee1b
Header file required for building loadable Redis modules. Detailed
78ee1b
API documentation is available in the redis-doc package.
78ee1b
78ee1b
%package           doc
78ee1b
Summary:           Documentation for Redis including man pages
78ee1b
License:           CC-BY-SA
78ee1b
BuildArch:         noarch
78ee1b
78ee1b
# http://fedoraproject.org/wiki/Packaging:Conflicts "Splitting Packages"
78ee1b
Conflicts:         redis < 4.0
78ee1b
78ee1b
%description       doc
78ee1b
Manual pages and detailed documentation for many aspects of Redis use,
78ee1b
administration and development.
78ee1b
78ee1b
78ee1b
%prep
78ee1b
%setup -q -b 10
78ee1b
%setup -q
78ee1b
mv ../%{name}-doc-%{doc_commit} doc
78ee1b
%patch0001 -p1
cc53ee
%patch0003 -p1 -b .rev
78ee1b
78ee1b
mv deps/lua/COPYRIGHT    COPYRIGHT-lua
78ee1b
mv deps/jemalloc/COPYING COPYING-jemalloc
78ee1b
mv deps/hiredis/COPYING  COPYING-hiredis
78ee1b
78ee1b
# Configuration file changes
78ee1b
sed -i -e 's|^logfile .*$|logfile /var/log/redis/redis.log|g' redis.conf
78ee1b
sed -i -e 's|^logfile .*$|logfile /var/log/redis/sentinel.log|g' sentinel.conf
78ee1b
sed -i -e 's|^dir .*$|dir /var/lib/redis|g' redis.conf
78ee1b
78ee1b
# Module API version safety check
78ee1b
api=`sed -n -e 's/#define REDISMODULE_APIVER_[0-9][0-9]* //p' src/redismodule.h`
78ee1b
if test "$api" != "%{redis_modules_abi}"; then
78ee1b
   : Error: Upstream API version is now ${api}, expecting %%{redis_modules_abi}.
78ee1b
   : Update the redis_modules_abi macro, the rpmmacros file, and rebuild.
78ee1b
   exit 1
78ee1b
fi
78ee1b
78ee1b
%global make_flags	DEBUG="" V="echo" LDFLAGS="%{?__global_ldflags}" CFLAGS+="%{optflags} -fPIC" INSTALL="install -p" PREFIX=%{buildroot}%{_prefix} BUILD_WITH_SYSTEMD=yes BUILD_TLS=yes
78ee1b
78ee1b
%build
78ee1b
make %{?_smp_mflags} %{make_flags} all
78ee1b
78ee1b
%install
78ee1b
make %{make_flags} install
78ee1b
78ee1b
# Filesystem.
78ee1b
install -d %{buildroot}%{_sharedstatedir}/%{name}
78ee1b
install -d %{buildroot}%{_localstatedir}/log/%{name}
78ee1b
install -d %{buildroot}%{_localstatedir}/run/%{name}
78ee1b
install -d %{buildroot}%{redis_modules_dir}
78ee1b
78ee1b
# Install logrotate file.
78ee1b
install -pDm644 %{S:1} %{buildroot}%{_sysconfdir}/logrotate.d/%{name}
78ee1b
78ee1b
# Install configuration files.
78ee1b
install -pDm640 %{name}.conf %{buildroot}%{_sysconfdir}/%{name}.conf
78ee1b
install -pDm640 sentinel.conf %{buildroot}%{_sysconfdir}/%{name}-sentinel.conf
78ee1b
78ee1b
# Install systemd unit files.
78ee1b
mkdir -p %{buildroot}%{_unitdir}
78ee1b
install -pm644 %{S:3} %{buildroot}%{_unitdir}
78ee1b
install -pm644 %{S:2} %{buildroot}%{_unitdir}
78ee1b
78ee1b
# Install systemd limit files (requires systemd >= 204)
78ee1b
install -p -D -m 644 %{S:7} %{buildroot}%{_sysconfdir}/systemd/system/%{name}.service.d/limit.conf
78ee1b
install -p -D -m 644 %{S:7} %{buildroot}%{_sysconfdir}/systemd/system/%{name}-sentinel.service.d/limit.conf
78ee1b
78ee1b
# Fix non-standard-executable-perm error.
78ee1b
chmod 755 %{buildroot}%{_bindir}/%{name}-*
78ee1b
78ee1b
# Install redis-shutdown
78ee1b
install -pDm755 %{S:6} %{buildroot}%{_libexecdir}/%{name}-shutdown
78ee1b
78ee1b
# Install redis module header
78ee1b
install -pDm644 src/%{name}module.h %{buildroot}%{_includedir}/%{name}module.h
78ee1b
78ee1b
# Install man pages
78ee1b
man=$(dirname %{buildroot}%{_mandir})
78ee1b
for page in man/man?/*; do
78ee1b
    install -Dpm644 $page $man/$page
78ee1b
done
78ee1b
ln -s redis-server.1 %{buildroot}%{_mandir}/man1/redis-sentinel.1
78ee1b
ln -s redis.conf.5   %{buildroot}%{_mandir}/man5/redis-sentinel.conf.5
78ee1b
78ee1b
# Install documentation and html pages
78ee1b
doc=$(echo %{buildroot}/%{_docdir}/%{name})
78ee1b
for page in 00-RELEASENOTES BUGS CONTRIBUTING MANIFESTO; do
78ee1b
    install -Dpm644 $page $doc/$page
78ee1b
done
78ee1b
for page in $(find doc -name \*.md | sed -e 's|.md$||g'); do
78ee1b
    base=$(echo $page | sed -e 's|doc/||g')
78ee1b
    install -Dpm644 $page.md $doc/$base.md
78ee1b
done
78ee1b
78ee1b
# Install rpm macros for redis modules
78ee1b
mkdir -p %{buildroot}%{macrosdir}
78ee1b
install -pDm644 %{S:9} %{buildroot}%{macrosdir}/macros.%{name}
78ee1b
78ee1b
%check
78ee1b
%if %{with tests}
78ee1b
# https://github.com/antirez/redis/issues/1417 (for "taskset -c 1")
78ee1b
taskset -c 1 make %{make_flags} test
78ee1b
make %{make_flags} test-sentinel
78ee1b
%endif
78ee1b
78ee1b
%pre
78ee1b
getent group %{name} &> /dev/null || \
78ee1b
groupadd -r %{name} &> /dev/null
78ee1b
getent passwd %{name} &> /dev/null || \
78ee1b
useradd -r -g %{name} -d %{_sharedstatedir}/%{name} -s /sbin/nologin \
78ee1b
-c 'Redis Database Server' %{name} &> /dev/null
78ee1b
exit 0
78ee1b
78ee1b
%post
78ee1b
%systemd_post %{name}.service
78ee1b
%systemd_post %{name}-sentinel.service
78ee1b
78ee1b
%preun
78ee1b
%systemd_preun %{name}.service
78ee1b
%systemd_preun %{name}-sentinel.service
78ee1b
78ee1b
%postun
78ee1b
%systemd_postun_with_restart %{name}.service
78ee1b
%systemd_postun_with_restart %{name}-sentinel.service
78ee1b
78ee1b
%files
78ee1b
%{!?_licensedir:%global license %%doc}
78ee1b
%license COPYING
78ee1b
%license COPYRIGHT-lua
78ee1b
%license COPYING-jemalloc
78ee1b
%license COPYING-hiredis
78ee1b
%config(noreplace) %{_sysconfdir}/logrotate.d/%{name}
78ee1b
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{name}.conf
78ee1b
%attr(0640, redis, root) %config(noreplace) %{_sysconfdir}/%{name}-sentinel.conf
78ee1b
%dir %attr(0750, redis, redis) %{_libdir}/%{name}
78ee1b
%dir %attr(0750, redis, redis) %{redis_modules_dir}
78ee1b
%dir %attr(0750, redis, redis) %{_sharedstatedir}/%{name}
78ee1b
%dir %attr(0750, redis, redis) %{_localstatedir}/log/%{name}
78ee1b
%exclude %{macrosdir}
78ee1b
%exclude %{_includedir}
78ee1b
%exclude %{_docdir}/%{name}/*
78ee1b
%{_bindir}/%{name}-*
78ee1b
%{_libexecdir}/%{name}-*
78ee1b
%{_mandir}/man1/%{name}*
78ee1b
%{_mandir}/man5/%{name}*
78ee1b
%{_unitdir}/%{name}.service
78ee1b
%{_unitdir}/%{name}-sentinel.service
78ee1b
%dir %{_sysconfdir}/systemd/system/%{name}.service.d
78ee1b
%config(noreplace) %{_sysconfdir}/systemd/system/%{name}.service.d/limit.conf
78ee1b
%dir %{_sysconfdir}/systemd/system/%{name}-sentinel.service.d
78ee1b
%config(noreplace) %{_sysconfdir}/systemd/system/%{name}-sentinel.service.d/limit.conf
78ee1b
%dir %attr(0755, redis, redis) %ghost %{_localstatedir}/run/%{name}
78ee1b
78ee1b
%files devel
78ee1b
# main package is not required
78ee1b
%license COPYING
78ee1b
%{_includedir}/%{name}module.h
78ee1b
%{macrosdir}/*
78ee1b
78ee1b
%files doc
78ee1b
# main package is not required
78ee1b
%license COPYING
78ee1b
%docdir %{_docdir}/%{name}
78ee1b
%{_docdir}/%{name}
78ee1b
78ee1b
78ee1b
%changelog
cc53ee
* Mon May  9 2022 Remi Collet <rcollet@redhat.com> - 6.2.7-1
cc53ee
- rebase to 6.2.7 #1999873
cc53ee
543445
* Mon Oct 11 2021 Remi Collet <rcollet@redhat.com> - 6.0.9-5
543445
- fix denial of service via Redis Standard Protocol (RESP) request
543445
  CVE-2021-32675
543445
543445
* Fri Oct  8 2021 Remi Collet <rcollet@redhat.com> - 6.0.9-4
543445
- fix lua scripts can overflow the heap-based Lua stack
543445
  CVE-2021-32626
543445
- fix integer overflow issue with Streams
543445
  CVE-2021-32627
543445
- fix integer overflow bug in the ziplist data structure
543445
  CVE-2021-32628
543445
- fix integer overflow issue with intsets
543445
  CVE-2021-32687
543445
- fix integer overflow issue with strings
543445
  CVE-2021-41099
543445
1d8188
* Wed May 12 2021 Remi Collet <rcollet@redhat.com> - 6.0.9-3
1d8188
- fix integer overflow via STRALGO LCS command
1d8188
  CVE-2021-29477
1d8188
aee5d3
* Tue Nov 24 2020 Remi Collet <rcollet@redhat.com> - 6.0.9-2
aee5d3
- revert "simplify config rewrite file" and keep
aee5d3
  configuration in /etc
aee5d3
78ee1b
* Thu Oct 29 2020 Remi Collet <rcollet@redhat.com> - 6.0.9-1
78ee1b
- update to 6.0.9
78ee1b
78ee1b
* Tue Oct 20 2020 Remi Collet <rcollet@redhat.com> - 6.0.8-1
78ee1b
- update to 6.0.8 for new stream #1862063
78ee1b
78ee1b
* Thu Jul 11 2019 Remi Collet <rcollet@redhat.com> - 5.0.3-2
78ee1b
- fix Heap buffer overflow in HyperLogLog triggered by malicious client
78ee1b
  CVE-2019-10192
78ee1b
- fix Stack buffer overflow in HyperLogLog triggered by malicious client
78ee1b
  CVE-2019-10193
78ee1b
78ee1b
* Thu Dec 13 2018 Remi Collet <rcollet@redhat.com> - 5.0.3-1
78ee1b
- update to 5.0.3
78ee1b
78ee1b
* Mon Jun 25 2018 Remi Collet <rcollet@redhat.com> - 4.0.10-2
78ee1b
- drop build dependency on pandoc
78ee1b
- drop dependency on jemalloc #1591762
78ee1b
- fix License (BSD and MIT)
78ee1b
- add bundled libraries licences
78ee1b
- cleanup conditions from spec file
78ee1b
78ee1b
* Thu Jun 14 2018 Nathan Scott <nathans@redhat.com> - 4.0.10-1
78ee1b
- Upstream 4.0.10 release.
78ee1b
78ee1b
* Mon May 21 2018 Joe Orton <jorton@redhat.com> - 4.0.9-1.2
78ee1b
- rebuild (#1571197)
78ee1b
78ee1b
* Tue Mar 27 2018 Nathan Scott <nathans@redhat.com> - 4.0.9-1
78ee1b
- Upstream 4.0.9 release.
78ee1b
78ee1b
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.0.8-2
78ee1b
- Escape macros in %%changelog
78ee1b
78ee1b
* Wed Feb  7 2018 Nathan Scott <nathans@redhat.com> - 4.0.8-1
78ee1b
- Upstream 4.0.8 release.
78ee1b
78ee1b
* Wed Jan 31 2018 Nathan Scott <nathans@redhat.com> - 4.0.7-1
78ee1b
- Upstream 4.0.7 release.
78ee1b
78ee1b
* Thu Dec  7 2017 Nathan Scott <nathans@redhat.com> - 4.0.6-1
78ee1b
- Upstream 4.0.6 release.
78ee1b
78ee1b
* Fri Dec  1 2017 Remi Collet <remi@remirepo.net> - 4.0.5-1
78ee1b
- Redis 4.0.5 - Released Thu Dec 1 16:03:32 CET 2017
78ee1b
- Upgrade urgency CRITICAL: Redis 4.0.4 fix for PSYNC2 was broken,
78ee1b
  causing the slave to crash when receiving an RDB file from the
78ee1b
  master that contained a duplicated Lua script.
78ee1b
78ee1b
* Fri Dec 01 2017 Nathan Scott <nathans@redhat.com> - 4.0.4-1
78ee1b
- Upstream 4.0.4 release.
78ee1b
- Update to current upstream redis-doc also.
78ee1b
- Fix man page issues (RHBZ #1513594 and RHBZ #1515417).
78ee1b
78ee1b
* Thu Nov 30 2017 Remi Collet <remi@remirepo.net> - 4.0.3-1
78ee1b
- Redis 4.0.3
78ee1b
- fix ownership of /usr/share/doc/redis
78ee1b
- use make_flags for test to avoid rebuild and failure
78ee1b
- fix rpm macro location on EL-6
78ee1b
- add /var/run/redis on EL-6
78ee1b
- add spec file license header
78ee1b
- drop duplicated documentation from main package
78ee1b
- keep man in main page
78ee1b
78ee1b
* Fri Nov 17 2017 Nathan Scott <nathans@redhat.com> - 4.0.2-2
78ee1b
- Install the base modules directories, owned by the main package.
78ee1b
78ee1b
* Tue Oct 31 2017 Nathan Scott <nathans@redhat.com> - 4.0.2-1
78ee1b
- Upstream 4.0.2 release.  (RHBZ #1389592)
78ee1b
- Add redis-devel for loadable module development.
78ee1b
- Add redis-doc for man pages and detailed documentation.
78ee1b
- Provide redis-check-aof as a symlink to redis-server also now.
78ee1b
78ee1b
* Tue Sep 26 2017 Nathan Scott <nathans@redhat.com> - 3.2.11-1
78ee1b
- Upstream 3.2.11 bug-fix-only release
78ee1b
- Switch to using Type=notify for Redis systemd services (RHBZ #1172841)
78ee1b
- Add Provides:bundled hiredis, linenoise, lua-libs clauses (RHBZ #788500)
78ee1b
78ee1b
* Mon Aug 14 2017 Nathan Scott <nathans@redhat.com> - 3.2.10-2
78ee1b
- Add redis-trib based on patch from Sebastian Saletnik.  (RHBZ #1215654)
78ee1b
78ee1b
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.9-3
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
78ee1b
78ee1b
* Mon Jul 31 2017 Nathan Scott <nathans@redhat.com> - 3.2.10-1
78ee1b
- Upstream 3.2.10 release
78ee1b
- Ensure both the redis and redis-sentinel service files set correct perms
78ee1b
- Dropped systemd tmpfiles source, handled directly in systemd service files
78ee1b
78ee1b
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.9-2
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
78ee1b
78ee1b
* Mon May 29 2017 Nathan Scott <nathans@redhat.com> - 3.2.9-1
78ee1b
- Upstream 3.2.9
78ee1b
- Add RuntimeDirectory=redis to systemd unit file (RHBZ #1454700)
78ee1b
- Mark rundir as %%ghost since it may disappear (tmpfs - #1454700)
78ee1b
- Fix a shutdown failure with Unix domain sockets (RHBZ #1444988)
78ee1b
78ee1b
* Mon Feb 20 2017 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2.8-1
78ee1b
- Upstream 3.2.8
78ee1b
- bugfix for #3796 (MIGRATE could cause server crash  after socket error)
78ee1b
78ee1b
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.7-2
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
78ee1b
78ee1b
* Sat Feb  4 2017 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2.7-1
78ee1b
- Upstream 3.2.7 (important security fix)
78ee1b
78ee1b
* Sat Nov 05 2016 Alan Pevec <apevec AT redhat.com> - 3.2.4-2
78ee1b
- Install tmpfiles and /run/redis for legacy configurations
78ee1b
78ee1b
* Mon Sep 26 2016 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2.4-1
78ee1b
- Upstream 3.2.4
78ee1b
- Fix buffer overlow (TALOS-2016-0206)
78ee1b
78ee1b
* Wed Sep 14 2016 Remi Collet <remi@fedoraproject.org> - 3.2.3-2
78ee1b
- add missing man pages #1374577
78ee1b
  using patch from https://github.com/antirez/redis/pull/3491
78ee1b
- data and configuration should not be publicly readable #1374700
78ee1b
- remove /var/run/redis with systemd #1374728
78ee1b
- provide redis-check-rdb as a symlink to redis-server #1374736
78ee1b
  using patch from https://github.com/antirez/redis/pull/3494
78ee1b
- move redis-shutdown to libexec
78ee1b
78ee1b
* Thu Aug  4 2016 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.2.3-1
78ee1b
- Upstream 3.2.3
78ee1b
- Security fix for CVE-2013-7458 (redis-cli history world readable)
78ee1b
- RHBZ#1363670 RHBZ#1363671
78ee1b
78ee1b
* Mon Feb  8 2016 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.6-3
78ee1b
- Fix redis-shutdown to handle password-protected instances shutdown
78ee1b
78ee1b
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.0.6-2
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
78ee1b
78ee1b
* Sat Dec 19 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.6-1
78ee1b
- Upstream 3.0.6 (RHBZ#1272281)
78ee1b
78ee1b
* Fri Oct 16 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.5-1
78ee1b
- Upstream 3.0.5
78ee1b
- Fix slave/master replication hanging forever in certain case
78ee1b
78ee1b
* Mon Sep 07 2015 Christopher Meng <rpm@cicku.me> - 3.0.4-1
78ee1b
- Update to 3.0.4
78ee1b
78ee1b
* Sun Aug 30 2015 Christopher Meng <rpm@cicku.me> - 3.0.3-2
78ee1b
- Rebuilt for jemalloc 4.0.0
78ee1b
78ee1b
* Tue Jul 21 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.3-1
78ee1b
- Upstream 3.0.3
78ee1b
78ee1b
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0.2-2
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
78ee1b
78ee1b
* Thu Jun 04 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.2-1
78ee1b
- Upstream 3.0.2 (RHBZ #1228245)
78ee1b
- Fix Lua sandbox escape and arbitrary code execution (RHBZ #1228331)
78ee1b
78ee1b
* Sat May 09 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.1-1
78ee1b
- Upstream 3.0.1 (RHBZ #1208322)
78ee1b
78ee1b
* Tue Apr 14 2015 Remi Collet <remi@fedoraproject.org> - 3.0.0-2
78ee1b
- rotate /var/log/redis/sentinel.log
78ee1b
78ee1b
* Thu Apr  2 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 3.0.0-1
78ee1b
- Upstream 3.0.0 (RHBZ #1208322)
78ee1b
78ee1b
* Thu Mar 26 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.19-2
78ee1b
- Fix redis-shutdown on multiple NIC setup (RHBZ #1201237)
78ee1b
78ee1b
* Fri Feb 27 2015 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.19-1
78ee1b
- Upstream 2.8.19 (RHBZ #1175232)
78ee1b
- Fix permissions for tmpfiles (RHBZ #1182913)
78ee1b
- Add limits config files
78ee1b
- Spec cleanups
78ee1b
78ee1b
* Fri Dec 05 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.18-1
78ee1b
- Upstream 2.8.18
78ee1b
- Rebased patches
78ee1b
78ee1b
* Sat Sep 20 2014 Remi Collet <remi@fedoraproject.org> - 2.8.17-1
78ee1b
- Upstream 2.8.17
78ee1b
- fix redis-sentinel service unit file for systemd
78ee1b
- fix redis-shutdown for sentinel
78ee1b
- also use redis-shutdown in init scripts
78ee1b
78ee1b
* Wed Sep 17 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.15-2
78ee1b
- Minor fix to redis-shutdown (from Remi Collet)
78ee1b
78ee1b
* Sat Sep 13 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.15-1
78ee1b
- Upstream 2.8.15 (critical bugfix for sentinel)
78ee1b
- Fix to sentinel systemd service and configuration (thanks Remi)
78ee1b
- Refresh patch management
78ee1b
78ee1b
* Thu Sep 11 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.14-2
78ee1b
- Cleanup spec
78ee1b
- Fix shutdown for redis-{server,sentinel}
78ee1b
- Backport fixes from Remi Collet repository (ie: sentinel working)
78ee1b
78ee1b
* Thu Sep 11 2014 HaĂ¯kel GuĂ©mar <hguemar@fedoraproject.org> - 2.8.14-1
78ee1b
- Upstream 2.8.14 (RHBZ #1136287)
78ee1b
- Bugfix for lua scripting users (server crash)
78ee1b
- Refresh patches
78ee1b
- backport spec from EPEL7 (thanks Warren)
78ee1b
78ee1b
* Wed Jul 16 2014 Christopher Meng <rpm@cicku.me> - 2.8.13-1
78ee1b
- Update to 2.8.13
78ee1b
78ee1b
* Tue Jun 24 2014 Christopher Meng <rpm@cicku.me> - 2.8.12-1
78ee1b
- Update to 2.8.12
78ee1b
78ee1b
* Wed Jun 18 2014 Christopher Meng <rpm@cicku.me> - 2.8.11-1
78ee1b
- Update to 2.8.11
78ee1b
78ee1b
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.16-2
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
78ee1b
78ee1b
* Fri Sep 06 2013 Fabian Deutsch <fabian.deutsch@gmx.de> - 2.6.16-1
78ee1b
- Update to 2.6.16
78ee1b
- Fix rhbz#973151
78ee1b
- Fix rhbz#656683
78ee1b
- Fix rhbz#977357 (Jan Vcelak <jvcelak@fedoraproject.org>)
78ee1b
78ee1b
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.13-5
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
78ee1b
78ee1b
* Tue Jul 23 2013 Peter Robinson <pbrobinson@fedoraproject.org> 2.6.13-4
78ee1b
- ARM has gperftools
78ee1b
78ee1b
* Wed Jun 19 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-3
78ee1b
- Modify jemalloc patch for s390 compatibility (Thanks sharkcz)
78ee1b
78ee1b
* Fri Jun 07 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-2
78ee1b
- Unbundle jemalloc
78ee1b
78ee1b
* Fri Jun 07 2013 Fabian Deutsch <fabiand@fedoraproject.org> - 2.6.13-1
78ee1b
- Add compile PIE flag (rhbz#955459)
78ee1b
- Update to redis 2.6.13 (rhbz#820919)
78ee1b
78ee1b
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.7-2
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
78ee1b
78ee1b
* Thu Dec 27 2012 Silas Sewell <silas@sewell.org> - 2.6.7-1
78ee1b
- Update to redis 2.6.7
78ee1b
78ee1b
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.15-3
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
78ee1b
78ee1b
* Sun Jul 08 2012 Silas Sewell <silas@sewell.org> - 2.4.15-2
78ee1b
- Remove TODO from docs
78ee1b
78ee1b
* Sun Jul 08 2012 Silas Sewell <silas@sewell.org> - 2.4.15-1
78ee1b
- Update to redis 2.4.15
78ee1b
78ee1b
* Sat May 19 2012 Silas Sewell <silas@sewell.org> - 2.4.13-1
78ee1b
- Update to redis 2.4.13
78ee1b
78ee1b
* Sat Mar 31 2012 Silas Sewell <silas@sewell.org> - 2.4.10-1
78ee1b
- Update to redis 2.4.10
78ee1b
78ee1b
* Fri Feb 24 2012 Silas Sewell <silas@sewell.org> - 2.4.8-1
78ee1b
- Update to redis 2.4.8
78ee1b
78ee1b
* Sat Feb 04 2012 Silas Sewell <silas@sewell.org> - 2.4.7-1
78ee1b
- Update to redis 2.4.7
78ee1b
78ee1b
* Wed Feb 01 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-4
78ee1b
- Fixed a typo in the spec
78ee1b
78ee1b
* Tue Jan 31 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-3
78ee1b
- Fix .service file, to match config (Type=simple).
78ee1b
78ee1b
* Tue Jan 31 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-2
78ee1b
- Fix .service file, credits go to Timon.
78ee1b
78ee1b
* Thu Jan 12 2012 Fabian Deutsch <fabiand@fedoraproject.org> - 2.4.6-1
78ee1b
- Update to 2.4.6
78ee1b
- systemd unit file added
78ee1b
- Compiler flags changed to compile 2.4.6
78ee1b
- Remove doc/ and Changelog
78ee1b
78ee1b
* Sun Jul 24 2011 Silas Sewell <silas@sewell.org> - 2.2.12-1
78ee1b
- Update to redis 2.2.12
78ee1b
78ee1b
* Fri May 06 2011 Dan HorĂ¡k <dan[at]danny.cz> - 2.2.5-2
78ee1b
- google-perftools exists only on selected architectures
78ee1b
78ee1b
* Sat Apr 23 2011 Silas Sewell <silas@sewell.ch> - 2.2.5-1
78ee1b
- Update to redis 2.2.5
78ee1b
78ee1b
* Sat Mar 26 2011 Silas Sewell <silas@sewell.ch> - 2.2.2-1
78ee1b
- Update to redis 2.2.2
78ee1b
78ee1b
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.4-2
78ee1b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
78ee1b
78ee1b
* Sun Dec 19 2010 Silas Sewell <silas@sewell.ch> - 2.0.4-1
78ee1b
- Update to redis 2.0.4
78ee1b
78ee1b
* Tue Oct 19 2010 Silas Sewell <silas@sewell.ch> - 2.0.3-1
78ee1b
- Update to redis 2.0.3
78ee1b
78ee1b
* Fri Oct 08 2010 Silas Sewell <silas@sewell.ch> - 2.0.2-1
78ee1b
- Update to redis 2.0.2
78ee1b
- Disable checks section for el5
78ee1b
78ee1b
* Sat Sep 11 2010 Silas Sewell <silas@sewell.ch> - 2.0.1-1
78ee1b
- Update to redis 2.0.1
78ee1b
78ee1b
* Sat Sep 04 2010 Silas Sewell <silas@sewell.ch> - 2.0.0-1
78ee1b
- Update to redis 2.0.0
78ee1b
78ee1b
* Thu Sep 02 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-3
78ee1b
- Add Fedora build flags
78ee1b
- Send all scriplet output to /dev/null
78ee1b
- Remove debugging flags
78ee1b
- Add redis.conf check to init script
78ee1b
78ee1b
* Mon Aug 16 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-2
78ee1b
- Don't compress man pages
78ee1b
- Use patch to fix redis.conf
78ee1b
78ee1b
* Tue Jul 06 2010 Silas Sewell <silas@sewell.ch> - 1.2.6-1
78ee1b
- Initial package