Skip to content

Commit ee5ecc7

Browse files
author
Liza K
committed
Merge branch 'master' of github.com:elastic/kibana into session/cancellation
2 parents 6e6fcb2 + 418a3d3 commit ee5ecc7

1,634 files changed

Lines changed: 45533 additions & 38690 deletions

File tree

Some content is hidden

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

.ci/package-testing/Jenkinsfile

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/bin/groovy
2+
library 'kibana-pipeline-library'
3+
kibanaLibrary.load()
4+
kibanaPipeline(timeoutMinutes: 300) {
5+
slackNotifications.onFailure {
6+
ciStats.trackBuild {
7+
workers.ci(ramDisk: false, name: "package-build", size: 'l', runErrorReporter: false) {
8+
withGcpServiceAccount.fromVaultSecret('secret/kibana-issues/dev/ci-artifacts-key', 'value') {
9+
kibanaPipeline.bash("test/scripts/jenkins_xpack_package_build.sh", "Package builds")
10+
}
11+
}
12+
def packageTypes = ['deb', 'docker', 'rpm']
13+
def workers = [:]
14+
packageTypes.each { type ->
15+
workers["package-${type}"] = {
16+
testPackage(type)
17+
}
18+
}
19+
parallel(workers)
20+
}
21+
}
22+
}
23+
def testPackage(packageType) {
24+
workers.ci(ramDisk: false, name: "package-${packageType}", size: 's', runErrorReporter: false) {
25+
withGcpServiceAccount.fromVaultSecret('secret/kibana-issues/dev/ci-artifacts-key', 'value') {
26+
kibanaPipeline.bash("test/scripts/jenkins_xpack_package_${packageType}.sh", "Execute package testing for ${packageType}")
27+
}
28+
}
29+
}

.github/CODEOWNERS

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@
9494
/x-pack/plugins/apm/server/projections/rum_page_load_transactions.ts @elastic/uptime
9595
/x-pack/test/apm_api_integration/tests/csm/ @elastic/uptime
9696

97-
# Beats
98-
/x-pack/plugins/beats_management/ @elastic/beats
99-
#CC# /x-pack/plugins/beats_management/ @elastic/beats
10097

10198
# Presentation
10299
/src/plugins/dashboard/ @elastic/kibana-presentation
@@ -150,6 +147,7 @@
150147
#CC# /x-pack/plugins/file_upload @elastic/kibana-gis
151148
/src/plugins/tile_map/ @elastic/kibana-gis
152149
/src/plugins/region_map/ @elastic/kibana-gis
150+
/packages/kbn-mapbox-gl @elastic/kibana-gis
153151

154152
# Operations
155153
/src/dev/ @elastic/kibana-operations

.github/ISSUE_TEMPLATE/v8_breaking_change.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ assignees: ''
1313
****************************************
1414
1515
Please add a team label to denote the team that the
16-
breaking change is applicable to.
16+
breaking change is applicable to. If the work requires
17+
changes to Upgrade Assistant itself, please tag Team:Elasticsearch UI.
1718
1819
-->
1920

@@ -23,14 +24,20 @@ breaking change is applicable to.
2324

2425
8.0
2526

27+
**Is this a Kibana or Elasticsearch breaking change?**
28+
29+
<!-- Kibana breaking changes can be registered via the Kibana deprecations service. Elasticsearch breaking changes may require custom logic in Upgrade Assistant and assistance from the Elasticsearch UI team. See more details below. -->
30+
2631
**Describe the change. How will it manifest to users?**
2732

2833
**How many users will be affected?**
2934

3035
<!-- e.g. Based on telemetry data, roughly 75% of our users will need to make changes to x. -->
3136
<!-- e.g. A majority of users will need to make changes to x. -->
3237

33-
**Can the change be registered with the [Kibana deprecation service](https://github.com/elastic/kibana/blob/master/docs/development/core/server/kibana-plugin-core-server.deprecationsservicesetup.md)?**
38+
**Are there any edge cases?**
39+
40+
**[For Kibana deprecations] Can the change be registered with the [Kibana deprecation service](https://github.com/elastic/kibana/blob/master/docs/development/core/server/kibana-plugin-core-server.deprecationsservicesetup.md)?**
3441

3542
<!-- The deprecation service is consumed by the Upgrade Assistant to surface Kibana deprecations.
3643
It provides a way for Kibana deprecations to be resolved automatically via an API
@@ -39,8 +46,11 @@ breaking change is applicable to.
3946
<!-- Each plugin owner is responsible for registering their deprecations via the service.
4047
Please link to the issue/PR that will add this functionality. -->
4148

42-
**Are there any edge cases?**
49+
**[For Elasticsearch deprecations] Can the Upgrade Assistant make the migration easier for users? Please explain the proposed solution in as much detail as possible.**
50+
51+
<!-- Upgrade Assistant consumes the ES deprecation info API to surface deprecations to users. In some cases, Upgrade Assistant can provide a way to resolve a particular deprecation returned from the API. Examples include: reindexing an old index, removing deprecated index settings, upgrading or deleting an old Machine Learning model snapshot. -->
4352

53+
<!-- Please provide a detailed explanation on how you foresee the proposed "fix" to work, e.g., "The deprecation will be surfaced via XXX message in the deprecation info API. Upgrade Assistant can call XXX API to resolve this deprecation". See https://github.com/elastic/kibana/issues/91879 as a real-world example. -->
4454
## Test Data
4555

4656
<!-- Provide test data. We can’t build a solution without data to test it against. -->

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ npm-debug.log*
6060
.ci/runbld
6161
.ci/bash_standard_lib.sh
6262
.gradle
63+
.vagrant
6364

6465
## @cypress/snapshot from apm plugin
6566
snapshots.js

.i18nrc.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"paths": {
3-
"common.ui": "src/legacy/ui",
43
"console": "src/plugins/console",
54
"core": "src/core",
65
"discover": "src/plugins/discover",
@@ -61,6 +60,5 @@
6160
"apmOss": "src/plugins/apm_oss",
6261
"usageCollection": "src/plugins/usage_collection"
6362
},
64-
"exclude": ["src/legacy/ui/ui_render/ui_render_mixin.js"],
6563
"translations": []
6664
}

0 commit comments

Comments
 (0)