diff --git a/superset-frontend/temporary_superset_ui/superset-ui/CHANGELOG.md b/superset-frontend/temporary_superset_ui/superset-ui/CHANGELOG.md index bc4af88bca9a8..47d274a5d95e1 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/CHANGELOG.md +++ b/superset-frontend/temporary_superset_ui/superset-ui/CHANGELOG.md @@ -1,3 +1,20 @@ +# [0.11.0](https://github.com/apache-superset/superset-ui/compare/v0.10.10...v0.11.0) (2019-04-02) + + +### 💔 BREAKING CHANGE + +* Revert "Handle BigNumber conversions in JSON properly (without loss of precision) (#71)" (#126) + +This reverts commit e3866129b2b3cbd6e099fe4ab66319c4fe6ae485. It should not cause critical issue or require additional migration from `0.10.x`. However, since this is a change in the expected output, we bump the version to be safe. + +## [0.10.10](https://github.com/apache-superset/superset-ui/compare/v0.10.9...v0.10.10) (2019-04-02) + + +### ✨ Features + +* add support for conditional get requests ([#119](https://github.com/apache-superset/superset-ui/issues/119)) ([2ca55ed](https://github.com/apache-superset/superset-ui/commit/2ca55ed)) + + ## [0.10.9](https://github.com/apache-superset/superset-ui/compare/v0.10.8...v0.10.9) (2019-03-29) diff --git a/superset-frontend/temporary_superset_ui/superset-ui/package.json b/superset-frontend/temporary_superset_ui/superset-ui/package.json index 465cab3f24b20..411424e805b32 100644 --- a/superset-frontend/temporary_superset_ui/superset-ui/package.json +++ b/superset-frontend/temporary_superset_ui/superset-ui/package.json @@ -9,7 +9,8 @@ "build:cjs": "NODE_ENV=production beemo babel --extensions=\".js,.jsx,.ts,.tsx\" ./src --out-dir lib/ --delete-dir-on-start --minify --workspaces=\"@superset-ui/!(demo|generator-superset)\"", "build:esm": "NODE_ENV=production beemo babel --extensions=\".js,.jsx,.ts,.tsx\" ./src --out-dir esm/ --delete-dir-on-start --esm --minify --workspaces=\"@superset-ui/!(demo|generator-superset)\"", "build:assets": "node ./scripts/buildAssets.js", - "commit": "git-cz", + "commit": "superset-commit", + "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1", "type": "NODE_ENV=production beemo typescript --workspaces=\"@superset-ui/!(generator-superset)\" --noEmit", "type:dts": "NODE_ENV=production beemo typescript --workspaces=\"@superset-ui/!(demo|generator-superset)\" --emitDeclarationOnly", "lint": "beemo create-config prettier && beemo eslint \"./packages/*/{src,test,storybook}/**/*.{js,jsx,ts,tsx}\"", @@ -39,7 +40,8 @@ ], "license": "Apache-2.0", "devDependencies": { - "@superset-ui/build-config": "^0.0.4", + "@superset-ui/build-config": "^0.0.8", + "@superset-ui/commit-config": "^0.0.9", "fast-glob": "^2.2.6", "fs-extra": "^7.0.1", "husky": "^1.1.2", @@ -107,10 +109,5 @@ "yarn run prettier --write", "git add" ] - }, - "config": { - "commitizen": { - "path": "git-cz" - } } }