Merge pull request #17387 from cko/redis

redis: 3.0.7 -> 3.2.2

authored by Gabriel Ebner and committed by GitHub dbd856d7 bafc296e

+9 -2
+7
nixos/doc/manual/release-notes/rl-1609.xml
··· 33 33 following incompatible changes:</para> 34 34 35 35 <itemizedlist> 36 + 36 37 <listitem> 37 38 <para>Shell aliases for systemd sub-commands 38 39 <link xlink:href="https://github.com/NixOS/nixpkgs/pull/15598">were dropped</link>: 39 40 <command>start</command>, <command>stop</command>, 40 41 <command>restart</command>, <command>status</command>.</para> 41 42 </listitem> 43 + 44 + <listitem> 45 + <para>Redis now binds to 127.0.0.1 only instead of listening to all network interfaces. This is the default 46 + behavior of Redis 3.2</para> 47 + </listitem> 48 + 42 49 </itemizedlist> 43 50 44 51
+2 -2
pkgs/servers/nosql/redis/default.nix
··· 1 1 { stdenv, fetchurl, lua }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "3.0.7"; 4 + version = "3.2.2"; 5 5 name = "redis-${version}"; 6 6 7 7 src = fetchurl { 8 8 url = "http://download.redis.io/releases/${name}.tar.gz"; 9 - sha256 = "08vzfdr67gp3lvk770qpax2c5g2sx8hn6p64jn3jddrvxb2939xj"; 9 + sha256 = "05cf63502b2248b5d39588962100bfa4fcb47dabd56931a8cb60b301b1d8daea"; 10 10 }; 11 11 12 12 buildInputs = [ lua ];