Skip to content

Commit 7af495b

Browse files
authored
Merge branch 'master' into dls.painless.lab
2 parents af491f0 + a31cc73 commit 7af495b

File tree

1,250 files changed

+19133
-7732
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,250 files changed

+19133
-7732
lines changed

.ci/Jenkinsfile_flaky

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,20 @@ kibanaPipeline(timeoutMinutes: 180) {
2929
catchErrors {
3030
print "Agent ${agentNumberInside} - ${agentExecutions} executions"
3131

32-
workers.functional('flaky-test-runner', {
33-
if (!IS_XPACK) {
34-
kibanaPipeline.buildOss()
35-
if (CI_GROUP == '1') {
36-
runbld("./test/scripts/jenkins_build_kbn_sample_panel_action.sh", "Build kbn tp sample panel action for ciGroup1")
32+
withEnv([
33+
'IGNORE_SHIP_CI_STATS_ERROR=true',
34+
]) {
35+
workers.functional('flaky-test-runner', {
36+
if (!IS_XPACK) {
37+
kibanaPipeline.buildOss()
38+
if (CI_GROUP == '1') {
39+
runbld("./test/scripts/jenkins_build_kbn_sample_panel_action.sh", "Build kbn tp sample panel action for ciGroup1")
40+
}
41+
} else {
42+
kibanaPipeline.buildXpack()
3743
}
38-
} else {
39-
kibanaPipeline.buildXpack()
40-
}
41-
}, getWorkerMap(agentNumberInside, agentExecutions, worker, workerFailures))()
44+
}, getWorkerMap(agentNumberInside, agentExecutions, worker, workerFailures))()
45+
}
4246
}
4347
}
4448
}

.ci/Jenkinsfile_security_cypress

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ kibanaPipeline(timeoutMinutes: 180) {
1010
) {
1111
catchError {
1212
withEnv([
13-
'CI_PARALLEL_PROCESS_NUMBER=1'
13+
'CI_PARALLEL_PROCESS_NUMBER=1',
14+
'IGNORE_SHIP_CI_STATS_ERROR=true',
1415
]) {
1516
def job = 'xpack-securityCypress'
1617

.ci/es-snapshots/Jenkinsfile_verify_es

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,12 @@ kibanaPipeline(timeoutMinutes: 150) {
2626
message: "[${SNAPSHOT_VERSION}] ES Snapshot Verification Failure",
2727
) {
2828
retryable.enable(2)
29-
withEnv(["ES_SNAPSHOT_MANIFEST=${SNAPSHOT_MANIFEST}"]) {
29+
withEnv([
30+
"ES_SNAPSHOT_MANIFEST=${SNAPSHOT_MANIFEST}",
31+
'IGNORE_SHIP_CI_STATS_ERROR=true',
32+
]) {
3033
parallel([
3134
'kibana-intake-agent': workers.intake('kibana-intake', './test/scripts/jenkins_unit.sh'),
32-
'x-pack-intake-agent': workers.intake('x-pack-intake', './test/scripts/jenkins_xpack.sh'),
3335
'kibana-oss-agent': workers.functional('kibana-oss-tests', { kibanaPipeline.buildOss() }, [
3436
'oss-ciGroup1': kibanaPipeline.ossCiGroupProcess(1),
3537
'oss-ciGroup2': kibanaPipeline.ossCiGroupProcess(2),

.ci/jobs.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
JOB:
44
- kibana-intake
5-
- x-pack-intake
65
- kibana-firefoxSmoke
76
- kibana-ciGroup1
87
- kibana-ciGroup2

.eslintrc.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,6 +1119,39 @@ module.exports = {
11191119
// All files
11201120
files: ['x-pack/plugins/enterprise_search/**/*.{ts,tsx}'],
11211121
rules: {
1122+
'import/order': [
1123+
'error',
1124+
{
1125+
groups: ['unknown', ['builtin', 'external'], 'internal', 'parent', 'sibling', 'index'],
1126+
pathGroups: [
1127+
{
1128+
pattern:
1129+
'{../../../../../../,../../../../../,../../../../,../../../,../../,../}{common/,*}__mocks__{*,/**}',
1130+
group: 'unknown',
1131+
},
1132+
{
1133+
pattern: '{**,.}/*.mock',
1134+
group: 'unknown',
1135+
},
1136+
{
1137+
pattern: 'react*',
1138+
group: 'external',
1139+
position: 'before',
1140+
},
1141+
{
1142+
pattern: '{@elastic/**,@kbn/**,src/**}',
1143+
group: 'internal',
1144+
},
1145+
],
1146+
pathGroupsExcludedImportTypes: [],
1147+
alphabetize: {
1148+
order: 'asc',
1149+
caseInsensitive: true,
1150+
},
1151+
'newlines-between': 'always-and-inside-groups',
1152+
},
1153+
],
1154+
'import/newline-after-import': 'error',
11221155
'react-hooks/exhaustive-deps': 'off',
11231156
'react/jsx-boolean-value': ['error', 'never'],
11241157
},

.github/CODEOWNERS

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,8 @@
223223
/x-pack/plugins/telemetry_collection_xpack/ @elastic/kibana-core
224224
/.telemetryrc.json @elastic/kibana-core
225225
/x-pack/.telemetryrc.json @elastic/kibana-core
226-
src/plugins/telemetry/schema/legacy_oss_plugins.json @elastic/kibana-core
227-
src/plugins/telemetry/schema/oss_plugins.json @elastic/kibana-core
228-
x-pack/plugins/telemetry_collection_xpack/schema/xpack_plugins.json @elastic/kibana-core
226+
src/plugins/telemetry/schema/ @elastic/kibana-core @elastic/kibana-telemetry @elastic/infra-telemetry
227+
x-pack/plugins/telemetry_collection_xpack/schema/ @elastic/kibana-core @elastic/kibana-telemetry @elastic/infra-telemetry
229228

230229
# Kibana Localization
231230
/src/dev/i18n/ @elastic/kibana-localization @elastic/kibana-core

.github/workflows/backport.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@ on:
99
jobs:
1010
backport:
1111
name: Backport PR
12-
if: github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'auto-backport')
12+
if: |
13+
github.event.pull_request.merged == true
14+
&& contains(github.event.pull_request.labels.*.name, 'auto-backport')
15+
&& (
16+
(github.event.action == 'labeled' && github.event.label.name == 'auto-backport')
17+
|| (github.event.action == 'closed')
18+
)
1319
runs-on: ubuntu-latest
14-
1520
steps:
1621
- name: 'Get backport config'
1722
run: |

.stylelintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ rules:
3232
- function
3333
- return
3434
- for
35+
- at-root
3536
comment-no-empty: true
3637
no-duplicate-at-import-rules: true
3738
no-duplicate-selectors: true

dev_docs/assets/applications.png

195 KB
Loading
5.21 KB
Loading

0 commit comments

Comments
 (0)