summaryrefslogtreecommitdiff
path: root/src/commands.c
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2023-03-22 09:47:39 +0200
committerGitHub <noreply@github.com>2023-03-22 09:47:39 +0200
commitef50118c92edcc882f66e17b236097600ceab1ab (patch)
treec7efb4186c8139469775bc51b596c82c848e8914 /src/commands.c
parent5a76e818c63d5cacb91038ed2f8360aef4580f48 (diff)
downloadredis-ef50118c92edcc882f66e17b236097600ceab1ab.tar.gz
add 7.2 history details to xinfo json files (#11949)
Diffstat (limited to 'src/commands.c')
-rw-r--r--src/commands.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/commands.c b/src/commands.c
index 8eebd2d57..6ccd8c18e 100644
--- a/src/commands.c
+++ b/src/commands.c
@@ -6507,7 +6507,10 @@ struct redisCommand XGROUP_Subcommands[] = {
/********** XINFO CONSUMERS ********************/
/* XINFO CONSUMERS history */
-#define XINFO_CONSUMERS_History NULL
+commandHistory XINFO_CONSUMERS_History[] = {
+{"7.2.0","Added the `inactive` field."},
+{0}
+};
/* XINFO CONSUMERS tips */
const char *XINFO_CONSUMERS_tips[] = {
@@ -6553,6 +6556,7 @@ struct redisCommandArg XINFO_GROUPS_Args[] = {
commandHistory XINFO_STREAM_History[] = {
{"6.0.0","Added the `FULL` modifier."},
{"7.0.0","Added the `max-deleted-entry-id`, `entries-added`, `recorded-first-entry-id`, `entries-read` and `lag` fields"},
+{"7.2.0","Added the `active-time` field, and changed the meaning of `seen-time`."},
{0}
};