Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] Release Notes 8.11 #2237

Merged
merged 2 commits into from
Nov 7, 2023
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
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
*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).*

## 8.11.0 Release notes

### Client

* Tested versions of Ruby for 8.11.0: Ruby (MRI) 3.0, 3.1 and 3.2. JRuby 9.3 and JRuby 9.4.
* Adds native support for *Open Telemetry*. See Open Telemetry for documentation.
* Improved documentation, now you can find more examples in Ruby in the [REST API reference](https://www.elastic.co/guide/en/elasticsearch/reference/8.11/rest-apis.html).

### API

New Experimental APIs:
- `esql.query` - Executes an ESQL request.
- `inference.delete_model` - Delete model in the Inference API.
- `inference.get_model` - Get a model in the Inference API.
- `inference.inference` - Perform inference on a model.
- `inference.put_model` - Configure a model for use in the Inference API.

## 8.10.0 Release notes

### Client
Expand Down
3 changes: 3 additions & 0 deletions docs/integrations.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ the Ruby client.

* <<transport>>
* <<api>>
* <<opentelemetry>>
* <<ecs>>
* <<activemodel_activerecord>>
* <<ruby_on_rails>>
Expand All @@ -16,6 +17,8 @@ include::transport.asciidoc[]

include::api.asciidoc[]

include::open-telemetry.asciidoc[]

include::ecs.asciidoc[]

include::model.asciidoc[]
Expand Down
24 changes: 24 additions & 0 deletions docs/release_notes/811.asciidoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[[release_notes_8110]]
=== 8.11 Release notes

[discrete]
[[release_notes_811_0]]
=== 8.11.0 Release notes

[discrete]
=== Client

* Tested versions of Ruby for 8.11.0: Ruby (MRI) 3.0, 3.1 and 3.2. JRuby 9.3 and JRuby 9.4.
* Adds native support for *Open Telemetry*. See <<opentelemetry>> for documentation.
* Improved documentation, now you can find more examples in Ruby in the https://www.elastic.co/guide/en/elasticsearch/reference/8.11/rest-apis.html[REST API reference].

[discrete]
=== API

New Experimental APIs:

* `esql.query` - Executes an ESQL request.
* `inference.delete_model` - Delete model in the Inference API
* `inference.get_model` - Get a model in the Inference API
* `inference.inference` - Perform inference on a model
* `inference.put_model` - Configure a model for use in the Inference API
2 changes: 2 additions & 0 deletions docs/release_notes/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

[discrete]
=== 8.x
* <<release_notes_8110, 8.11 Release Notes>>
* <<release_notes_8100, 8.10 Release Notes>>
* <<release_notes_89, 8.9 Release Notes>>
* <<release_notes_88, 8.8 Release Notes>>
Expand Down Expand Up @@ -32,6 +33,7 @@
* <<release_notes_75, 7.5 Release Notes>>
* <<release_notes_70, 7.0 Release Notes>>

include::811.asciidoc[]
include::810.asciidoc[]
include::89.asciidoc[]
include::88.asciidoc[]
Expand Down