File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed
lib/elasticsearch-serverless Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.5.0
4
+
5
+ ### Client
6
+
7
+ - Removed Ruby 3.0 from testing matrix, it's been end of life for over 6 months.
8
+
9
+ ### Changes in APIs:
10
+
11
+ The following APIs have been removed as they're not available on Serverless:
12
+ * ` enrich.stats `
13
+ * ` indices.delete_data_lifecycle `
14
+
15
+ Changes in ` scroll ` APIs, the parameter ` scroll_id ` has been removed as it's been deprecated, it should be sent via the body:
16
+ * ` clear_scroll `
17
+ * ` scroll `
18
+
19
+ Update ` indices.put_data_lifecycle ` - body (lifecycle) is a required argument.
20
+
21
+ Added the following APIs:
22
+ * ` machine_learning.infer_trained_model `
23
+ * ` query_rules.test `
24
+ * ` security.delete_role.rb `
25
+ * ` security.get_builtin_privileges.rb `
26
+ * ` security.get_role.rb `
27
+ * ` security.put_role.rb `
28
+ * ` tasks.get `
29
+
3
30
## 0.4.0
4
31
5
32
### Changes in APIs:
6
33
7
- The following APIs API have been removed as they are not supported at the moment:
34
+ The following APIs have been removed as they are not supported at the moment:
8
35
* ` esql.query `
9
36
* ` indices.data_streams_stats `
10
37
Original file line number Diff line number Diff line change 17
17
18
18
module ElasticsearchServerless
19
19
API_VERSION = '2023-10-31' . freeze
20
- CLIENT_VERSION = '0.4 .0' . freeze
20
+ CLIENT_VERSION = '0.5 .0' . freeze
21
21
VERSION = CLIENT_VERSION
22
22
end
You can’t perform that action at this time.
0 commit comments