Skip to content

Commit 76136cd

Browse files
authored
Merge branch 'main' into ad-hoc-management-screen-2
2 parents b16c472 + eb89401 commit 76136cd

File tree

573 files changed

+5709
-2897
lines changed

Some content is hidden

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

573 files changed

+5709
-2897
lines changed

.buildkite/scripts/steps/artifacts/cloud.sh

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,26 @@ set -euo pipefail
77
source "$(dirname "$0")/../../common/util.sh"
88
source .buildkite/scripts/steps/artifacts/env.sh
99

10-
echo "--- Build and publish Cloud image"
10+
echo "--- Push docker image"
1111
mkdir -p target
1212

13-
download_artifact "kibana-$FULL_VERSION-linux-x86_64.tar.gz" ./target --build "${KIBANA_BUILD_ID:-$BUILDKITE_BUILD_ID}"
13+
download_artifact "kibana-cloud-$FULL_VERSION-docker-image.tar.gz" ./target --build "${KIBANA_BUILD_ID:-$BUILDKITE_BUILD_ID}"
14+
docker load < "target/kibana-cloud-$FULL_VERSION-docker-image.tar.gz"
1415

1516
TAG="$FULL_VERSION-$GIT_COMMIT"
17+
KIBANA_BASE_IMAGE="docker.elastic.co/kibana-ci/kibana-cloud:$FULL_VERSION"
1618
KIBANA_TEST_IMAGE="docker.elastic.co/kibana-ci/kibana-cloud:$TAG"
1719

20+
# docker.elastic.co/kibana-ci/kibana-cloud:$FULL_VERSION -> :$FULL_VERSION-$GIT_COMMIT
21+
docker tag "$KIBANA_BASE_IMAGE" "$KIBANA_TEST_IMAGE"
22+
1823
echo "$KIBANA_DOCKER_PASSWORD" | docker login -u "$KIBANA_DOCKER_USERNAME" --password-stdin docker.elastic.co
1924
trap 'docker logout docker.elastic.co' EXIT
2025

2126
if docker manifest inspect $KIBANA_TEST_IMAGE &> /dev/null; then
22-
echo "Distribution already exists, skipping build"
27+
echo "Cloud image already exists, skipping docker push"
2328
else
24-
node scripts/build \
25-
--skip-initialize \
26-
--skip-generic-folders \
27-
--skip-platform-folders \
28-
--skip-archives \
29-
--docker-images \
30-
--docker-tag-qualifier="$GIT_COMMIT" \
31-
--docker-push \
32-
--skip-docker-ubi \
33-
--skip-docker-ubuntu \
34-
--skip-docker-contexts
29+
docker image push "$KIBANA_TEST_IMAGE"
3530
fi
3631

3732
docker logout docker.elastic.co

api_docs/actions.devdocs.json

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -858,6 +858,41 @@
858858
],
859859
"returnComment": [],
860860
"initialIsOpen": false
861+
},
862+
{
863+
"parentPluginId": "actions",
864+
"id": "def-server.urlAllowListValidator",
865+
"type": "Function",
866+
"tags": [],
867+
"label": "urlAllowListValidator",
868+
"description": [],
869+
"signature": [
870+
"<T>(urlKey: string) => (obj: T, validatorServices: ",
871+
"ValidatorServices",
872+
") => void"
873+
],
874+
"path": "x-pack/plugins/actions/server/sub_action_framework/helpers/validators.ts",
875+
"deprecated": false,
876+
"trackAdoption": false,
877+
"children": [
878+
{
879+
"parentPluginId": "actions",
880+
"id": "def-server.urlAllowListValidator.$1",
881+
"type": "string",
882+
"tags": [],
883+
"label": "urlKey",
884+
"description": [],
885+
"signature": [
886+
"string"
887+
],
888+
"path": "x-pack/plugins/actions/server/sub_action_framework/helpers/validators.ts",
889+
"deprecated": false,
890+
"trackAdoption": false,
891+
"isRequired": true
892+
}
893+
],
894+
"returnComment": [],
895+
"initialIsOpen": false
861896
}
862897
],
863898
"interfaces": [
@@ -1191,7 +1226,13 @@
11911226
"label": "validate",
11921227
"description": [],
11931228
"signature": [
1194-
"{ params?: ValidatorType<Params> | undefined; config?: ValidatorType<Config> | undefined; secrets?: ValidatorType<Secrets> | undefined; connector?: ((config: Config, secrets: Secrets) => string | null) | undefined; } | undefined"
1229+
"{ params?: ",
1230+
"ValidatorType",
1231+
"<Params> | undefined; config?: ",
1232+
"ValidatorType",
1233+
"<Config> | undefined; secrets?: ",
1234+
"ValidatorType",
1235+
"<Secrets> | undefined; connector?: ((config: Config, secrets: Secrets) => string | null) | undefined; } | undefined"
11951236
],
11961237
"path": "x-pack/plugins/actions/server/types.ts",
11971238
"deprecated": false,

api_docs/actions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/actions
88
title: "actions"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the actions plugin
11-
date: 2022-10-04
11+
date: 2022-10-05
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions']
1313
---
1414
import actionsObj from './actions.devdocs.json';
@@ -21,7 +21,7 @@ Contact [Response Ops](https://github.com/orgs/elastic/teams/response-ops) for q
2121

2222
| Public API count | Any count | Items lacking comments | Missing exports |
2323
|-------------------|-----------|------------------------|-----------------|
24-
| 214 | 0 | 209 | 19 |
24+
| 216 | 0 | 211 | 21 |
2525

2626
## Client
2727

api_docs/advanced_settings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/advancedSettings
88
title: "advancedSettings"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the advancedSettings plugin
11-
date: 2022-10-04
11+
date: 2022-10-05
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings']
1313
---
1414
import advancedSettingsObj from './advanced_settings.devdocs.json';

api_docs/aiops.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiops
88
title: "aiops"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the aiops plugin
11-
date: 2022-10-04
11+
date: 2022-10-05
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops']
1313
---
1414
import aiopsObj from './aiops.devdocs.json';

api_docs/alerting.devdocs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2782,7 +2782,7 @@
27822782
"section": "def-common.RuleTypeParams",
27832783
"text": "RuleTypeParams"
27842784
},
2785-
" = never>({ id, includeLegacyId, }: { id: string; includeLegacyId?: boolean | undefined; }) => Promise<",
2785+
" = never>({ id, includeLegacyId, includeSnoozeData, }: { id: string; includeLegacyId?: boolean | undefined; includeSnoozeData?: boolean | undefined; }) => Promise<",
27862786
{
27872787
"pluginId": "alerting",
27882788
"scope": "common",

api_docs/alerting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/alerting
88
title: "alerting"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the alerting plugin
11-
date: 2022-10-04
11+
date: 2022-10-05
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting']
1313
---
1414
import alertingObj from './alerting.devdocs.json';

api_docs/apm.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/apm
88
title: "apm"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the apm plugin
11-
date: 2022-10-04
11+
date: 2022-10-05
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm']
1313
---
1414
import apmObj from './apm.devdocs.json';

api_docs/banners.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/banners
88
title: "banners"
99
image: https://source.unsplash.com/400x175/?github
1010
description: API docs for the banners plugin
11-
date: 2022-10-04
11+
date: 2022-10-05
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'banners']
1313
---
1414
import bannersObj from './banners.devdocs.json';

api_docs/bfetch.devdocs.json

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,9 @@
370370
"IRouter",
371371
"<",
372372
"RequestHandlerContext",
373-
"> | undefined) => void"
373+
"> | undefined, options?: ",
374+
"RouteConfigOptions",
375+
"<\"get\" | \"post\" | \"put\" | \"delete\"> | undefined) => void"
374376
],
375377
"path": "src/plugins/bfetch/server/plugin.ts",
376378
"deprecated": false,
@@ -450,6 +452,22 @@
450452
"deprecated": false,
451453
"trackAdoption": false,
452454
"isRequired": false
455+
},
456+
{
457+
"parentPluginId": "bfetch",
458+
"id": "def-server.BfetchServerSetup.addStreamingResponseRoute.$5",
459+
"type": "Object",
460+
"tags": [],
461+
"label": "options",
462+
"description": [],
463+
"signature": [
464+
"RouteConfigOptions",
465+
"<\"get\" | \"post\" | \"put\" | \"delete\"> | undefined"
466+
],
467+
"path": "src/plugins/bfetch/server/plugin.ts",
468+
"deprecated": false,
469+
"trackAdoption": false,
470+
"isRequired": false
453471
}
454472
],
455473
"returnComment": []

0 commit comments

Comments
 (0)