Deprecate legacy params from range query (#113286) (#113610)

Deprecate to, from, include_lower, include_upper range query params.
These params have been removed from our documentation in v. 0.90.4 (d6ecdecc19),
but did not got through deprecation cycle.

These params to be removed in v9.0.

Related to #81276

Closes #48538
This commit is contained in:
Mayya Sharipova 2024-09-26 11:10:46 -04:00 committed by GitHub
parent ff926182f1
commit 7719f17457
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 69 additions and 60 deletions

View file

@ -28,4 +28,5 @@ tasks.named("yamlRestTestV7CompatTransform").configure { task ->
task.skipTest("runtime_fields/101_geo_point_from_source/fetch fields from source", "Format changed. Old format was a bug.")
task.skipTest("runtime_fields/102_geo_point_source_in_query/fetch fields from source", "Format changed. Old format was a bug.")
task.skipTest("runtime_fields/103_geo_point_calculated_at_index/fetch fields from source", "Format changed. Old format was a bug.")
task.skipTestsByFilePattern("**/runtime_fields/110_composite.yml", "warning does not exist for compatibility")
}

View file

@ -83,8 +83,8 @@ query:
query:
range:
http.clientip:
from: 232.0.0.0
to: 253.0.0.0
gte: 232.0.0.0
lte: 253.0.0.0
- match: { hits.total.value: 4 }
---