Skip to content

Commit 946dbc1

Browse files
committed
Merge remote-tracking branch 'upstream/master' into task/145_advanced_policy_poc
2 parents c7054c6 + b1aa93f commit 946dbc1

872 files changed

Lines changed: 17800 additions & 6165 deletions

File tree

Some content is hidden

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

.github/CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,8 +381,9 @@ x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json @elastic/kib
381381
**/*.scss @elastic/kibana-design
382382
#CC# /packages/kbn-ui-framework/ @elastic/kibana-design
383383

384-
# Core design
384+
# Core UI design
385385
/src/plugins/dashboard/**/*.scss @elastic/kibana-core-ui-designers
386+
/src/plugins/embeddable/**/*.scss @elastic/kibana-core-ui-designers
386387
/x-pack/plugins/canvas/**/*.scss @elastic/kibana-core-ui-designers
387388
/x-pack/plugins/spaces/**/*.scss @elastic/kibana-core-ui-designers
388389
/x-pack/plugins/security/**/*.scss @elastic/kibana-core-ui-designers
Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
1-
---
2-
name: Bug report for Security Solution
3-
about: Help us identify bugs in Elastic Security, SIEM, and Endpoint so we can fix them!
4-
title: '[Security Solution]'
5-
labels: 'Team: SecuritySolution'
6-
---
7-
8-
**Describe the bug:**
9-
10-
**Kibana/Elasticsearch Stack version:**
11-
12-
**Server OS version:**
13-
14-
**Browser and Browser OS versions:**
15-
16-
**Elastic Endpoint version:**
17-
18-
**Original install method (e.g. download page, yum, from source, etc.):**
19-
20-
**Functional Area (e.g. Endpoint management, timelines, resolver, etc.):**
21-
22-
**Steps to reproduce:**
23-
24-
1.
25-
2.
26-
3.
27-
28-
**Current behavior:**
29-
30-
**Expected behavior:**
31-
32-
**Screenshots (if relevant):**
33-
34-
**Errors in browser console (if relevant):**
35-
36-
**Provide logs and/or server output (if relevant):**
37-
38-
**Any additional context (logs, chat logs, magical formulas, etc.):**
1+
---
2+
name: Bug report for Security Solution
3+
about: Help us identify bugs in Elastic Security, SIEM, and Endpoint so we can fix them!
4+
title: '[Security Solution]'
5+
labels: 'bug, Team: SecuritySolution'
6+
---
7+
8+
**Describe the bug:**
9+
10+
**Kibana/Elasticsearch Stack version:**
11+
12+
**Server OS version:**
13+
14+
**Browser and Browser OS versions:**
15+
16+
**Elastic Endpoint version:**
17+
18+
**Original install method (e.g. download page, yum, from source, etc.):**
19+
20+
**Functional Area (e.g. Endpoint management, timelines, resolver, etc.):**
21+
22+
**Steps to reproduce:**
23+
24+
1.
25+
2.
26+
3.
27+
28+
**Current behavior:**
29+
30+
**Expected behavior:**
31+
32+
**Screenshots (if relevant):**
33+
34+
**Errors in browser console (if relevant):**
35+
36+
**Provide logs and/or server output (if relevant):**
37+
38+
**Any additional context (logs, chat logs, magical formulas, etc.):**

.github/ISSUE_TEMPLATE/v8_breaking_change.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: 8.0 Breaking change
33
about: Breaking changes from 7.x -> 8.0
44
title: "[Breaking change]"
5-
labels: Team:Elasticsearch UI, Feature:Upgrade Assistant
5+
labels: Team:Elasticsearch UI, Feature:Upgrade Assistant, Breaking Change
66
assignees: ''
77

88
---
@@ -11,15 +11,16 @@ assignees: ''
1111

1212
**Which release will ship the breaking change?**
1313

14-
<!-- e.g., v7.6.2 -->
14+
8.0
1515

1616
**Describe the change. How will it manifest to users?**
1717

18-
**What percentage of users will be affected?**
18+
**How many users will be affected?**
1919

20-
<!-- e.g., Roughly 75% will need to make changes to x. -->
20+
<!-- e.g., Based on telemetry data, roughly 75% of our users will need to make changes to x -->
21+
<!-- e.g., A majority of users will need to make changes to x. -->
2122

22-
**What can users to do to address the change manually?**
23+
**What can users do to address the change manually?**
2324

2425
<!-- If applicable, describe the manual workaround -->
2526

.telemetryrc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,10 @@
77
"src/plugins/testbed/",
88
"src/plugins/kibana_utils/"
99
]
10+
},
11+
{
12+
"output": "src/plugins/telemetry/schema/legacy_plugins.json",
13+
"root": "src/legacy/server/",
14+
"exclude": []
1015
}
1116
]

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.painlesserror._constructor_.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ Constructs a new instance of the `PainlessError` class
99
<b>Signature:</b>
1010

1111
```typescript
12-
constructor(err: EsError, request: IKibanaSearchRequest);
12+
constructor(err: IEsError, request: IKibanaSearchRequest);
1313
```
1414

1515
## Parameters
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| err | <code>EsError</code> | |
19+
| err | <code>IEsError</code> | |
2020
| request | <code>IKibanaSearchRequest</code> | |
2121

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.painlesserror.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<b>Signature:</b>
88

99
```typescript
10-
export declare class PainlessError extends KbnError
10+
export declare class PainlessError extends EsError
1111
```
1212
1313
## Constructors

docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpatternsfetcher._constructor_.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,13 @@ Constructs a new instance of the `IndexPatternsFetcher` class
99
<b>Signature:</b>
1010

1111
```typescript
12-
constructor(callDataCluster: LegacyAPICaller);
12+
constructor(elasticsearchClient: ElasticsearchClient, allowNoIndices?: boolean);
1313
```
1414

1515
## Parameters
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| callDataCluster | <code>LegacyAPICaller</code> | |
19+
| elasticsearchClient | <code>ElasticsearchClient</code> | |
20+
| allowNoIndices | <code>boolean</code> | |
2021

docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpatternsfetcher.getfieldsforwildcard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ getFieldsForWildcard(options: {
1313
pattern: string | string[];
1414
metaFields?: string[];
1515
fieldCapsOptions?: {
16-
allowNoIndices: boolean;
16+
allow_no_indices: boolean;
1717
};
1818
}): Promise<FieldDescriptor[]>;
1919
```
@@ -22,7 +22,7 @@ getFieldsForWildcard(options: {
2222

2323
| Parameter | Type | Description |
2424
| --- | --- | --- |
25-
| options | <code>{</code><br/><code> pattern: string &#124; string[];</code><br/><code> metaFields?: string[];</code><br/><code> fieldCapsOptions?: {</code><br/><code> allowNoIndices: boolean;</code><br/><code> };</code><br/><code> }</code> | |
25+
| options | <code>{</code><br/><code> pattern: string &#124; string[];</code><br/><code> metaFields?: string[];</code><br/><code> fieldCapsOptions?: {</code><br/><code> allow_no_indices: boolean;</code><br/><code> };</code><br/><code> }</code> | |
2626

2727
<b>Returns:</b>
2828

docs/development/plugins/data/server/kibana-plugin-plugins-data-server.indexpatternsfetcher.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export declare class IndexPatternsFetcher
1414

1515
| Constructor | Modifiers | Description |
1616
| --- | --- | --- |
17-
| [(constructor)(callDataCluster)](./kibana-plugin-plugins-data-server.indexpatternsfetcher._constructor_.md) | | Constructs a new instance of the <code>IndexPatternsFetcher</code> class |
17+
| [(constructor)(elasticsearchClient, allowNoIndices)](./kibana-plugin-plugins-data-server.indexpatternsfetcher._constructor_.md) | | Constructs a new instance of the <code>IndexPatternsFetcher</code> class |
1818

1919
## Methods
2020

docs/development/plugins/expressions/public/kibana-plugin-plugins-expressions-public.execution._constructor_.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ Constructs a new instance of the `Execution` class
99
<b>Signature:</b>
1010

1111
```typescript
12-
constructor(params: ExecutionParams<ExtraContext>);
12+
constructor(execution: ExecutionParams);
1313
```
1414

1515
## Parameters
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| params | <code>ExecutionParams&lt;ExtraContext&gt;</code> | |
19+
| execution | <code>ExecutionParams</code> | |
2020

0 commit comments

Comments
 (0)