You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,20 @@
1
+
## Release 8.19.0
2
+
3
+
- Updated the APIs to Elasticsearch [8.19.0](https://www.elastic.co/guide/en/elasticsearch/reference/current/release-notes-8.19.0.html)
4
+
5
+
## Release 8.18.0
6
+
7
+
- Updated the APIs to Elasticsearch [8.18.0](https://www.elastic.co/guide/en/elasticsearch/reference/current/release-notes-8.18.0.html)
8
+
9
+
## Release 8.17.0
10
+
11
+
- Updated the APIs to Elasticsearch [8.17.0](https://www.elastic.co/guide/en/elasticsearch/reference/current/release-notes-8.17.0.html)
12
+
13
+
## Release 8.16.0
14
+
15
+
- Updated the APIs to Elasticsearch [8.16.0](https://www.elastic.co/guide/en/elasticsearch/reference/current/release-notes-8.16.0.html)
16
+
- Added the support of PHP 8.4 [#1415](https://github.com/elastic/elasticsearch-php/pull/1415)
17
+
1
18
## Release 8.15.0
2
19
3
20
Updated the APIs to Elasticsearch [8.15.0](https://www.elastic.co/guide/en/elasticsearch/reference/current/release-notes-8.15.0.html) and added the support of OpenTelemetry.
Copy file name to clipboardExpand all lines: src/Endpoints/Eql.php
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -156,6 +156,10 @@ public function getStatus(?array $params = null)
156
156
* keep_alive?: int|string, // Update the time interval in which the results (partial or final) for this search will be available
157
157
* allow_partial_search_results?: bool, // Control whether the query should keep running in case of shard failures, and return partial results
158
158
* allow_partial_sequence_results?: bool, // Control whether a sequence query should return partial results or no results at all in case of shard failures. This option has effect only if [allow_partial_search_results] is true.
159
+
* ccs_minimize_roundtrips?: bool, // Indicates whether network round-trips should be minimized as part of cross-cluster search requests execution
160
+
* ignore_unavailable?: bool, // Whether specified concrete indices should be ignored when unavailable (missing or closed)
161
+
* allow_no_indices?: bool, // Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
162
+
* expand_wildcards?: string, // Whether to expand wildcard expression to concrete indices that are open, closed or both.
159
163
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
160
164
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
161
165
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -178,7 +182,7 @@ public function search(?array $params = null)
Copy file name to clipboardExpand all lines: src/Endpoints/Esql.php
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ class Esql extends AbstractEndpoint
37
37
* format?: string, // a short version of the Accept header, e.g. json, yaml
38
38
* delimiter?: string, // The character to use between values within a CSV row. Only valid for the csv format.
39
39
* drop_null_columns?: bool, // Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.
40
+
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, butthe query can continue to execute on other clusters and shards.If `false`, the entire query will fail if there areany failures.
40
41
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
41
42
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
42
43
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -58,7 +59,7 @@ public function asyncQuery(?array $params = null)
@@ -114,6 +115,7 @@ public function asyncQueryDelete(?array $params = null)
114
115
*
115
116
* @param array{
116
117
* id: string, // (REQUIRED) The async query ID
118
+
* format?: string, // a short version of the Accept header, e.g. json, yaml
117
119
* wait_for_completion_timeout?: int|string, // Specify the time that the request should block waiting for the final response
118
120
* keep_alive?: int|string, // Specify the time interval in which the results (partial or final) for this search will be available
119
121
* drop_null_columns?: bool, // Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.
@@ -138,7 +140,7 @@ public function asyncQueryGet(?array $params = null)
@@ -195,6 +197,7 @@ public function asyncQueryStop(?array $params = null)
195
197
* format?: string, // a short version of the Accept header, e.g. json, yaml
196
198
* delimiter?: string, // The character to use between values within a CSV row. Only valid for the csv format.
197
199
* drop_null_columns?: bool, // Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.
200
+
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, butthe query can continue to execute on other clusters and shards.If `false`, the entire query will fail if there areany failures.
198
201
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
199
202
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
200
203
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -216,7 +219,7 @@ public function query(?array $params = null)
0 commit comments