Skip to content

Bump to 3.0.0-alpha1 #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/cypress-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
- "*"
env:
OPENSEARCH_DASHBOARDS_VERSION: 'main'
OPENSEARCH_VERSION: '3.0.0-SNAPSHOT'
OPENSEARCH_VERSION: '3.0.0-alpha1-SNAPSHOT'
QUERY_INSIGHTS_BRANCH: 'main'
GRADLE_VERSION: '7.6.1'
jobs:
Expand All @@ -30,9 +30,10 @@ jobs:
TERM: xterm
steps:
- name: Set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v4
with:
java-version: 21
distribution: temurin

- name: Enable longer filenames
if: ${{ matrix.os == 'windows-latest' }}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/verify-binary-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: 'Install Query Insights Dashboards with Plugin via Binary'

on: [push, pull_request]
env:
OPENSEARCH_VERSION: '3.0.0'
OPENSEARCH_VERSION: '3.0.0-alpha1'
CI: 1
# avoid warnings like "tput: No value for $TERM and no -T specified"
TERM: xterm
Expand All @@ -23,9 +23,7 @@ jobs:

- name: Set env
run: |
opensearch_version=$(node -p "require('./package.json').opensearchDashboards.version")
plugin_version=$(node -p "require('./package.json').version")
echo "OPENSEARCH_VERSION=$opensearch_version" >> $GITHUB_ENV
echo "PLUGIN_VERSION=$plugin_version" >> $GITHUB_ENV
shell: bash

Expand All @@ -34,6 +32,7 @@ jobs:
with:
opensearch-version: ${{ env.OPENSEARCH_VERSION }}
security-enabled: false
jdk-version: 21

- name: Run Dashboard
id: setup-dashboards
Expand Down
4 changes: 2 additions & 2 deletions opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "queryInsightsDashboards",
"version": "3.0.0.0",
"version": "3.0.0.0-alpha1",
"opensearchDashboardsVersion": "3.0.0",
"server": true,
"ui": true,
Expand All @@ -15,4 +15,4 @@
"requiredOSDataSourcePlugins": [
"query-insights"
]
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "opensearch_query_insights_dashboards",
"version": "3.0.0.0",
"version": "3.0.0.0-alpha1",
"description": "OpenSearch Dashboards plugin for Query Insights",
"main": "index.js",
"opensearchDashboards": {
Expand Down Expand Up @@ -69,4 +69,4 @@
"node_modules/*",
"target/*"
]
}
}
Loading