Skip to content

Commit b9b771e

Browse files
bump 3.0.0.0-alpha1 (#450)
Signed-off-by: Yulong Ruan <[email protected]> Co-authored-by: Peter Zhu <[email protected]>
1 parent 23896ad commit b9b771e

File tree

3 files changed

+11
-17
lines changed

3 files changed

+11
-17
lines changed

.github/workflows/verify-binary-installation.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'Install Dashboards with Plugin via Binary'
22

33
on: [push, pull_request]
44
env:
5-
OPENSEARCH_VERSION: '3.0.0'
5+
OPENSEARCH_VERSION: '3.0.0-alpha1'
66
CI: 1
77
# avoid warnings like "tput: No value for $TERM and no -T specified"
88
TERM: xterm
@@ -16,7 +16,7 @@ jobs:
1616
os: [ubuntu-latest]
1717
# TODO: add windows support when OSD core is stable on windows
1818
runs-on: ${{ matrix.os }}
19-
steps:
19+
steps:
2020
- name: Checkout Branch
2121
uses: actions/checkout@v3
2222

@@ -44,12 +44,13 @@ jobs:
4444
install_zip: true
4545

4646
- name: Start the binary
47-
run: |
47+
run: |
4848
nohup ./bin/opensearch-dashboards &
4949
working-directory: ${{ steps.setup-dashboards.outputs.dashboards-binary-directory }}
5050
shell: bash
5151

52-
- name: Health check
52+
- name: Health check
5353
run: |
5454
timeout 300 bash -c 'while [[ "$(curl http://localhost:5601/api/status | jq -r '.status.overall.state')" != "green" ]]; do sleep 5; done'
55-
shell: bash
55+
shell: bash
56+

opensearch_dashboards.json

+4-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "assistantDashboards",
3-
"version": "3.0.0.0",
3+
"version": "3.0.0.0-alpha1",
44
"opensearchDashboardsVersion": "3.0.0",
55
"server": true,
66
"ui": true,
@@ -15,14 +15,7 @@
1515
"savedObjects",
1616
"uiActions"
1717
],
18-
"optionalPlugins": [
19-
"dataSource",
20-
"dataSourceManagement",
21-
"usageCollection",
22-
"queryEnhancements"
23-
],
18+
"optionalPlugins": ["dataSource", "dataSourceManagement", "usageCollection", "queryEnhancements"],
2419
"requiredBundles": [],
25-
"configPath": [
26-
"assistant"
27-
]
28-
}
20+
"configPath": ["assistant"]
21+
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "assistant-dashboards",
3-
"version": "3.0.0.0",
3+
"version": "3.0.0.0-alpha1",
44
"main": "index.ts",
55
"license": "Apache-2.0",
66
"scripts": {

0 commit comments

Comments
 (0)