Skip to content

Commit 0f03cc8

Browse files
authored
Merge branch 'elastic:main' into 583_streamlang_add_timezone_and_locale_params
2 parents b44e54c + e5c7eef commit 0f03cc8

File tree

1,289 files changed

+7124
-8978
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,289 files changed

+7124
-8978
lines changed

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

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ trap "shutdown" EXIT
7575

7676
ecctl deployment create --track --output json --file "$DEPLOYMENT_SPEC" > "$LOGS"
7777

78-
CLOUD_DEPLOYMENT_USERNAME=$(jq -r --slurp '.[]|select(.resources).resources[] | select(.credentials).credentials.username' "$LOGS")
79-
CLOUD_DEPLOYMENT_PASSWORD=$(jq -r --slurp '.[]|select(.resources).resources[] | select(.credentials).credentials.password' "$LOGS")
8078
CLOUD_DEPLOYMENT_ID=$(jq -r --slurp '.[0].id' "$LOGS")
8179
CLOUD_DEPLOYMENT_STATUS_MESSAGES=$(jq --slurp '[.[]|select(.resources == null)]' "$LOGS")
8280

@@ -85,29 +83,3 @@ export CLOUD_DEPLOYMENT_ELASTICSEARCH_URL=$(ecctl deployment show "$CLOUD_DEPLOY
8583

8684
echo "Kibana: $CLOUD_DEPLOYMENT_KIBANA_URL"
8785
echo "ES: $CLOUD_DEPLOYMENT_ELASTICSEARCH_URL"
88-
89-
# Disable ansi color output for Node.js as we want to get plain values when executing node as a script runner below
90-
export FORCE_COLOR=0
91-
92-
export TEST_KIBANA_PROTOCOL=$(node -e "console.log(new URL(process.env.CLOUD_DEPLOYMENT_KIBANA_URL).protocol.replace(':', ''))")
93-
export TEST_KIBANA_HOSTNAME=$(node -e "console.log(new URL(process.env.CLOUD_DEPLOYMENT_KIBANA_URL).hostname)")
94-
export TEST_KIBANA_PORT=$(node -e "console.log(new URL(process.env.CLOUD_DEPLOYMENT_KIBANA_URL).port || 443)")
95-
export TEST_KIBANA_USERNAME="$CLOUD_DEPLOYMENT_USERNAME"
96-
export TEST_KIBANA_PASSWORD="$CLOUD_DEPLOYMENT_PASSWORD"
97-
98-
export TEST_ES_PROTOCOL=$(node -e "console.log(new URL(process.env.CLOUD_DEPLOYMENT_ELASTICSEARCH_URL).protocol.replace(':', ''))")
99-
export TEST_ES_HOSTNAME=$(node -e "console.log(new URL(process.env.CLOUD_DEPLOYMENT_ELASTICSEARCH_URL).hostname)")
100-
export TEST_ES_PORT=$(node -e "console.log(new URL(process.env.CLOUD_DEPLOYMENT_ELASTICSEARCH_URL).port || 443)")
101-
export TEST_ES_USERNAME="$CLOUD_DEPLOYMENT_USERNAME"
102-
export TEST_ES_PASSWORD="$CLOUD_DEPLOYMENT_PASSWORD"
103-
104-
# Enabling ansi color output for Node.js again as we don't need to use it as a script interpreter anymore
105-
export FORCE_COLOR=1
106-
107-
export TEST_BROWSER_HEADLESS=1
108-
109-
# Error: attempted to use the "es" service to fetch Elasticsearch version info but the request failed: ConnectionError: self signed certificate in certificate chain
110-
export NODE_TLS_REJECT_UNAUTHORIZED=0
111-
112-
echo "--- FTR - Reporting"
113-
node --no-warnings scripts/functional_test_runner.js --config x-pack/platform/test/functional/apps/visualize/config.ts --include-tag=smoke --quiet

.github/CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ examples/preboot_example @elastic/kibana-security @elastic/kibana-core
3232
examples/resizable_layout_examples @elastic/kibana-data-discovery
3333
examples/response_stream @elastic/ml-ui
3434
examples/routing_example @elastic/kibana-core
35+
examples/saved_objects @elastic/kibana-core
3536
examples/screenshot_mode_example @elastic/response-ops
3637
examples/search_examples @elastic/kibana-data-discovery
3738
examples/share_examples @elastic/appex-sharedux
@@ -359,6 +360,7 @@ src/platform/packages/private/kbn-language-documentation @elastic/kibana-esql
359360
src/platform/packages/private/kbn-lens-formula-docs @elastic/kibana-visualizations
360361
src/platform/packages/private/kbn-managed-content-badge @elastic/kibana-visualizations
361362
src/platform/packages/private/kbn-mapbox-gl @elastic/kibana-presentation
363+
src/platform/packages/private/kbn-migrator-test-kit @elastic/kibana-core
362364
src/platform/packages/private/kbn-mock-idp-utils @elastic/kibana-security
363365
src/platform/packages/private/kbn-node-libs-browser-webpack-plugin @elastic/kibana-operations
364366
src/platform/packages/private/kbn-optimizer-webpack-helpers @elastic/kibana-operations
@@ -657,7 +659,6 @@ src/platform/packages/shared/shared-ux/button/exit_full_screen @elastic/appex-sh
657659
src/platform/packages/shared/shared-ux/card/no_data/impl @elastic/appex-sharedux
658660
src/platform/packages/shared/shared-ux/card/no_data/mocks @elastic/appex-sharedux
659661
src/platform/packages/shared/shared-ux/card/no_data/types @elastic/appex-sharedux
660-
src/platform/packages/shared/shared-ux/chrome/navigation @elastic/appex-sharedux
661662
src/platform/packages/shared/shared-ux/code_editor/impl @elastic/appex-sharedux
662663
src/platform/packages/shared/shared-ux/code_editor/mocks @elastic/appex-sharedux
663664
src/platform/packages/shared/shared-ux/error_boundary @elastic/appex-sharedux

api_docs/actions.mdx

Lines changed: 1 addition & 1 deletion
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-11-03
11+
date: 2025-11-04
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions']
1313
---
1414
import actionsObj from './actions.devdocs.json';

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-11-03
11+
date: 2025-11-04
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings']
1313
---
1414
import advancedSettingsObj from './advanced_settings.devdocs.json';

api_docs/ai_assistant_management_selection.mdx

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

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: 2025-11-03
11+
date: 2025-11-04
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: 2025-11-03
11+
date: 2025-11-04
1212
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm']
1313
---
1414
import apmObj from './apm.devdocs.json';

api_docs/apm_data_access.mdx

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

api_docs/apm_sources_access.mdx

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

0 commit comments

Comments
 (0)