diff --git a/CHANGELOG.md b/CHANGELOG.md index f7978bedb..8db741a28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.9.4](https://github.com/IDuxFE/idux/compare/v1.9.3...v1.9.4) (2023-08-28) + + +### Bug Fixes + +* **comp:input:** addon select should remove box-shadow when invalid ([#1665](https://github.com/IDuxFE/idux/issues/1665)) ([bb26dbb](https://github.com/IDuxFE/idux/commit/bb26dbbccc4987399e65f802395f0c3620c10b3b)) +* **comp:pagination:** sizeChanger should be supported for simple mode ([#1663](https://github.com/IDuxFE/idux/issues/1663)) ([23178ed](https://github.com/IDuxFE/idux/commit/23178edca00e566a811fd148c5d2560654bf78f9)) +* **comp:tree:** tree node disabled should be cascade ([#1666](https://github.com/IDuxFE/idux/issues/1666)) ([c57dfb3](https://github.com/IDuxFE/idux/commit/c57dfb3d5a7b5b4140e5c54b981574d7c364eec8)) +* **pro:search:** search states should update when field changes ([#1662](https://github.com/IDuxFE/idux/issues/1662)) ([a564dd3](https://github.com/IDuxFE/idux/commit/a564dd30a3a73961c0b7f6d8d17949c156bc41b6)) + + + + + ## [1.9.3](https://github.com/IDuxFE/idux/compare/v1.9.2...v1.9.3) (2023-08-21) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 9459e5f08..7c227a7e2 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "packages": ["packages/*"], - "version": "1.9.3", + "version": "1.9.4", "command": { "publish": { "allowBranch": ["main", "release", "next", "hotfix"], diff --git a/packages/cdk/CHANGELOG.md b/packages/cdk/CHANGELOG.md index e80d254a5..9d4e865d8 100644 --- a/packages/cdk/CHANGELOG.md +++ b/packages/cdk/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.9.4](https://github.com/IDuxFE/idux/compare/v1.9.3...v1.9.4) (2023-08-28) + +**Note:** Version bump only for package @idux/cdk + + + + + ## [1.9.3](https://github.com/IDuxFE/idux/compare/v1.9.2...v1.9.3) (2023-08-21) ### Bug Fixes diff --git a/packages/cdk/package.json b/packages/cdk/package.json index 55e445a28..e0c66a10d 100644 --- a/packages/cdk/package.json +++ b/packages/cdk/package.json @@ -1,6 +1,6 @@ { "name": "@idux/cdk", - "version": "1.9.3", + "version": "1.9.4", "description": "A UI Component Development Kit for Vue 3.x", "keywords": [ "vue", diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index a30632571..4641b801e 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.9.4](https://github.com/IDuxFE/idux/compare/v1.9.3...v1.9.4) (2023-08-28) + + +### Bug Fixes + +* **comp:input:** addon select should remove box-shadow when invalid ([#1665](https://github.com/IDuxFE/idux/issues/1665)) ([bb26dbb](https://github.com/IDuxFE/idux/commit/bb26dbbccc4987399e65f802395f0c3620c10b3b)) +* **comp:pagination:** sizeChanger should be supported for simple mode ([#1663](https://github.com/IDuxFE/idux/issues/1663)) ([23178ed](https://github.com/IDuxFE/idux/commit/23178edca00e566a811fd148c5d2560654bf78f9)) +* **comp:tree:** tree node disabled should be cascade ([#1666](https://github.com/IDuxFE/idux/issues/1666)) ([c57dfb3](https://github.com/IDuxFE/idux/commit/c57dfb3d5a7b5b4140e5c54b981574d7c364eec8)) + + + + + ## [1.9.3](https://github.com/IDuxFE/idux/compare/v1.9.2...v1.9.3) (2023-08-21) ### Bug Fixes diff --git a/packages/components/package.json b/packages/components/package.json index 2f577f096..15ed968e5 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@idux/components", - "version": "1.9.3", + "version": "1.9.4", "description": "A UI Component Library for Vue 3.x", "keywords": [ "vue", @@ -37,7 +37,7 @@ "clean": "rimraf dist node_modules" }, "dependencies": { - "@idux/cdk": "1.9.3", + "@idux/cdk": "1.9.4", "date-fns": "^2.27.0", "lodash-es": "^4.17.0" }, diff --git a/packages/pro/CHANGELOG.md b/packages/pro/CHANGELOG.md index d6b05bb83..de4570a68 100644 --- a/packages/pro/CHANGELOG.md +++ b/packages/pro/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.9.4](https://github.com/IDuxFE/idux/compare/v1.9.3...v1.9.4) (2023-08-28) + + +### Bug Fixes + +* **comp:tree:** tree node disabled should be cascade ([#1666](https://github.com/IDuxFE/idux/issues/1666)) ([c57dfb3](https://github.com/IDuxFE/idux/commit/c57dfb3d5a7b5b4140e5c54b981574d7c364eec8)) +* **pro:search:** search states should update when field changes ([#1662](https://github.com/IDuxFE/idux/issues/1662)) ([a564dd3](https://github.com/IDuxFE/idux/commit/a564dd30a3a73961c0b7f6d8d17949c156bc41b6)) + + + + + ## [1.9.3](https://github.com/IDuxFE/idux/compare/v1.9.2...v1.9.3) (2023-08-21) ### Bug Fixes diff --git a/packages/pro/package.json b/packages/pro/package.json index f13928f31..1f14cbc59 100644 --- a/packages/pro/package.json +++ b/packages/pro/package.json @@ -1,6 +1,6 @@ { "name": "@idux/pro", - "version": "1.9.3", + "version": "1.9.4", "description": "A higher level of abstraction UI component library for Vue 3.x", "keywords": [ "vue", @@ -38,8 +38,8 @@ "clean": "rimraf dist node_modules" }, "dependencies": { - "@idux/cdk": "1.9.3", - "@idux/components": "1.9.3", + "@idux/cdk": "1.9.4", + "@idux/components": "1.9.4", "ajv": "^8.11.0", "ajv-formats": "^3.0.0-rc.0", "lodash-es": "^4.17.0" diff --git a/packages/site/CHANGELOG.md b/packages/site/CHANGELOG.md index 6f43a06d2..6813b3a13 100644 --- a/packages/site/CHANGELOG.md +++ b/packages/site/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.9.4](https://github.com/IDuxFE/idux/compare/v1.9.3...v1.9.4) (2023-08-28) + +**Note:** Version bump only for package @idux/site + + + + + ## [1.9.3](https://github.com/IDuxFE/idux/compare/v1.9.2...v1.9.3) (2023-08-21) **Note:** Version bump only for package @idux/site diff --git a/packages/site/package.json b/packages/site/package.json index 44b90a71f..00e2d600f 100644 --- a/packages/site/package.json +++ b/packages/site/package.json @@ -1,6 +1,6 @@ { "name": "@idux/site", - "version": "1.9.3", + "version": "1.9.4", "private": true, "description": "A website for @idux", "license": "MIT", @@ -12,9 +12,9 @@ "build:pre-version": "vite build --mode pre-version" }, "dependencies": { - "@idux/cdk": "1.9.3", - "@idux/components": "1.9.3", - "@idux/pro": "1.9.3", + "@idux/cdk": "1.9.4", + "@idux/components": "1.9.4", + "@idux/pro": "1.9.4", "codesandbox": "^2.2.3", "lodash-es": "^4.17.21", "vue": "^3.2.29",