Skip to content

Commit 8ab43c5

Browse files
committed
[DOCS] Updates CHANGELOG for 8.9
1 parent 8eade05 commit 8ab43c5

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

CHANGELOG.md

+46
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,51 @@
11
*To see release notes for the `7.x` branch and older releases, see [CHANGELOG on the 7.17 branch](https://github.com/elastic/elasticsearch-ruby/blob/7.17/CHANGELOG.md).*
22

3+
## 8.9.0 Release notes
4+
5+
### Client
6+
7+
* Tested versions of Ruby for 8.9.0: Ruby (MRI) 3.0, 3.1 and 3.2. JRuby 9.3 and JRuby 9.4.
8+
* Updated product validation. The code for the product validation was refactored in a few ways:
9+
* Just check header, does not check the version of the server.
10+
* Warns only once when there's a general server error.
11+
* Removes the call to '/' (client.info) when doing the first request, checking on the first actual request from the client.
12+
* Fixes User-Agent code. In the migration to 8.x, the user agent code was extracted into transport, since we're now using that library in other projects. So for the Elasticsearch Client, the user-agent would be reported as the one defined in elastic-transport. This release fixes the issue and brings back the user agent in the format that was being used in 7.x
13+
14+
### Helpers
15+
16+
This release introduces two new Helpers in the client:
17+
18+
* BulkHelper - This helper provides a better developer experience when using the Bulk API. At its simplest, you can send it a collection of hashes in an array, and it will bulk ingest them into {es}.
19+
* ScrollHelper - This helper provides an easy way to get results from a Scroll.
20+
21+
See [Helpers](https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/current/Helpers.html) to read more about them.
22+
23+
### API
24+
25+
#### New APIs
26+
27+
* `cluster.info` - Returns different information about the cluster.
28+
29+
#### New Experimental APIs and namespaces:
30+
31+
This functionality is Experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features.
32+
33+
* New namespace: `query_ruleset`
34+
* `query_ruleset.delete` - Deletes a query ruleset.
35+
* `query_ruleset.get` - Returns the details about a query ruleset.
36+
* `query_ruleset.put` - Creates or updates a query ruleset.
37+
* New API: `search_application.render_query` Renders a query for given search application search parameters.
38+
* New API: `security.create_cross_cluster_api_key` - Creates a cross-cluster API key for API key based remote cluster access.
39+
* New API: `security.upate_cross_cluster_api_key` - Updates attributes of an existing cross-cluster API key.
40+
* New namespace: `synonyms`
41+
* `synonyms.delete`- Deletes a synonym set
42+
* `synonyms.get` - Retrieves a synonym set
43+
* `synonyms.put` - Creates or updates a synonyms set
44+
* New namespace: `synonym_rule`
45+
* `synonym_rule.put` - Creates or updates a synonym rule in a synonym set
46+
* New namespace: `synonyms`
47+
* `synonyms_set.get` - Retrieves a summary of all defined synonym sets
48+
349
## 8.8.0 Release notes
450

551
- Tested versions of Ruby for 8.8.0: Ruby (MRI) 3.0, 3.1 and **3.2**. JRuby 9.3 and JRuby 9.4.

0 commit comments

Comments
 (0)