summaryrefslogtreecommitdiff
path: root/src/commands/rpop.json
diff options
context:
space:
mode:
authorItamar Haber <itamar@garantiadata.com>2021-12-29 21:57:40 +0200
committerGitHub <noreply@github.com>2021-12-29 21:57:40 +0200
commitaec8c57701c0c6df995556dde37ef2fe9c9583ac (patch)
tree1d7e1c7e2a23a188454c8ce72473a03a6700e8d5 /src/commands/rpop.json
parentb0c06e904a94bbc2da8003a1b230482ee34d6d5f (diff)
downloadredis-aec8c57701c0c6df995556dde37ef2fe9c9583ac.tar.gz
Add missing metadata to the commands SSOT files. (#10016)
Add missing information about commands, mainly from reviewing redis-doc and removing the metadata from it (https://github.com/redis/redis-doc/pull/1722) * Reintroduces CLUSTER S****S (supported by Redis) but missing from the JSON / docs (related? #9675). Note that without that json file, the command won't work (breaking change) * Adds the `replicas` argument (exists in Redis) to `CLIENT KILL`. * Adds `history` entries to several commands based on redis-doc's man pages. * Adds `since` to applicable command arguments based on `history` (this basically makes some of `history` redundant - perhaps at a later stage). * Uses proper semantic versioning in all version references. * Also removes `geoencodeCommand` and `geodecodeCommand` header declarations per b96af595a5fddbbdcbf78ed3c51acd60976416f4.
Diffstat (limited to 'src/commands/rpop.json')
-rw-r--r--src/commands/rpop.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/commands/rpop.json b/src/commands/rpop.json
index 983f59d6d..d9d059fa1 100644
--- a/src/commands/rpop.json
+++ b/src/commands/rpop.json
@@ -8,7 +8,7 @@
"function": "rpopCommand",
"history": [
[
- "6.2",
+ "6.2.0",
"Added the `count` argument."
]
],
@@ -47,7 +47,8 @@
{
"name": "count",
"type": "integer",
- "optional": true
+ "optional": true,
+ "since": "6.2.0"
}
]
}