Skip to content

Commit a9fe0cd

Browse files
authored
Bump to 3.0.0-alpha1 (#127)
Signed-off-by: David Zane <[email protected]>
1 parent b2502f0 commit a9fe0cd

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/cypress-tests.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- "*"
99
env:
1010
OPENSEARCH_DASHBOARDS_VERSION: 'main'
11-
OPENSEARCH_VERSION: '3.0.0-SNAPSHOT'
11+
OPENSEARCH_VERSION: '3.0.0-alpha1-SNAPSHOT'
1212
QUERY_INSIGHTS_BRANCH: 'main'
1313
GRADLE_VERSION: '7.6.1'
1414
jobs:
@@ -30,9 +30,10 @@ jobs:
3030
TERM: xterm
3131
steps:
3232
- name: Set up JDK
33-
uses: actions/setup-java@v1
33+
uses: actions/setup-java@v4
3434
with:
3535
java-version: 21
36+
distribution: temurin
3637

3738
- name: Enable longer filenames
3839
if: ${{ matrix.os == 'windows-latest' }}

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

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'Install Query Insights 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
@@ -23,9 +23,7 @@ jobs:
2323

2424
- name: Set env
2525
run: |
26-
opensearch_version=$(node -p "require('./package.json').opensearchDashboards.version")
2726
plugin_version=$(node -p "require('./package.json').version")
28-
echo "OPENSEARCH_VERSION=$opensearch_version" >> $GITHUB_ENV
2927
echo "PLUGIN_VERSION=$plugin_version" >> $GITHUB_ENV
3028
shell: bash
3129

@@ -34,6 +32,7 @@ jobs:
3432
with:
3533
opensearch-version: ${{ env.OPENSEARCH_VERSION }}
3634
security-enabled: false
35+
jdk-version: 21
3736

3837
- name: Run Dashboard
3938
id: setup-dashboards

opensearch_dashboards.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "queryInsightsDashboards",
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,4 +15,4 @@
1515
"requiredOSDataSourcePlugins": [
1616
"query-insights"
1717
]
18-
}
18+
}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "opensearch_query_insights_dashboards",
3-
"version": "3.0.0.0",
3+
"version": "3.0.0.0-alpha1",
44
"description": "OpenSearch Dashboards plugin for Query Insights",
55
"main": "index.js",
66
"opensearchDashboards": {
@@ -69,4 +69,4 @@
6969
"node_modules/*",
7070
"target/*"
7171
]
72-
}
72+
}

0 commit comments

Comments
 (0)