Skip to content

Commit 6ded573

Browse files
Merge branch '7.x' into backport/7.x/pr-85843
2 parents bf6dafd + 702e795 commit 6ded573

762 files changed

Lines changed: 12943 additions & 5079 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.

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NOTE: This Dockerfile is ONLY used to run certain tasks in CI. It is not used to run Kibana or as a distributable.
22
# If you're looking for the Kibana Docker image distributable, please see: src/dev/build/tasks/os_packages/docker_generator/templates/dockerfile.template.ts
33

4-
ARG NODE_VERSION=14.15.2
4+
ARG NODE_VERSION=14.15.3
55

66
FROM node:${NODE_VERSION} AS base
77

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.15.2
1+
14.15.3

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
14.15.2
1+
14.15.3

docs/developer/plugin-list.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ heatmap charts.
268268
269269
|{kib-repo}blob/{branch}/src/plugins/vis_type_xy/README.md[visTypeXy]
270270
|Contains the new xy-axis chart using the elastic-charts library, which will eventually
271-
replace the vislib xy-axis (bar, area, line) charts.
271+
replace the vislib xy-axis charts including bar, area, and line.
272272
273273
274274
|{kib-repo}blob/{branch}/src/plugins/visualizations/README.md[visualizations]

docs/development/core/server/kibana-plugin-core-server.legacyelasticsearcherror.md

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

1111
```typescript
12-
export interface LegacyElasticsearchError extends Boom
12+
export interface LegacyElasticsearchError extends Boom.Boom
1313
```
1414
1515
## Properties
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) &gt; [APPLY\_FILTER\_TRIGGER](./kibana-plugin-plugins-data-public.apply_filter_trigger.md)
4+
5+
## APPLY\_FILTER\_TRIGGER variable
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
APPLY_FILTER_TRIGGER = "FILTER_TRIGGER"
11+
```

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.applyglobalfilteractioncontext.embeddable.md

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

99
```typescript
10-
embeddable?: IEmbeddable;
10+
embeddable?: unknown;
1111
```

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

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

1515
| Property | Type | Description |
1616
| --- | --- | --- |
17-
| [embeddable](./kibana-plugin-plugins-data-public.applyglobalfilteractioncontext.embeddable.md) | <code>IEmbeddable</code> | |
17+
| [embeddable](./kibana-plugin-plugins-data-public.applyglobalfilteractioncontext.embeddable.md) | <code>unknown</code> | |
1818
| [filters](./kibana-plugin-plugins-data-public.applyglobalfilteractioncontext.filters.md) | <code>Filter[]</code> | |
1919
| [timeFieldName](./kibana-plugin-plugins-data-public.applyglobalfilteractioncontext.timefieldname.md) | <code>string</code> | |
2020

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) &gt; [IndexPattern](./kibana-plugin-plugins-data-public.indexpattern.md) &gt; [allowNoIndex](./kibana-plugin-plugins-data-public.indexpattern.allownoindex.md)
4+
5+
## IndexPattern.allowNoIndex property
6+
7+
prevents errors when index pattern exists before indices
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
readonly allowNoIndex: boolean;
13+
```

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpattern.getassavedobjectbody.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ getAsSavedObjectBody(): {
1919
fieldFormatMap: string | undefined;
2020
type: string | undefined;
2121
typeMeta: string | undefined;
22+
allowNoIndex: true | undefined;
2223
};
2324
```
2425
<b>Returns:</b>
@@ -33,5 +34,6 @@ getAsSavedObjectBody(): {
3334
fieldFormatMap: string | undefined;
3435
type: string | undefined;
3536
typeMeta: string | undefined;
37+
allowNoIndex: true | undefined;
3638
}`
3739

0 commit comments

Comments
 (0)