summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2026-02-05 11:22:57 +0200
committerKhem Raj <raj.khem@gmail.com>2026-02-06 10:06:25 -0800
commit1b820b98afd55c881822beb9057162dc67ecb386 (patch)
tree8f1ae414c574c95a3aef8e435c63b9b01b9713a1 /meta-oe/recipes-extended
parent800998234a3b3989b09714c5ad2474e2e3571e66 (diff)
downloadmeta-openembedded-1b820b98afd55c881822beb9057162dc67ecb386.tar.gz
valkey: Upgrade 9.0.1 -> 9.0.2
Upgrade to release 9.0.2: - Avoid memory leak of new argv when HEXPIRE commands target only non-exiting fields - Fix HINCRBY and HINCRBYFLOAT to update volatile key tracking - Avoid empty hash object when HSETEX added no fields - Fix case-sensitive check for the FNX and FXX arguments in HSETEX - Prevent assertion in active expiration job after a hash with volatile fields is overwritten - Fix HRANDFIELD to return null response when no field could be found - Fix HEXPIRE to not delete items when validation rules fail and expiration is in the past - Fix how hash is handling overriding of expired fields overwrite - HSETEX - Always issue keyspace notifications after validation - Make zero a valid TTL for hash fields during import mode and data loading - Trigger prepareCommand on argc change in module command filters - Restrict TTL from being negative and avoid crash in import-mode - Fix chained replica crash when doing dual channel replication - Skip slot cache optimization for AOF client to prevent key duplication and data corruption - Fix used_memory_dataset underflow due to miscalculated used_memory_overhead - Avoid duplicate calculations of network-bytes-out in slot stats with copy-avoidance - Fix XREAD returning error on empty stream with + ID - Track reply bytes in I/O threads if commandlog-reply-larger-than is -1 - This makes it possible to mitigate a performance regression in 9.0.1 caused by the related bug fix Fixes references to TMPDIR [buildpaths] and avoids [already-stripped]. Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r--meta-oe/recipes-extended/valkey/valkey_9.0.2.bb (renamed from meta-oe/recipes-extended/valkey/valkey_9.0.1.bb)10
1 files changed, 9 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/valkey/valkey_9.0.1.bb b/meta-oe/recipes-extended/valkey/valkey_9.0.2.bb
index 5b05bc2fe1..7b4226d2af 100644
--- a/meta-oe/recipes-extended/valkey/valkey_9.0.1.bb
+++ b/meta-oe/recipes-extended/valkey/valkey_9.0.2.bb
@@ -15,7 +15,7 @@ SRC_URI = "git://github.com/valkey-io/valkey.git;branch=9.0;protocol=https;tag=$
15 file://0001-src-Do-not-reset-FINAL_LIBS.patch \ 15 file://0001-src-Do-not-reset-FINAL_LIBS.patch \
16 file://GNU_SOURCE-7.patch \ 16 file://GNU_SOURCE-7.patch \
17 " 17 "
18SRCREV = "ab3c953b80289d88991095f53c1235fc2f8b44d6" 18SRCREV = "1ac4cfe4c877a6cb8cb2e28fa7094055ac06f64b"
19 19
20RPROVIDES:${PN} = "virtual-redis" 20RPROVIDES:${PN} = "virtual-redis"
21 21
@@ -46,6 +46,11 @@ do_compile() {
46} 46}
47 47
48do_install() { 48do_install() {
49 # Remove debug paths to avoid TMPDIR [buildpaths] errors
50 sed -i -e 's#${TMPDIR}##g' ${S}/src/valkey-benchmark
51 sed -i -e 's#${TMPDIR}##g' ${S}/src/valkey-server
52 sed -i -e 's#${TMPDIR}##g' ${S}/src/valkey-cli
53
49 export PREFIX=${D}/${prefix} 54 export PREFIX=${D}/${prefix}
50 oe_runmake install 55 oe_runmake install
51 install -d ${D}/${sysconfdir}/valkey 56 install -d ${D}/${sysconfdir}/valkey
@@ -65,6 +70,7 @@ do_install() {
65 fi 70 fi
66} 71}
67 72
73
68CONFFILES:${PN} = "${sysconfdir}/valkey/valkey.conf" 74CONFFILES:${PN} = "${sysconfdir}/valkey/valkey.conf"
69 75
70INITSCRIPT_NAME = "valkey-server" 76INITSCRIPT_NAME = "valkey-server"
@@ -73,3 +79,5 @@ INITSCRIPT_PARAMS = "defaults 87"
73SYSTEMD_SERVICE:${PN} = "valkey.service" 79SYSTEMD_SERVICE:${PN} = "valkey.service"
74 80
75CVE_STATUS[CVE-2022-3734] = "not-applicable-platform: CVE only applies for Windows." 81CVE_STATUS[CVE-2022-3734] = "not-applicable-platform: CVE only applies for Windows."
82
83INSANE_SKIP:${PN} = "already-stripped"