Skip to content

Commit 4237d7e

Browse files
committed
Prep for 8.10 release
1 parent bfe35a2 commit 4237d7e

File tree

2 files changed

+48
-0
lines changed

2 files changed

+48
-0
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
## Release 8.10.0
2+
3+
- Added 10 new APIs: 8 EXPERIMENTAL and 2 stable:
4+
- `QueryRuleset.list` (new EXPERIMENTAL API)
5+
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/query_ruleset.list.json
6+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/list-query-rulesets.html
7+
- `Security.getSettings` (new API)
8+
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/security.get_settings.json
9+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-get-settings.html
10+
- `Security.updateSettings` (new API)
11+
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/security.update_settings.json
12+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/current/security-api-update-settings.html
13+
- `Synonyms.delete`
14+
- Removed this API in favor of `deleteSynonym`.
15+
- `Synonyms.deleteSynonym` (new EXPERIMENTAL API)
16+
- This API replaces `Synonyms.delete`. Removed `synonyms_set` in favor of `id`
17+
parameter (string). The id of the synonyms set to be deleted.
18+
- `Synonyms.deleteSynonymRule` (new EXPERIMENTAL API)
19+
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/synonyms.delete_synonym_rule.json
20+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-synonym-rule.html
21+
- `Synonyms.get`
22+
- Removed this function in favor of `getSynonym`.
23+
- `Synonyms.getSynonym` (new EXPERIMENTAL API)
24+
- This API replaces `Synonyms.getSynonym`. Removed `synonyms_set` in favor of `id`
25+
required parameter (string). The name of the synonyms set to be retrieved.
26+
- `Synonyms.getSynonymRule` (new EXPERIMENTAL API)
27+
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/synonyms.get_synonym_rule.json
28+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/get-synonym-rule.html
29+
- `Synonyms.getSynonymsSets` (new EXPERIMENTAL API)
30+
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/synonyms.get_synonyms_sets.json
31+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/list-synonyms-sets.html
32+
- `Synonyms.put`
33+
- Removed this function in favor of `putSynonym`.
34+
- `Synonyms.putSynonym` (new EXPERIMENTAL API)
35+
- This API replaces `Synonyms.put`. Removed `synonyms_set` in favor of `id`
36+
required parameter (string). The id of the synonyms set to be created or updated.
37+
- `Synonyms.putSynonymRule` (new EXPERIMENTAL API)
38+
- API: https://github.com/elastic/elasticsearch/blob/main/rest-api-spec/src/main/resources/rest-api-spec/api/synonyms.put_synonym_rule.json
39+
- Documentation: https://www.elastic.co/guide/en/elasticsearch/reference/master/put-synonym-rule.html
40+
41+
142
## Release 8.9.0
243

344
- Fixed issue with psr/http-message, changed PSR-7 versions to 1.1 and 2.0

docs/release-notes.asciidoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[[release-notes]]
22
== Release notes
33

4+
* <<rn-8-10-0>>
45
* <<rn-8-9-0>>
56
* <<rn-8-8-0>>
67
* <<rn-8-7-0>>
@@ -41,6 +42,12 @@
4142
* <<rn-7-0-1>>
4243
* <<rn-7-0-0>>
4344

45+
[discrete]
46+
[[rn-8-10-0]]
47+
=== 8.10.0
48+
49+
* Updated the API endpoints to Elasticserach 8.10.0
50+
4451
[discrete]
4552
[[rn-8-9-0]]
4653
=== 8.9.0

0 commit comments

Comments
 (0)