Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Adds support for Kibana 7.9.1 (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
dbbaughe authored Sep 9, 2020
1 parent 7d2efcd commit c435700
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cypress-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
run: |
cd index-management
./gradlew run &
timeout 300 bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:9200)" != "200" ]]; do sleep 5; done'
sleep 300
# timeout 300 bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:9200)" != "200" ]]; do sleep 5; done'
- name: Checkout Index Management Kibana plugin
uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -70,7 +71,8 @@ jobs:
run: |
cd kibana/plugins/index-management-kibana-plugin
yarn start --no-base-path --no-watch &
timeout 300 bash -c 'while [[ "$(curl -s localhost:5601/api/status | jq -r '.status.overall.state')" != "green" ]]; do sleep 5; done'
sleep 300
# timeout 300 bash -c 'while [[ "$(curl -s localhost:5601/api/status | jq -r '.status.overall.state')" != "green" ]]; do sleep 5; done'
# for now just chrome, use matrix to do all browsers later
- name: Cypress tests
uses: cypress-io/github-action@v1
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "opendistro_index_management_kibana",
"version": "1.10.0.0",
"version": "1.10.1.0",
"description": "Kibana plugin for Index Management",
"main": "index.js",
"license": "Apache-2.0",
"homepage": "https://github.com/opendistro-for-elasticsearch/index-management-kibana-plugin",
"kibana": {
"version": "7.9.0",
"version": "7.9.1",
"templateVersion": "1.0.0"
},
"repository": {
Expand Down Expand Up @@ -82,7 +82,7 @@
"typescript": "3.7.2"
},
"engines": {
"node": "10.21.0",
"node": "10.22.0",
"yarn": "^1.21.1"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## Version 1.10.1.0 (2020-9-8)

Compatible with Kibana 7.9.1.

### Maintenance
* Adds support for Kibana 7.9.1 [#120](https://github.com/opendistro-for-elasticsearch/index-management-kibana-plugin/pull/120)

0 comments on commit c435700

Please sign in to comment.