mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-09 14:34:43 +00:00
The created and found fields in index and delete responses became obsolete after the introduction of the result field in index, update and delete responses (#19566). After deprecating the created and found fields in 5.x (#19633), now they are removed. Fixes #19630
24 lines
706 B
Plaintext
24 lines
706 B
Plaintext
[[breaking_60_docs_changes]]
|
|
=== Document API changes
|
|
|
|
==== version type `force` removed
|
|
|
|
Document modification operations may no longer specify the `version_type` of
|
|
`force` to override any previous version checks.
|
|
|
|
==== <<upserts,Upserts>> no longer support versions
|
|
|
|
Adding a `version` to an upsert request is no longer supported.
|
|
|
|
==== `created` field removed in the Index API
|
|
|
|
The `created` field has been removed in the Index API as in the `index` and
|
|
`create` bulk operations. `operation` field should be used instead.
|
|
|
|
|
|
==== `found` field removed in the Delete API
|
|
|
|
The `found` field has been removed in the Delete API as in the `delete` bulk
|
|
operations. `operation` field should be used instead.
|
|
|