summaryrefslogtreecommitdiff
path: root/src/commands
diff options
context:
space:
mode:
authorItamar Haber <itamar@redis.com>2022-08-21 17:01:17 +0300
committerGitHub <noreply@github.com>2022-08-21 17:01:17 +0300
commit31ef410e88dabb3f0d475dd3cae9edc00ba55aa7 (patch)
tree5652738eff6f3864dafe79143dbb5342bca63b03 /src/commands
parentc3a0253bc84861b5aa1a6f54ede42b63751e7e8a (diff)
downloadredis-31ef410e88dabb3f0d475dd3cae9edc00ba55aa7.tar.gz
Adds historical note about lower-case geo units support (#11162)
This change was part of #9656 (Redis 7.0)
Diffstat (limited to 'src/commands')
-rw-r--r--src/commands/georadius.json4
-rw-r--r--src/commands/georadiusbymember.json6
-rw-r--r--src/commands/geosearch.json6
-rw-r--r--src/commands/geosearchstore.json6
4 files changed, 22 insertions, 0 deletions
diff --git a/src/commands/georadius.json b/src/commands/georadius.json
index 606ed43ed..aa2888767 100644
--- a/src/commands/georadius.json
+++ b/src/commands/georadius.json
@@ -11,6 +11,10 @@
[
"6.2.0",
"Added the `ANY` option for `COUNT`."
+ ],
+ [
+ "7.0.0",
+ "Added support for lower-case unit names."
]
],
"deprecated_since": "6.2.0",
diff --git a/src/commands/georadiusbymember.json b/src/commands/georadiusbymember.json
index fbc7ea4ee..6074983bc 100644
--- a/src/commands/georadiusbymember.json
+++ b/src/commands/georadiusbymember.json
@@ -7,6 +7,12 @@
"arity": -5,
"function": "georadiusbymemberCommand",
"get_keys_function": "georadiusGetKeys",
+ "history": [
+ [
+ "7.0.0",
+ "Added support for lower-case unit names."
+ ]
+ ],
"deprecated_since": "6.2.0",
"replaced_by": "`GEOSEARCH` and `GEOSEARCHSTORE` with the `BYRADIUS` and `FROMMEMBER` arguments",
"doc_flags": [
diff --git a/src/commands/geosearch.json b/src/commands/geosearch.json
index e69094df4..94cd392b1 100644
--- a/src/commands/geosearch.json
+++ b/src/commands/geosearch.json
@@ -6,6 +6,12 @@
"since": "6.2.0",
"arity": -7,
"function": "geosearchCommand",
+ "history": [
+ [
+ "7.0.0",
+ "Added support for lower-case unit names."
+ ]
+ ],
"command_flags": [
"READONLY"
],
diff --git a/src/commands/geosearchstore.json b/src/commands/geosearchstore.json
index 1be5cd409..5130fafcb 100644
--- a/src/commands/geosearchstore.json
+++ b/src/commands/geosearchstore.json
@@ -6,6 +6,12 @@
"since": "6.2.0",
"arity": -8,
"function": "geosearchstoreCommand",
+ "history": [
+ [
+ "7.0.0",
+ "Added support for lower-case unit names."
+ ]
+ ],
"command_flags": [
"WRITE",
"DENYOOM"