Skip to content

Commit 52f5e32

Browse files
Merge main and refresh transport version
2 parents b1e06ef + 70a79bc commit 52f5e32

File tree

90 files changed

+7711
-78
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+7711
-78
lines changed

docs/changelog/136624.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 136624
2+
summary: Added OpenShift AI text_embedding, completion, chat_completion and rerank support to the Inference Plugin
3+
area: Machine Learning
4+
type: enhancement
5+
issues: []

docs/changelog/137702.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 137702
2+
summary: Handle index deletion while querying in ES|QL
3+
area: ES|QL
4+
type: bug
5+
issues:
6+
- 135863

docs/changelog/137964.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
pr: 137964
2+
summary: Fix for GET /_migration/deprecations doesn't report node deprecations if
3+
low watermark exceeded and GET /_migration/deprecations doesn't report node-level
4+
failures properly
5+
area: Infra/Core
6+
type: bug
7+
issues:
8+
- 137010
9+
- 137004

docs/changelog/137976.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pr: 137976
2+
summary: Fix for GET /_migration/deprecations doesn't check deprecated affix settings
3+
correctly
4+
area: Infra/Core
5+
type: bug
6+
issues:
7+
- 137008

docs/changelog/137992.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 137992
2+
summary: Prevent passing a pipeline to a logs stream bulk index request body
3+
area: Data streams
4+
type: bug
5+
issues: []

jira-projects.json

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
teardown:
3+
- do:
4+
streams.logs_disable: { }
5+
6+
---
7+
"Check User Can't Provide Pipeline to Logs Stream":
8+
- do:
9+
streams.logs_enable: { }
10+
- is_true: acknowledged
11+
12+
- do:
13+
streams.status: { }
14+
- is_true: logs.enabled
15+
16+
- do:
17+
bulk:
18+
index: logs
19+
body: |
20+
{ "create": {"pipeline": "noop"}}
21+
{ "message": "hello streams!"}
22+
- match: { errors: true }
23+
- match: { items.0.create.status: 400 }
24+
- match: { items.0.create.error.type: "illegal_argument_exception" }
25+
- match: { items.0.create.error.reason: "Cannot provide a pipeline when writing to a stream however the [noop] pipeline was provided when writing to the [logs] stream" }

rest-api-spec/src/main/resources/rest-api-spec/api/cat.aliases.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,15 @@
4242
},
4343
"h": {
4444
"type": "list",
45-
"description": "Comma-separated list of column names to display"
45+
"description": "Comma-separated list of column names to display",
46+
"options": [
47+
"alias",
48+
"index",
49+
"filter",
50+
"routing.index",
51+
"routing.search",
52+
"is_write_index"
53+
]
4654
},
4755
"help": {
4856
"type": "boolean",

rest-api-spec/src/main/resources/rest-api-spec/api/cat.allocation.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,22 @@
7777
},
7878
"h": {
7979
"type": "list",
80-
"description": "Comma-separated list of column names to display"
80+
"description": "Comma-separated list of column names to display",
81+
"options": [
82+
"shards",
83+
"shards.undesired",
84+
"write_load.forecast",
85+
"disk.indices.forecast",
86+
"disk.indices",
87+
"disk.used",
88+
"disk.avail",
89+
"disk.total",
90+
"disk.percent",
91+
"host",
92+
"ip",
93+
"node",
94+
"node.role"
95+
]
8196
},
8297
"help": {
8398
"type": "boolean",

rest-api-spec/src/main/resources/rest-api-spec/api/cat.component_templates.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,16 @@
5252
},
5353
"h": {
5454
"type": "list",
55-
"description": "Comma-separated list of column names to display"
55+
"description": "Comma-separated list of column names to display",
56+
"options": [
57+
"name",
58+
"version",
59+
"alias_count",
60+
"mapping_count",
61+
"settings_count",
62+
"metadata_count",
63+
"included_in"
64+
]
5665
},
5766
"help": {
5867
"type": "boolean",

0 commit comments

Comments
 (0)