diff --git a/.github/workflows/cypress-workflow.yml b/.github/workflows/cypress-workflow.yml index 75e9e6e0..956501d3 100644 --- a/.github/workflows/cypress-workflow.yml +++ b/.github/workflows/cypress-workflow.yml @@ -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: @@ -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 diff --git a/package.json b/package.json index b75eebcc..1de67567 100644 --- a/package.json +++ b/package.json @@ -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": { @@ -82,7 +82,7 @@ "typescript": "3.7.2" }, "engines": { - "node": "10.21.0", + "node": "10.22.0", "yarn": "^1.21.1" } } diff --git a/release-notes/opendistro-for-elasticsearch-index-management-kibana-plugin.release-notes-1.10.1.0.md b/release-notes/opendistro-for-elasticsearch-index-management-kibana-plugin.release-notes-1.10.1.0.md new file mode 100644 index 00000000..663c85eb --- /dev/null +++ b/release-notes/opendistro-for-elasticsearch-index-management-kibana-plugin.release-notes-1.10.1.0.md @@ -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) \ No newline at end of file