Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Release 9.4.0

- Added a Bulk Helper function [#1560](https://github.com/elastic/elasticsearch-php/pull/1560)
- Updated the APIs and the ES|QL Query Builder to Elasticsearch [9.4.0](https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.4.0-release-notes)

## Release 9.3.0

- Updated the APIs to Elasticsearch [9.3.0](https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.3.0-release-notes)
Expand Down
52 changes: 52 additions & 0 deletions docs/release-notes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,58 @@
% ### Fixes [elasticsearch-php-client-next-fixes]
% *

## 9.4.0 [elasticsearch-php-client-940-release-notes]

### Features and enhancements [elasticsearch-php-client-940-features-enhancements]

- New Bulk Helper function [#1560](https://github.com/elastic/elasticsearch-php/pull/1560)
- ES|QL query builder updates

### Inference.embedding (new API)

- API: https://github.com/elastic/elasticsearch/blob/9.4/rest-api-spec/src/main/resources/rest-api-spec/api/inference.embedding.json

### Inference.putFireworksai (new API)

- API: https://github.com/elastic/elasticsearch/blob/9.4/rest-api-spec/src/main/resources/rest-api-spec/api/inference.put_fireworksai.json

### Project.createManyRouting (new API)

- API: https://github.com/elastic/elasticsearch/blob/9.4/rest-api-spec/src/main/resources/rest-api-spec/api/project.create_many_routing.json

### Project.createRouting (new API)

- API: https://github.com/elastic/elasticsearch/blob/9.4/rest-api-spec/src/main/resources/rest-api-spec/api/project.create_routing.json

### Project.deleteRouting (new API)

- API: https://github.com/elastic/elasticsearch/blob/9.4/rest-api-spec/src/main/resources/rest-api-spec/api/project.delete_routing.json

### Project.getManyRouting (new API)

- API: https://github.com/elastic/elasticsearch/blob/9.4/rest-api-spec/src/main/resources/rest-api-spec/api/project.get_many_routing.json

### Project.getRouting (new API)

- API: https://github.com/elastic/elasticsearch/blob/9.4/rest-api-spec/src/main/resources/rest-api-spec/api/project.get_routing.json

### Security.cloneApiKey (new API)

- API: https://github.com/elastic/elasticsearch/blob/9.4/rest-api-spec/src/main/resources/rest-api-spec/api/security.clone_api_key.json

### AsyncSearch.get

- Added the `return_intermediate_results` parameter

### Streams.logsDisable

- Added the `name` parameter

### Streams.logsEnable

- Added the `name` parameter


## 9.3.0 [elasticsearch-php-client-930-release-notes]

### Features and enhancements [elasticsearch-php-client-930-features-enhancements]
Expand Down Expand Up @@ -207,27 +259,27 @@
### Indices.cancelMigrateReindex (new API)

- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/indices.cancel_migrate_reindex.json
- Documentation: https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-cancel-migrate-reindex

Check notice on line 262 in docs/release-notes/index.md

View workflow job for this annotation

GitHub Actions / build / build

Autolink points to elastic.co/docs. Consider using a crosslink or relative link instead.

### Indices.createFrom (new API)

- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/indices.create_from.json
- Documentation: https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-create-from

Check notice on line 267 in docs/release-notes/index.md

View workflow job for this annotation

GitHub Actions / build / build

Autolink points to elastic.co/docs. Consider using a crosslink or relative link instead.

### Indices.getDataStreamMappings (new API)

- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/indices.get_data_stream_mappings.json
- Documentation: https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-get-data-stream-mappings

Check notice on line 272 in docs/release-notes/index.md

View workflow job for this annotation

GitHub Actions / build / build

Autolink points to elastic.co/docs. Consider using a crosslink or relative link instead.

### Indices.getMigrateReindexStatus (new API)

- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/indices.get_migrate_reindex_status.json
- Documentation: https://www.elastic.co/docs/api/doc/elasticsearch/group/endpoint-migration

Check notice on line 277 in docs/release-notes/index.md

View workflow job for this annotation

GitHub Actions / build / build

Autolink points to elastic.co/docs. Consider using a crosslink or relative link instead.

### Indices.migrateReindex (new API)

- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/indices.migrate_reindex.json
- Documentation: https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-indices-migrate-reindex

Check notice on line 282 in docs/release-notes/index.md

View workflow job for this annotation

GitHub Actions / build / build

Autolink points to elastic.co/docs. Consider using a crosslink or relative link instead.

### Indices.putDataStreamMappings (new API)

Expand Down
Loading