Skip to content

Commit 0b95e19

Browse files
Merge branch 'master' into data/enhance-pattern
2 parents d8383db + ad8502c commit 0b95e19

File tree

266 files changed

+6086
-3324
lines changed

Some content is hidden

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

266 files changed

+6086
-3324
lines changed

docs/developer/architecture/code-exploration.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ Contains the Discover application and the saved search embeddable.
8686
Embeddables are re-usable widgets that can be rendered in any environment or plugin. Developers can embed them directly in their plugin. End users can dynamically add them to any embeddable containers.
8787
8888
89-
- {kib-repo}blob/{branch}/src/plugins/es_ui_shared[esUiShared]
89+
- {kib-repo}blob/{branch}/src/plugins/es_ui_shared/README.md[esUiShared]
9090
91-
WARNING: Missing README.
91+
This plugin contains reusable code in the form of self-contained modules (or libraries). Each of these modules exports a set of functionality relevant to the domain of the module.
9292
9393
9494
- {kib-repo}blob/{branch}/src/plugins/expressions/README.md[expressions]

docs/development/plugins/kibana_utils/public/state_sync/kibana-plugin-plugins-kibana_utils-public-state_sync.createkbnurlstatestorage.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,10 @@ Creates [IKbnUrlStateStorage](./kibana-plugin-plugins-kibana_utils-public-state_
99
<b>Signature:</b>
1010

1111
```typescript
12-
createKbnUrlStateStorage: ({ useHash, history }?: {
12+
createKbnUrlStateStorage: ({ useHash, history, onGetError, onSetError, }?: {
1313
useHash: boolean;
1414
history?: History<any> | undefined;
15+
onGetError?: ((error: Error) => void) | undefined;
16+
onSetError?: ((error: Error) => void) | undefined;
1517
}) => IKbnUrlStateStorage
1618
```

docs/drilldowns/explore-underlying-data.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ applies the filters and time range created by the events that triggered the acti
3333
[role="screenshot"]
3434
image::images/explore_data_in_chart.png[Explore underlying data from chart]
3535

36-
You can disable this action by adding the following line to your `kibana.yml` config.
36+
To enable this action add the following line to your `kibana.yml` config.
3737

3838
["source","yml"]
3939
-----------
40-
xpack.discoverEnhanced.actions.exploreDataInChart.enabled: false
40+
xpack.discoverEnhanced.actions.exploreDataInChart.enabled: true
4141
-----------

docs/glossary.asciidoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,13 @@ syslog, Apache, and other webserver logs. See
214214
[[k_glos]]
215215
== K
216216

217+
[[glossary-kibana-privileges]] {kib} privileges ::
218+
// tag::kibana-privileges-def[]
219+
Enable administrators to grant users read-only, read-write, or no access to
220+
individual features within <<glossary-space,spaces>> in {kib}. See
221+
{kibana-ref}/kibana-privileges.html[{kib} privileges].
222+
// end::kibana-privileges-def[]
223+
217224
[[glossary-kql]] {kib} Query Language (KQL) ::
218225
// tag::kql-def[]
219226
The default language for querying in {kib}. KQL provides

package.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@
117117
]
118118
},
119119
"dependencies": {
120-
"@babel/core": "^7.10.2",
121-
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
122-
"@babel/register": "^7.10.1",
120+
"@babel/core": "^7.11.1",
121+
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
122+
"@babel/register": "^7.10.5",
123123
"@elastic/apm-rum": "^5.2.0",
124124
"@elastic/charts": "19.8.1",
125125
"@elastic/datemath": "5.0.3",
@@ -159,7 +159,6 @@
159159
"bluebird": "3.5.5",
160160
"boom": "^7.2.0",
161161
"brace": "0.11.1",
162-
"browserslist-useragent": "^3.0.2",
163162
"cache-loader": "^4.1.0",
164163
"chalk": "^2.4.2",
165164
"check-disk-space": "^2.1.0",
@@ -290,8 +289,8 @@
290289
"yauzl": "2.10.0"
291290
},
292291
"devDependencies": {
293-
"@babel/parser": "^7.10.2",
294-
"@babel/types": "^7.10.2",
292+
"@babel/parser": "^7.11.2",
293+
"@babel/types": "^7.11.0",
295294
"@elastic/eslint-config-kibana": "0.15.0",
296295
"@elastic/eslint-plugin-eui": "0.0.2",
297296
"@elastic/github-checks-reporter": "0.0.20b3",
@@ -319,7 +318,6 @@
319318
"@types/babel__core": "^7.1.2",
320319
"@types/bluebird": "^3.1.1",
321320
"@types/boom": "^7.2.0",
322-
"@types/browserslist-useragent": "^3.0.0",
323321
"@types/chance": "^1.0.0",
324322
"@types/cheerio": "^0.22.10",
325323
"@types/chromedriver": "^81.0.0",

packages/elastic-datemath/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"kbn:watch": "yarn build --watch"
1212
},
1313
"devDependencies": {
14-
"@babel/cli": "^7.10.1",
15-
"@babel/preset-env": "^7.10.2",
14+
"@babel/cli": "^7.10.5",
15+
"@babel/preset-env": "^7.11.0",
1616
"babel-plugin-add-module-exports": "^1.0.2",
1717
"moment": "^2.24.0"
1818
},

packages/kbn-analytics/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"kbn:watch": "node scripts/build --source-maps --watch"
1515
},
1616
"devDependencies": {
17-
"@babel/cli": "^7.10.1",
17+
"@babel/cli": "^7.10.5",
1818
"@kbn/dev-utils": "1.0.0",
1919
"@kbn/babel-preset": "1.0.0",
2020
"typescript": "3.9.5"

packages/kbn-babel-preset/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"version": "1.0.0",
55
"license": "Apache-2.0",
66
"dependencies": {
7-
"@babel/plugin-proposal-class-properties": "^7.10.1",
8-
"@babel/plugin-proposal-export-namespace-from": "^7.10.1",
9-
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.1",
10-
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
11-
"@babel/plugin-proposal-private-methods": "^7.10.1",
12-
"@babel/preset-env": "^7.10.2",
13-
"@babel/preset-react": "^7.10.1",
14-
"@babel/preset-typescript": "^7.10.1",
7+
"@babel/plugin-proposal-class-properties": "^7.10.4",
8+
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
9+
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
10+
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
11+
"@babel/plugin-proposal-private-methods": "^7.10.4",
12+
"@babel/preset-env": "^7.11.0",
13+
"@babel/preset-react": "^7.10.4",
14+
"@babel/preset-typescript": "^7.10.4",
1515
"babel-plugin-add-module-exports": "^1.0.2",
1616
"babel-plugin-filter-imports": "^3.0.0",
1717
"babel-plugin-styled-components": "^1.10.7",

packages/kbn-i18n/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"kbn:watch": "node scripts/build --watch --source-maps"
1313
},
1414
"devDependencies": {
15-
"@babel/cli": "^7.10.1",
16-
"@babel/core": "^7.10.2",
15+
"@babel/cli": "^7.10.5",
16+
"@babel/core": "^7.11.1",
1717
"@kbn/babel-preset": "1.0.0",
1818
"@kbn/dev-utils": "1.0.0",
1919
"@types/intl-relativeformat": "^2.1.0",

packages/kbn-interpreter/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"kbn:watch": "node scripts/build --dev --watch"
1010
},
1111
"dependencies": {
12-
"@babel/runtime": "^7.10.2",
12+
"@babel/runtime": "^7.11.2",
1313
"@kbn/i18n": "1.0.0",
1414
"lodash": "^4.17.15",
1515
"uuid": "3.3.2"
1616
},
1717
"devDependencies": {
18-
"@babel/cli": "^7.10.1",
19-
"@babel/core": "^7.10.2",
20-
"@babel/plugin-transform-modules-commonjs": "^7.10.1",
21-
"@babel/plugin-transform-runtime": "^7.10.1",
18+
"@babel/cli": "^7.10.5",
19+
"@babel/core": "^7.11.1",
20+
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
21+
"@babel/plugin-transform-runtime": "^7.11.0",
2222
"@kbn/babel-preset": "1.0.0",
2323
"@kbn/dev-utils": "1.0.0",
2424
"babel-loader": "^8.0.6",

0 commit comments

Comments
 (0)