Skip to content

Commit

Permalink
Prep for 8.10 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ezimuel committed Sep 28, 2023
1 parent bfe35a2 commit 4237d7e
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
## Release 8.10.0

- Added 10 new APIs: 8 EXPERIMENTAL and 2 stable:
- `QueryRuleset.list` (new EXPERIMENTAL API)
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/query_ruleset.list.json
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/list-query-rulesets.html
- `Security.getSettings` (new API)
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/security.get_settings.json
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-settings.html
- `Security.updateSettings` (new API)
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/security.update_settings.json
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-update-settings.html
- `Synonyms.delete`
- Removed this API in favor of `deleteSynonym`.
- `Synonyms.deleteSynonym` (new EXPERIMENTAL API)
- This API replaces `Synonyms.delete`. Removed `synonyms_set` in favor of `id`
parameter (string). The id of the synonyms set to be deleted.
- `Synonyms.deleteSynonymRule` (new EXPERIMENTAL API)
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/synonyms.delete_synonym_rule.json
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-synonym-rule.html
- `Synonyms.get`
- Removed this function in favor of `getSynonym`.
- `Synonyms.getSynonym` (new EXPERIMENTAL API)
- This API replaces `Synonyms.getSynonym`. Removed `synonyms_set` in favor of `id`
required parameter (string). The name of the synonyms set to be retrieved.
- `Synonyms.getSynonymRule` (new EXPERIMENTAL API)
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/synonyms.get_synonym_rule.json
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/get-synonym-rule.html
- `Synonyms.getSynonymsSets` (new EXPERIMENTAL API)
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/synonyms.get_synonyms_sets.json
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/list-synonyms-sets.html
- `Synonyms.put`
- Removed this function in favor of `putSynonym`.
- `Synonyms.putSynonym` (new EXPERIMENTAL API)
- This API replaces `Synonyms.put`. Removed `synonyms_set` in favor of `id`
required parameter (string). The id of the synonyms set to be created or updated.
- `Synonyms.putSynonymRule` (new EXPERIMENTAL API)
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/synonyms.put_synonym_rule.json
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/put-synonym-rule.html


## Release 8.9.0

- Fixed issue with psr/http-message, changed PSR-7 versions to 1.1 and 2.0
Expand Down
7 changes: 7 additions & 0 deletions docs/release-notes.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[[release-notes]]
== Release notes

* <<rn-8-10-0>>
* <<rn-8-9-0>>
* <<rn-8-8-0>>
* <<rn-8-7-0>>
Expand Down Expand Up @@ -41,6 +42,12 @@
* <<rn-7-0-1>>
* <<rn-7-0-0>>

[discrete]
[[rn-8-10-0]]
=== 8.10.0

* Updated the API endpoints to Elasticserach 8.10.0

[discrete]
[[rn-8-9-0]]
=== 8.9.0
Expand Down

0 comments on commit 4237d7e

Please sign in to comment.