Skip to content
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

Bump version to 2.0.0 #56

Merged
merged 2 commits into from
Mar 21, 2022
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
4 changes: 2 additions & 2 deletions .github/workflows/test-and-build-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on: [pull_request, push]

env:
PLUGIN_NAME: gantt-chart-dashboards
OPENSEARCH_VERSION: '1.x'
OPENSEARCH_PLUGIN_VERSION: 1.3.0.0
OPENSEARCH_VERSION: 'main'
OPENSEARCH_PLUGIN_VERSION: 2.0.0.0

jobs:

Expand Down
4 changes: 2 additions & 2 deletions gantt-chart/opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "ganttChartDashboards",
"version": "1.3.0.0",
"opensearchDashboardsVersion": "1.3.0",
"version": "2.0.0.0",
"opensearchDashboardsVersion": "2.0.0",
"requiredPlugins": [
"visualizations",
"data"
Expand Down
4 changes: 2 additions & 2 deletions gantt-chart/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "gantt-chart-dashboards",
"version": "1.3.0.0",
"version": "2.0.0.0",
"opensearchDashboards": {
"version": "1.3.0",
"version": "2.0.0",
"templateVersion": "1.0.0"
},
"license": "Apache-2.0",
Expand Down
1 change: 1 addition & 0 deletions gantt-chart/test/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ module.exports = {
'\\.(css|less|sass|scss)$': '<rootDir>/test/mocks/styleMock.ts',
'\\.(gif|ttf|eot|svg)$': '<rootDir>/test/mocks/fileMock.ts',
},
testEnvironment: 'jsdom',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this required?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, jest version in dashboards changed, default env is node.js

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be added to dashboards-reports as well?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

depends, reporting have jest for node.js env, need to check separately

};