Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for elastic 8.1.x (#2651)
* Bump the elastic version to 8.0.0 * Fix the boosts parameter in IndexTemplateHttpTest - Breaking changes in mapping https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking_80_mapping_changes * Fix the TermsLookupQuery - Remove field "type": "_doc" because of the parameters are ignored. * Fix intermitent spec in CatSegmentsTest * Change the delete by query parameter size to max_docs * Fix intermittent spec in NodeHotThreadsTest * Fix intermittent spec in IndexStatsRequestTest * Remove the interval parameter in DateHistogramAggregation - The date_histogram aggregation’s interval parameter is no longer valid. https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking_80_rest_api_changes * Add the Moving function aggregation - Remove the Moving Average aggregation. - The moving_avg aggregation was deprecated in 6.4 and has been removed. To calculate moving averages, use the moving_fn aggregation instead. https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking_80_rest_api_changes * Fix spec in ElasticJacksonIndexableTest because of the _type metadata field has been removed * Fix spec in CatThreadPoolTest because of the listener thread pool has been removed * Remove Common Query - The common query has been removed. https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking-changes-8.0 * Fix spec in TermVectorsTest because of the _type metadata field has been removed * Fix spec in UpdateTest because of the _type metadata field has been removed * Remove the verbose parameter in _segments * Fix spec in GetTaskTest because of the _type metadata field has been removed * Fix spec in CompositeDateAggregationHttpTest - The date_histogram aggregation’s interval parameter is no longer valid. https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking_80_rest_api_changes * Fix spec in TermVectorsTest because of the _type metadata field has been removed * Fix Reindex API - The outer level size parameter has now been renamed to max_docs to avoid confusion and clarify its semantics. - The type query parameter has been removed. * Add the timeout in githubactions * Fix the PercolateQuery - Field type has been removed. - Field document_type has been removed. * Fix TermsQuery to remove parameter type - The type query parameter has been removed https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking-changes-8.0 * Fix spec in TermVectorTest - The _type field are no longer supported https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking-changes-8.0 * Fix spec in ClusterInfoTest - The search.remote.* settings have been removed. https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking-changes-8.0 * Remove _type in SearchHit - Searches on the _type field are no longer supported. https://www.elastic.co/guide/en/elasticsearch/reference/current/migrating-8.0.html#breaking-changes-8.0 * Bump the elastic version to 8.1.0 * Force re-run all jobs * Bump the elastic version to 8.1.2 Co-authored-by: Sam Sam <[email protected]>
- Loading branch information