Skip to content

Commit 6f4a2ee

Browse files
committed
Updated CHANGELOG for 8.12.0
1 parent 0f3ba41 commit 6f4a2ee

File tree

2 files changed

+112
-0
lines changed

2 files changed

+112
-0
lines changed

CHANGELOG.md

+104
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,107 @@
1+
## Release 8.12.0
2+
3+
- Added 22 new EXPERIMENTAL APIs and 1 new stable API:
4+
- `bulk`
5+
- Adds `list_executed_pipelines` boolean parameter. Sets `list_executed_pipelines` for all incoming documents. Defaults to unset (false).
6+
- `indices.put_settings`
7+
- Adds `reopen` boolean parameter. Whether to close and reopen the index to apply non-dynamic settings. If set to `true` the indices to which the settings are being applied will be closed temporarily and then reopened in order to apply the changes. The default is `false`.
8+
- `open_point_in_time`
9+
- Adds `body` object/Hash parameter. An index_filter specified with the Query DSL.
10+
- `security.get_api_key`
11+
- Adds `active_only` boolean parameter. Flag to limit response to only active (not invalidated or expired) API keys.
12+
- `profiling.status` (new API)
13+
- Returns basic information about the status of Universal Profiling.
14+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/profiling.status.json
15+
- Documentation: https://www.elastic.co/guide/en/observability/current/universal-profiling.html
16+
- `simulate.ingest` (new EXPERIMENTAL API)
17+
- Simulates running ingest with example documents.
18+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/simulate-ingest-api.html
19+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/simulate.ingest.json
20+
- `connector.post` (new EXPERIMENTAL API)
21+
- Creates a connector.
22+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/create-connector-api.html
23+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.post.json
24+
- `connector.put` (new EXPERIMENTAL API)
25+
- Creates or updates a connector.
26+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/create-connector-api.html
27+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.put.json
28+
- `connector.delete` (new EXPERIMENTAL API)
29+
- Deletes a connector.
30+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/delete-connector-api.html
31+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.delete.json
32+
- `connector.get` (new EXPERIMENTAL API)
33+
- Returns the details about a connector.
34+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/get-connector-api.html
35+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.get.json
36+
- `connector.list` (new EXPERIMENTAL API)
37+
- Lists all connectors.
38+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/list-connector-api.html
39+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.list.json
40+
- `connector.check_in` (new EXPERIMENTAL API)
41+
- Updates the last_seen timestamp in the connector document.
42+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/check-in-connector-api.html
43+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.check_in.json
44+
- `connector.update_configuration` (new EXPERIMENTAL API)
45+
- Updates the connector configuration.
46+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-configuration-api.html
47+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.update_configuration.json
48+
- `connector.update_error` (new EXPERIMENTAL API)
49+
- Updates the error field in the connector document.
50+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-error-api.html
51+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.update_error.json
52+
- `connector.update_filtering` (new EXPERIMENTAL API)
53+
- Updates the filtering field in the connector document.
54+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-filtering-api.html
55+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.update_filtering.json
56+
- `connector.last_sync` (new EXPERIMENTAL API)
57+
- Updates the stats of last sync in the connector document.
58+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-last-sync-api.html
59+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.last_sync.json
60+
- `connector.update_name` (new EXPERIMENTAL API)
61+
- Updates the name and/or description fields in the connector document.
62+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-name-description-api.html
63+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.update_name.json
64+
- `connector.update_pipeline` (new EXPERIMENTAL API)
65+
- Updates the pipeline field in the connector document.
66+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-pipeline-api.html
67+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.update_pipeline.json
68+
- `connector.update_scheduling` (new EXPERIMENTAL API)
69+
- Updates the scheduling field in the connector document.
70+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/update-connector-scheduling-api.html
71+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector.update_scheduling.json
72+
- `connector_sync_job.cancel` (new EXPERIMENTAL API)
73+
- Cancels a connector sync job.
74+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/cancel-connector-sync-job-api.html
75+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector_sync_job.cancel.json
76+
- `connector_sync_job.check_in` (new EXPERIMENTAL API)
77+
- Checks in a connector sync job (refreshes 'last_seen').
78+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/check-in-connector-sync-job-api.html
79+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector_sync_job.check_in.json
80+
- `connector_sync_job.delete` (new EXPERIMENTAL API)
81+
- Deletes a connector sync job.
82+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/delete-connector-sync-job-api.html
83+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector_sync_job.delete.json
84+
- `connector_sync_job.error` (new EXPERIMENTAL API)
85+
- Sets an error for a connector sync job.
86+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/set-connector-sync-job-error-api.html
87+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector_sync_job.error.json
88+
- `connector_sync_job.get` (new EXPERIMENTAL API)
89+
- Returns the details about a connector sync job.
90+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/get-connector-sync-job-api.html
91+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector_sync_job.get.json
92+
- `connector_sync_job.list` (new EXPERIMENTAL API)
93+
- Lists all connector sync jobs.
94+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/list-connector-sync-jobs-api.html
95+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector_sync_job.list.json
96+
- `connector_sync_job.post` (new EXPERIMENTAL API)
97+
- Creates a connector sync job.
98+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/create-connector-sync-job-api.html
99+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector_sync_job.post.json
100+
- `connector_sync_job.update_stats` (new EXPERIMENTAL API)
101+
- Updates the stats fields in the connector sync job document.
102+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/8.12/set-connector-sync-job-stats-api.html
103+
- API: https://github.com/elastic/elasticsearch/blob/8.12/rest-api-spec/src/main/resources/rest-api-spec/api/connector_sync_job.update_stats.json
104+
1105
## Release 8.11.0
2106

3107
- Added 5 new EXPERIMENTAL APIs:

docs/release-notes.asciidoc

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[[release-notes]]
22
== Release notes
33

4+
* <<rn-8-11-0>>
45
* <<rn-8-11-0>>
56
* <<rn-8-10-0>>
67
* <<rn-8-9-0>>
@@ -43,6 +44,13 @@
4344
* <<rn-7-0-1>>
4445
* <<rn-7-0-0>>
4546

47+
[discrete]
48+
[[rn-8-12-0]]
49+
=== 8.12.0
50+
51+
* Updated the API endpoints to Elasticserach 8.11.0
52+
* Tested the library with PHP 8.3
53+
4654
[discrete]
4755
[[rn-8-11-0]]
4856
=== 8.11.0

0 commit comments

Comments
 (0)