Skip to content

Commit 57d5b4f

Browse files
committed
Merge branch 'master' into alerting/view-in-app
* master: (154 commits) Add an optional authentication mode for HTTP resources (elastic#58589) Implement embeddable drilldown menu options (elastic#59232) [Alerting] "Create alert" graph visualization design improvements (elastic#59399) Alerting update route throttle property is missing (elastic#59580) [SIEM] Adds 'Load prebuilt rules' Cypress test (elastic#59529) Show error if field is not found during filter rendering (elastic#59298) Navigate back to discover app during test, because the saved search from the preceding test has major performance problems when used with this test (elastic#59571) Check for alert dialog when doing a force logout (elastic#59329) ensure fs deletes are not cwd dependent (elastic#59570) Empty message for APM service map (elastic#59518) [Drilldowns] <ActionWizard/> Component (elastic#59032) [Reporting] Improve the page exit error messages (elastic#59351) Ensure logged out starting state for tests that need it (elastic#59322) Hide input value from kbn-config-schema error messages (elastic#58843) [ML] Transforms: Migrate client plugin to NP. (elastic#59443) [ML] Disable failing functional tests [SIEM] Update Timeline to use the latest euiFlyoutBody style (elastic#59524) Temporarily remove the project mappings for PR labels (elastic#59493) [Alerting] replace index threshold graph usage of watcher APIs with new API (elastic#59385) [ML] Show view series link in anomalies table for machine_learning_user role (elastic#59549) ...
2 parents 826faf6 + 5c43653 commit 57d5b4f

File tree

2,212 files changed

+46776
-31569
lines changed

Some content is hidden

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

2,212 files changed

+46776
-31569
lines changed

.ci/Jenkinsfile_visual_baseline

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/bin/groovy
2+
3+
library 'kibana-pipeline-library'
4+
kibanaLibrary.load()
5+
6+
kibanaPipeline(timeoutMinutes: 120) {
7+
catchError {
8+
parallel([
9+
'oss-visualRegression': {
10+
workers.ci(name: 'oss-visualRegression', label: 'linux && immutable', ramDisk: false) {
11+
kibanaPipeline.functionalTestProcess('oss-visualRegression', './test/scripts/jenkins_visual_regression.sh')(1)
12+
}
13+
},
14+
'xpack-visualRegression': {
15+
workers.ci(name: 'xpack-visualRegression', label: 'linux && immutable', ramDisk: false) {
16+
kibanaPipeline.functionalTestProcess('xpack-visualRegression', './test/scripts/jenkins_xpack_visual_regression.sh')(1)
17+
}
18+
},
19+
])
20+
}
21+
22+
kibanaPipeline.sendMail()
23+
}

.eslintrc.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,6 @@ module.exports = {
7676
'react-hooks/exhaustive-deps': 'off',
7777
},
7878
},
79-
{
80-
files: ['src/legacy/core_plugins/vis_type_vislib/**/*.{js,ts,tsx}'],
81-
rules: {
82-
'react-hooks/exhaustive-deps': 'off',
83-
},
84-
},
8579
{
8680
files: [
8781
'src/legacy/core_plugins/vis_default_editor/public/components/controls/**/*.{ts,tsx}',

.github/CODEOWNERS

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
# App
66
/x-pack/legacy/plugins/lens/ @elastic/kibana-app
77
/x-pack/legacy/plugins/graph/ @elastic/kibana-app
8-
/src/plugins/share/ @elastic/kibana-app
98
/src/legacy/server/url_shortening/ @elastic/kibana-app
109
/src/legacy/server/sample_data/ @elastic/kibana-app
1110
/src/legacy/core_plugins/kibana/public/dashboard/ @elastic/kibana-app
@@ -27,6 +26,7 @@
2726
/src/plugins/kibana_legacy/ @elastic/kibana-app
2827
/src/plugins/timelion/ @elastic/kibana-app
2928
/src/plugins/dev_tools/ @elastic/kibana-app
29+
/src/plugins/dashboard_embeddable_container/ @elastic/kibana-app
3030

3131
# App Architecture
3232
/packages/kbn-interpreter/ @elastic/kibana-app-arch
@@ -42,7 +42,6 @@
4242
/src/legacy/core_plugins/visualizations/ @elastic/kibana-app-arch
4343
/src/legacy/server/index_patterns/ @elastic/kibana-app-arch
4444
/src/plugins/bfetch/ @elastic/kibana-app-arch
45-
/src/plugins/dashboard_embeddable_container/ @elastic/kibana-app-arch
4645
/src/plugins/data/ @elastic/kibana-app-arch
4746
/src/plugins/embeddable/ @elastic/kibana-app-arch
4847
/src/plugins/expressions/ @elastic/kibana-app-arch
@@ -53,6 +52,9 @@
5352
/src/plugins/navigation/ @elastic/kibana-app-arch
5453
/src/plugins/ui_actions/ @elastic/kibana-app-arch
5554
/src/plugins/visualizations/ @elastic/kibana-app-arch
55+
/src/plugins/share/ @elastic/kibana-app-arch
56+
/examples/url_generators_examples/ @elastic/kibana-app-arch
57+
/examples/url_generators_explorer/ @elastic/kibana-app-arch
5658
/x-pack/plugins/advanced_ui_actions/ @elastic/kibana-app-arch
5759
/x-pack/plugins/drilldowns/ @elastic/kibana-app-arch
5860

@@ -80,12 +82,14 @@
8082

8183
# Machine Learning
8284
/x-pack/legacy/plugins/ml/ @elastic/ml-ui
85+
/x-pack/plugins/ml/ @elastic/ml-ui
8386
/x-pack/test/functional/apps/machine_learning/ @elastic/ml-ui
8487
/x-pack/test/functional/services/machine_learning/ @elastic/ml-ui
8588
/x-pack/test/functional/services/ml.ts @elastic/ml-ui
8689
# ML team owns the transform plugin, ES team added here for visibility
8790
# because the plugin lives in Kibana's Elasticsearch management section.
8891
/x-pack/legacy/plugins/transform/ @elastic/ml-ui @elastic/es-ui
92+
/x-pack/plugins/transform/ @elastic/ml-ui @elastic/es-ui
8993
/x-pack/test/functional/apps/transform/ @elastic/ml-ui
9094
/x-pack/test/functional/services/transform_ui/ @elastic/ml-ui
9195
/x-pack/test/functional/services/transform.ts @elastic/ml-ui
@@ -128,6 +132,7 @@
128132
/src/legacy/server/logging/ @elastic/kibana-platform
129133
/src/legacy/server/saved_objects/ @elastic/kibana-platform
130134
/src/legacy/server/status/ @elastic/kibana-platform
135+
/src/plugins/status_page/ @elastic/kibana-platform
131136
/src/dev/run_check_core_api_changes.ts @elastic/kibana-platform
132137

133138
# Security

.github/workflows/pr-project-assigner.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ jobs:
1313
with:
1414
issue-mappings: |
1515
[
16-
{ "label": "Team:AppArch", "projectName": "kibana-app-arch", "columnId": 6173897 },
17-
{ "label": "Feature:Lens", "projectName": "Lens", "columnId": 6219362 },
18-
{ "label": "Team:Canvas", "projectName": "canvas", "columnId": 6187580 }
1916
]
2017
ghToken: ${{ secrets.PROJECT_ASSIGNER_TOKEN }}
18+
19+
# { "label": "Team:AppArch", "projectName": "kibana-app-arch", "columnId": 6173897 },
20+
# { "label": "Feature:Lens", "projectName": "Lens", "columnId": 6219362 },
21+
# { "label": "Team:Canvas", "projectName": "canvas", "columnId": 6187580 }

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,3 @@ package-lock.json
4444
*.sublime-*
4545
npm-debug.log*
4646
.tern-project
47-
x-pack/legacy/plugins/apm/tsconfig.json
48-
apm.tsconfig.json

Jenkinsfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ kibanaPipeline(timeoutMinutes: 135) {
4040
'xpack-ciGroup9': kibanaPipeline.xpackCiGroupProcess(9),
4141
'xpack-ciGroup10': kibanaPipeline.xpackCiGroupProcess(10),
4242
'xpack-accessibility': kibanaPipeline.functionalTestProcess('xpack-accessibility', './test/scripts/jenkins_xpack_accessibility.sh'),
43+
'xpack-siemCypress': kibanaPipeline.functionalTestProcess('xpack-siemCypress', './test/scripts/jenkins_siem_cypress.sh'),
4344
// 'xpack-visualRegression': kibanaPipeline.functionalTestProcess('xpack-visualRegression', './test/scripts/jenkins_xpack_visual_regression.sh'),
4445
]),
4546
])
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-server](./kibana-plugin-server.md) &gt; [AuthNotHandled](./kibana-plugin-server.authnothandled.md)
4+
5+
## AuthNotHandled interface
6+
7+
8+
<b>Signature:</b>
9+
10+
```typescript
11+
export interface AuthNotHandled
12+
```
13+
14+
## Properties
15+
16+
| Property | Type | Description |
17+
| --- | --- | --- |
18+
| [type](./kibana-plugin-server.authnothandled.type.md) | <code>AuthResultType.notHandled</code> | |
19+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-server](./kibana-plugin-server.md) &gt; [AuthNotHandled](./kibana-plugin-server.authnothandled.md) &gt; [type](./kibana-plugin-server.authnothandled.type.md)
4+
5+
## AuthNotHandled.type property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
type: AuthResultType.notHandled;
11+
```
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-server](./kibana-plugin-server.md) &gt; [AuthRedirected](./kibana-plugin-server.authredirected.md)
4+
5+
## AuthRedirected interface
6+
7+
8+
<b>Signature:</b>
9+
10+
```typescript
11+
export interface AuthRedirected extends AuthRedirectedParams
12+
```
13+
14+
## Properties
15+
16+
| Property | Type | Description |
17+
| --- | --- | --- |
18+
| [type](./kibana-plugin-server.authredirected.type.md) | <code>AuthResultType.redirected</code> | |
19+
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-server](./kibana-plugin-server.md) &gt; [AuthRedirected](./kibana-plugin-server.authredirected.md) &gt; [type](./kibana-plugin-server.authredirected.type.md)
4+
5+
## AuthRedirected.type property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
type: AuthResultType.redirected;
11+
```

0 commit comments

Comments
 (0)