redis: 7.0.9 -> 7.0.10

Security Fixes:

- (CVE-2023-28425) Specially crafted MSETNX command can lead to assertion and denial-of-service

https://github.com/redis/redis/releases/tag/7.0.10
This commit is contained in:
Mario Rodas 2023-03-20 04:20:00 +00:00
parent 8b7b6bac2c
commit 92f8db870c

View file

@ -7,11 +7,11 @@
stdenv.mkDerivation rec {
pname = "redis";
version = "7.0.9";
version = "7.0.10";
src = fetchurl {
url = "https://download.redis.io/releases/${pname}-${version}.tar.gz";
hash = "sha256-93E1wqR8kVHUAov+o7NEcKtNMk0UhPeahMbzKjz7n2U=";
hash = "sha256-He5MZIc0HK571kMv91kJBlIiFaBh/e+Hx9BAoMtgATE=";
};
patches = [