Skip to content

Commit c1a94bd

Browse files
committed
Merge branch 'scheduled-reports' of github.com:elastic/kibana into scheduled-reports-find
2 parents dac0556 + eb2cb21 commit c1a94bd

File tree

1,661 files changed

+39616
-10920
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,661 files changed

+39616
-10920
lines changed

.buildkite/scripts/steps/test/jest_parallel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ while read -r config; do
6060
# --trace-warnings to debug
6161
# Node.js process-warning detected:
6262
# Warning: Closing file descriptor 24 on garbage collection
63-
cmd="NODE_OPTIONS=\"--max-old-space-size=12288 --trace-warnings"
63+
cmd="NODE_OPTIONS=\"--max-old-space-size=12288 --trace-warnings --no-experimental-require-module"
6464

6565
if [ "${KBN_ENABLE_FIPS:-}" == "true" ]; then
6666
cmd=$cmd" --enable-fips --openssl-config=$HOME/nodejs.cnf"

.github/CODEOWNERS

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,9 +581,11 @@ src/platform/packages/shared/react/kibana_context/styled @elastic/appex-sharedux
581581
src/platform/packages/shared/react/kibana_context/theme @elastic/appex-sharedux
582582
src/platform/packages/shared/react/kibana_mount @elastic/appex-sharedux
583583
src/platform/packages/shared/response-ops/alerts-apis @elastic/response-ops
584+
src/platform/packages/shared/response-ops/alerts-delete @elastic/response-ops
584585
src/platform/packages/shared/response-ops/alerts-fields-browser @elastic/response-ops
585586
src/platform/packages/shared/response-ops/alerts-filters-form @elastic/response-ops
586587
src/platform/packages/shared/response-ops/alerts-table @elastic/response-ops
588+
src/platform/packages/shared/response-ops/recurring-schedule-form @elastic/response-ops
587589
src/platform/packages/shared/response-ops/rule_form @elastic/response-ops
588590
src/platform/packages/shared/response-ops/rule_params @elastic/response-ops
589591
src/platform/packages/shared/response-ops/rules-apis @elastic/response-ops
@@ -827,6 +829,7 @@ x-pack/platform/packages/shared/ai-infra/inference-common @elastic/appex-ai-infr
827829
x-pack/platform/packages/shared/ai-infra/inference-langchain @elastic/appex-ai-infra
828830
x-pack/platform/packages/shared/ai-infra/product-doc-common @elastic/appex-ai-infra
829831
x-pack/platform/packages/shared/alerting-rule-utils @elastic/obs-ux-management-team
832+
x-pack/platform/packages/shared/file-upload @elastic/ml-ui
830833
x-pack/platform/packages/shared/file-upload-common @elastic/ml-ui
831834
x-pack/platform/packages/shared/index-lifecycle-management/index_lifecycle_management_common_shared @elastic/kibana-management
832835
x-pack/platform/packages/shared/index-management/index_management_shared_types @elastic/kibana-management
@@ -842,6 +845,7 @@ x-pack/platform/packages/shared/kbn-entities-schema @elastic/obs-entities
842845
x-pack/platform/packages/shared/kbn-event-stacktrace @elastic/obs-ux-infra_services-team @elastic/obs-ux-logs-team
843846
x-pack/platform/packages/shared/kbn-inference-cli @elastic/appex-ai-infra
844847
x-pack/platform/packages/shared/kbn-inference-endpoint-ui-common @elastic/appex-ai-infra
848+
x-pack/platform/packages/shared/kbn-inference-tracing @elastic/appex-ai-infra
845849
x-pack/platform/packages/shared/kbn-key-value-metadata-table @elastic/obs-ux-infra_services-team @elastic/obs-ux-logs-team
846850
x-pack/platform/packages/shared/kbn-kibana-api-cli @elastic/appex-ai-infra
847851
x-pack/platform/packages/shared/kbn-langchain @elastic/security-generative-ai
@@ -1081,7 +1085,7 @@ x-pack/test
10811085
x-pack/test_serverless
10821086
x-pack/test/alerting_api_integration/common/plugins/aad @elastic/response-ops
10831087
x-pack/test/alerting_api_integration/common/plugins/actions_simulators @elastic/response-ops
1084-
x-pack/test/alerting_api_integration/common/plugins/alerts @elastic/response-ops
1088+
x-pack/test/alerting_api_integration/common/plugins/alerting @elastic/response-ops
10851089
x-pack/test/alerting_api_integration/common/plugins/alerts_restricted @elastic/response-ops
10861090
x-pack/test/alerting_api_integration/common/plugins/task_manager_fixture @elastic/response-ops
10871091
x-pack/test/alerting_api_integration/packages/helpers @elastic/response-ops
@@ -2657,7 +2661,7 @@ x-pack/solutions/security/plugins/security_solution/public/common/components/ses
26572661
x-pack/solutions/security/plugins/security_solution/public/cloud_security_posture @elastic/kibana-cloud-security-posture
26582662
x-pack/solutions/security/plugins/security_solution/public/kubernetes @elastic/kibana-cloud-security-posture
26592663
x-pack/solutions/security/plugins/security_solution/server/lib/asset_inventory @elastic/kibana-cloud-security-posture
2660-
x-pack/solutions/security/plugins/security_solution/public/flyout/entity_details/universal_right @elastic/kibana-cloud-security-posture
2664+
x-pack/solutions/security/plugins/security_solution/public/flyout/entity_details/generic_right @elastic/kibana-cloud-security-posture
26612665
/x-pack/solutions/security/plugins/security_solution/public/flyout/csp_details @elastic/kibana-cloud-security-posture
26622666

26632667
## Fleet plugin (co-owned with Fleet team)

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
analyze:
99
name: Analyze
10-
runs-on: ubuntu-latest
10+
runs-on: kibana
1111
permissions:
1212
actions: read
1313
contents: read

.github/workflows/evaluate-dependency-health.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
github.actor != 'elastic-renovate-prod[bot]'
1818
steps:
1919
- name: Checkout kibana-operations
20-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
20+
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
2121
with:
2222
repository: 'elastic/kibana-operations'
2323
ref: main

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.18.2
1+
20.19.2

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.18.2
1+
20.19.2

WORKSPACE.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ load("@build_bazel_rules_nodejs//:index.bzl", "node_repositories", "yarn_install
2222
# Setup the Node.js toolchain for the architectures we want to support
2323
node_repositories(
2424
node_repositories = {
25-
"20.18.2-darwin_amd64": ("node-v20.18.2-darwin-x64.tar.gz", "node-v20.18.2-darwin-x64", "00a16bb0a82a2ad5d00d66b466ae1afa678482283747c27e9bce96668f334744"),
26-
"20.18.2-darwin_arm64": ("node-v20.18.2-darwin-arm64.tar.gz", "node-v20.18.2-darwin-arm64", "fa76d5b5340f14070ebaa88ef8faa28c1e9271502725e830cb52f0cf5b6493de"),
27-
"20.18.2-linux_arm64": ("node-v20.18.2-linux-arm64.tar.xz", "node-v20.18.2-linux-arm64", "1b4b1745ef7b6d342ddf998352438cfc61dbfcdf0895c9db7e9f1d8a427815d2"),
28-
"20.18.2-linux_amd64": ("node-v20.18.2-linux-x64.tar.xz", "node-v20.18.2-linux-x64", "1a6e1fbd768437e130eac1a54c5535736d6992df700c09a6ce58f22040d6a34c"),
29-
"20.18.2-windows_amd64": ("node-v20.18.2-win-x64.zip", "node-v20.18.2-win-x64", "ed790b94570518a7dce67b62485e16bc4bffecee4ec3b6df35ed220ae91117a5"),
25+
"20.19.2-darwin_amd64": ("node-v20.19.2-darwin-x64.tar.gz", "node-v20.19.2-darwin-x64", "29f91e05992a7d81498ab1d04938a184313cb4aaccab95bb4636e30e6424eae3"),
26+
"20.19.2-darwin_arm64": ("node-v20.19.2-darwin-arm64.tar.gz", "node-v20.19.2-darwin-arm64", "5f96c725cd2be1151f08b25c05bf5a21866a2dc7db3803d351a6ea19fcc53665"),
27+
"20.19.2-linux_arm64": ("node-v20.19.2-linux-arm64.tar.xz", "node-v20.19.2-linux-arm64", "7886dc7e151d2dda49b0837bb93dca233a9d3b7f5005ebbcbff9bd1a5ba4981c"),
28+
"20.19.2-linux_amd64": ("node-v20.19.2-linux-x64.tar.xz", "node-v20.19.2-linux-x64", "3a3b6ccb3d687b60cc8a142e179d7a9cc6a04c7374ba0f782363a26176d6ea74"),
29+
"20.19.2-windows_amd64": ("node-v20.19.2-win-x64.zip", "node-v20.19.2-win-x64", "8735c9940b97548f6d9d4dda7cf5fd4471c062f15f44c2b890c9b0b430460feb"),
3030
},
31-
node_version = "20.18.2",
31+
node_version = "20.19.2",
3232
node_urls = [
3333
"https://us-central1-elastic-kibana-184716.cloudfunctions.net/kibana-ci-proxy-cache/dist/v{version}/{filename}",
3434
],

api_docs/actions.devdocs.json

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,20 @@
650650
"deprecated": false,
651651
"trackAdoption": false,
652652
"children": [
653+
{
654+
"parentPluginId": "actions",
655+
"id": "def-server.SubActionConnector.configurationUtilities",
656+
"type": "Object",
657+
"tags": [],
658+
"label": "configurationUtilities",
659+
"description": [],
660+
"signature": [
661+
"ActionsConfigurationUtilities"
662+
],
663+
"path": "x-pack/platform/plugins/shared/actions/server/sub_action_framework/sub_action_connector.ts",
664+
"deprecated": false,
665+
"trackAdoption": false
666+
},
653667
{
654668
"parentPluginId": "actions",
655669
"id": "def-server.SubActionConnector.kibanaRequest",
@@ -3450,6 +3464,104 @@
34503464
}
34513465
],
34523466
"initialIsOpen": false
3467+
},
3468+
{
3469+
"parentPluginId": "actions",
3470+
"id": "def-server.SSLSettings",
3471+
"type": "Interface",
3472+
"tags": [],
3473+
"label": "SSLSettings",
3474+
"description": [],
3475+
"path": "x-pack/platform/plugins/shared/actions/server/types.ts",
3476+
"deprecated": false,
3477+
"trackAdoption": false,
3478+
"children": [
3479+
{
3480+
"parentPluginId": "actions",
3481+
"id": "def-server.SSLSettings.verificationMode",
3482+
"type": "CompoundType",
3483+
"tags": [],
3484+
"label": "verificationMode",
3485+
"description": [],
3486+
"signature": [
3487+
"\"none\" | \"certificate\" | \"full\" | undefined"
3488+
],
3489+
"path": "x-pack/platform/plugins/shared/actions/server/types.ts",
3490+
"deprecated": false,
3491+
"trackAdoption": false
3492+
},
3493+
{
3494+
"parentPluginId": "actions",
3495+
"id": "def-server.SSLSettings.pfx",
3496+
"type": "Object",
3497+
"tags": [],
3498+
"label": "pfx",
3499+
"description": [],
3500+
"signature": [
3501+
"Buffer | undefined"
3502+
],
3503+
"path": "x-pack/platform/plugins/shared/actions/server/types.ts",
3504+
"deprecated": false,
3505+
"trackAdoption": false
3506+
},
3507+
{
3508+
"parentPluginId": "actions",
3509+
"id": "def-server.SSLSettings.cert",
3510+
"type": "Object",
3511+
"tags": [],
3512+
"label": "cert",
3513+
"description": [],
3514+
"signature": [
3515+
"Buffer | undefined"
3516+
],
3517+
"path": "x-pack/platform/plugins/shared/actions/server/types.ts",
3518+
"deprecated": false,
3519+
"trackAdoption": false
3520+
},
3521+
{
3522+
"parentPluginId": "actions",
3523+
"id": "def-server.SSLSettings.key",
3524+
"type": "Object",
3525+
"tags": [],
3526+
"label": "key",
3527+
"description": [],
3528+
"signature": [
3529+
"Buffer | undefined"
3530+
],
3531+
"path": "x-pack/platform/plugins/shared/actions/server/types.ts",
3532+
"deprecated": false,
3533+
"trackAdoption": false
3534+
},
3535+
{
3536+
"parentPluginId": "actions",
3537+
"id": "def-server.SSLSettings.passphrase",
3538+
"type": "string",
3539+
"tags": [],
3540+
"label": "passphrase",
3541+
"description": [],
3542+
"signature": [
3543+
"string | undefined"
3544+
],
3545+
"path": "x-pack/platform/plugins/shared/actions/server/types.ts",
3546+
"deprecated": false,
3547+
"trackAdoption": false
3548+
},
3549+
{
3550+
"parentPluginId": "actions",
3551+
"id": "def-server.SSLSettings.ca",
3552+
"type": "Object",
3553+
"tags": [],
3554+
"label": "ca",
3555+
"description": [],
3556+
"signature": [
3557+
"Buffer | undefined"
3558+
],
3559+
"path": "x-pack/platform/plugins/shared/actions/server/types.ts",
3560+
"deprecated": false,
3561+
"trackAdoption": false
3562+
}
3563+
],
3564+
"initialIsOpen": false
34533565
}
34543566
],
34553567
"enums": [

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: 2025-06-05
11+
date: 2025-06-10
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions']
1313
---
1414
import actionsObj from './actions.devdocs.json';
@@ -21,7 +21,7 @@ Contact [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-o
2121

2222
| Public API count | Any count | Items lacking comments | Missing exports |
2323
|-------------------|-----------|------------------------|-----------------|
24-
| 332 | 0 | 326 | 37 |
24+
| 340 | 0 | 334 | 37 |
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: 2025-06-05
11+
date: 2025-06-10
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings']
1313
---
1414
import advancedSettingsObj from './advanced_settings.devdocs.json';

0 commit comments

Comments
 (0)