Skip to content

Commit 57f42a9

Browse files
Merge branch 'master' into 21721
2 parents 858652a + be0724d commit 57f42a9

File tree

1,110 files changed

+27035
-14461
lines changed

Some content is hidden

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

1,110 files changed

+27035
-14461
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

.github/CODEOWNERS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,17 @@
174174
/x-pack/plugins/security/ @elastic/kibana-security
175175
/x-pack/plugins/security/**/*.scss @elastic/kibana-core-ui-designers
176176
/x-pack/test/api_integration/apis/security/ @elastic/kibana-security
177+
/x-pack/test/encrypted_saved_objects_api_integration/ @elastic/kibana-security
178+
/x-pack/test/functional/apps/security/ @elastic/kibana-security
179+
/x-pack/test/kerberos_api_integration/ @elastic/kibana-security
180+
/x-pack/test/login_selector_api_integration/ @elastic/kibana-security
181+
/x-pack/test/oidc_api_integration/ @elastic/kibana-security
182+
/x-pack/test/pki_api_integration/ @elastic/kibana-security
183+
/x-pack/test/saml_api_integration/ @elastic/kibana-security
184+
/x-pack/test/security_api_integration/ @elastic/kibana-security
185+
/x-pack/test/security_functional/ @elastic/kibana-security
186+
/x-pack/test/spaces_api_integration/ @elastic/kibana-security
187+
/x-pack/test/token_api_integration/ @elastic/kibana-security
177188

178189
# Kibana Localization
179190
/src/dev/i18n/ @elastic/kibana-localization
@@ -256,6 +267,7 @@ x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json @elastic/kib
256267
/x-pack/plugins/security_solution/ @elastic/siem @elastic/endpoint-app-team
257268
/x-pack/plugins/security_solution/**/*.scss @elastic/security-design
258269
/x-pack/test/detection_engine_api_integration @elastic/siem @elastic/endpoint-app-team
270+
/x-pack/test/lists_api_integration @elastic/siem @elastic/endpoint-app-team
259271
/x-pack/test/api_integration/apis/security_solution @elastic/siem @elastic/endpoint-app-team
260272
/x-pack/plugins/case @elastic/siem @elastic/endpoint-app-team
261273
/x-pack/plugins/lists @elastic/siem @elastic/endpoint-app-team

.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/developer/architecture/code-exploration.asciidoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,9 +313,10 @@ To access an elasticsearch instance that has live data you have two options:
313313
WARNING: Missing README.
314314
315315
316-
- {kib-repo}blob/{branch}/x-pack/plugins/beats_management[beats_management]
316+
- {kib-repo}blob/{branch}/x-pack/plugins/beats_management/readme.md[beatsManagement]
317317
318-
WARNING: Missing README.
318+
Notes:
319+
Failure to have auth enabled in Kibana will make for a broken UI. UI-based errors not yet in place
319320
320321
321322
- {kib-repo}blob/{branch}/x-pack/plugins/canvas/README.md[canvas]

docs/development/core/public/kibana-plugin-core-public.doclinksstart.links.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,6 @@ readonly links: {
9696
readonly dateMath: string;
9797
};
9898
readonly management: Record<string, string>;
99+
readonly visualize: Record<string, string>;
99100
};
100101
```
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [KibanaRequest](./kibana-plugin-core-server.kibanarequest.md) &gt; [id](./kibana-plugin-core-server.kibanarequest.id.md)
4+
5+
## KibanaRequest.id property
6+
7+
A identifier to identify this request.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
readonly id: string;
13+
```
14+
15+
## Remarks
16+
17+
Depending on the user's configuration, this value may be sourced from the incoming request's `X-Opaque-Id` header which is not guaranteed to be unique per request.
18+

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export declare class KibanaRequest<Params = unknown, Query = unknown, Body = unk
2626
| [body](./kibana-plugin-core-server.kibanarequest.body.md) | | <code>Body</code> | |
2727
| [events](./kibana-plugin-core-server.kibanarequest.events.md) | | <code>KibanaRequestEvents</code> | Request events [KibanaRequestEvents](./kibana-plugin-core-server.kibanarequestevents.md) |
2828
| [headers](./kibana-plugin-core-server.kibanarequest.headers.md) | | <code>Headers</code> | Readonly copy of incoming request headers. |
29+
| [id](./kibana-plugin-core-server.kibanarequest.id.md) | | <code>string</code> | A identifier to identify this request. |
2930
| [isSystemRequest](./kibana-plugin-core-server.kibanarequest.issystemrequest.md) | | <code>boolean</code> | Whether or not the request is a "system request" rather than an application-level request. Can be set on the client using the <code>HttpFetchOptions#asSystemRequest</code> option. |
3031
| [params](./kibana-plugin-core-server.kibanarequest.params.md) | | <code>Params</code> | |
3132
| [query](./kibana-plugin-core-server.kibanarequest.query.md) | | <code>Query</code> | |

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
```

0 commit comments

Comments
 (0)