Skip to content

Commit 957f73a

Browse files
committed
Merge branch 'master' into test_structure_refactoring
2 parents d64dc9c + cebcc3a commit 957f73a

File tree

189 files changed

+4419
-2307
lines changed

Some content is hidden

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

189 files changed

+4419
-2307
lines changed

.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=10.21.0
4+
ARG NODE_VERSION=10.22.0
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-
10.21.0
1+
10.22.0

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.21.0
1+
10.22.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ export interface RouteConfigOptions<Method extends RouteMethod>
1919
| [authRequired](./kibana-plugin-core-server.routeconfigoptions.authrequired.md) | <code>boolean &#124; 'optional'</code> | Defines authentication mode for a route: - true. A user has to have valid credentials to access a resource - false. A user can access a resource without any credentials. - 'optional'. A user can access a resource if has valid credentials or no credentials at all. Can be useful when we grant access to a resource but want to identify a user if possible.<!-- -->Defaults to <code>true</code> if an auth mechanism is registered. |
2020
| [body](./kibana-plugin-core-server.routeconfigoptions.body.md) | <code>Method extends 'get' &#124; 'options' ? undefined : RouteConfigOptionsBody</code> | Additional body options [RouteConfigOptionsBody](./kibana-plugin-core-server.routeconfigoptionsbody.md)<!-- -->. |
2121
| [tags](./kibana-plugin-core-server.routeconfigoptions.tags.md) | <code>readonly string[]</code> | Additional metadata tag strings to attach to the route. |
22-
| [timeout](./kibana-plugin-core-server.routeconfigoptions.timeout.md) | <code>number</code> | Timeouts for processing durations. Response timeout is in milliseconds. Default value: 2 minutes |
22+
| [timeout](./kibana-plugin-core-server.routeconfigoptions.timeout.md) | <code>{</code><br/><code> payload?: Method extends 'get' &#124; 'options' ? undefined : number;</code><br/><code> idleSocket?: number;</code><br/><code> }</code> | Defines per-route timeouts. |
2323
| [xsrfRequired](./kibana-plugin-core-server.routeconfigoptions.xsrfrequired.md) | <code>Method extends 'get' ? never : boolean</code> | Defines xsrf protection requirements for a route: - true. Requires an incoming POST/PUT/DELETE request to contain <code>kbn-xsrf</code> header. - false. Disables xsrf protection.<!-- -->Set to true by default |
2424

docs/development/core/server/kibana-plugin-core-server.routeconfigoptions.timeout.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@
44

55
## RouteConfigOptions.timeout property
66

7-
Timeouts for processing durations. Response timeout is in milliseconds. Default value: 2 minutes
7+
Defines per-route timeouts.
88

99
<b>Signature:</b>
1010

1111
```typescript
12-
timeout?: number;
12+
timeout?: {
13+
payload?: Method extends 'get' | 'options' ? undefined : number;
14+
idleSocket?: number;
15+
};
1316
```

docs/settings/reporting-settings.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ control the capturing process.
129129
| Specify how long to allow the Reporting browser to wait for the "Loading..." screen
130130
to dismiss and find the initial data for the Kibana page. If the time is
131131
exceeded, a page screenshot is captured showing the current state, and the download link shows a warning message.
132-
Defaults to `30000` (30 seconds).
132+
Defaults to `60000` (1 minute).
133133

134134
| `xpack.reporting.capture.timeouts.waitForElements`
135135
| Specify how long to allow the Reporting browser to wait for all visualization

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@
479479
"zlib": "^1.0.5"
480480
},
481481
"engines": {
482-
"node": "10.21.0",
482+
"node": "10.22.0",
483483
"yarn": "^1.21.1"
484484
}
485485
}

0 commit comments

Comments
 (0)