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

Merge 2.8 to model registry #215

4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
4 changes: 2 additions & 2 deletions opensearch_dashboards.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "mlCommonsDashboards",
"version": "2.7.0.0",
"opensearchDashboardsVersion": "2.7.0",
"version": "2.8.0.0",
"opensearchDashboardsVersion": "2.8.0",
"server": true,
"ui": true,
"requiredPlugins": [
Expand Down
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,15 @@
"config": {
"id": "mlCommonsDashboards"
},
"version": "2.7.0.0",
"version": "2.8.0.0",
"scripts": {
"build": "yarn plugin-helpers build",
"plugin-helpers": "node ../../scripts/plugin_helpers",
"osd": "node ../../scripts/osd",
"lint:es": "node ../../scripts/eslint",
"test:jest": "TZ=UTC ../../node_modules/.bin/jest --config ./test/jest.config.js",
"test:watch": "TZ=UTC ../../node_modules/.bin/jest --config ./test/jest.config.js --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
"test:watch": "TZ=UTC ../../node_modules/.bin/jest --config ./test/jest.config.js --watch",
"prepare": "husky install"
},
"dependencies": {
"hash-wasm": "^4.9.0",
Expand All @@ -27,7 +23,7 @@
"devDependencies": {
"@testing-library/user-event": "^14.4.3",
"@types/papaparse": "^5.3.5",
"husky": "^3.0.0",
"husky": "^8.0.0",
"lint-staged": "^10.0.0",
"msw": "^1.1.0"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Version 2.8.0.0 Release Notes

Compatible with OpenSearch 2.8.0


### Infrastructure

* Update husky to 8.0.3 to remove execa as development dependency. ([#160](https://github.com/opensearch-project/ml-commons-dashboards/pull/160))
Loading