diff --git a/CHANGELOG.md b/CHANGELOG.md index 543a2597..13762d96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + + +### Bug Fixes + +* **lib:** 修复 anyOf index change 旧值不匹配不会移除的问题 ([22c658a](https://github.com/lljj-x/vue-json-schema-form/commit/22c658a14a4a4bce8b2d50635bef19738ffbd9b4)) +* **lib:** 修复 match anyOf option未重新retrieve schema 导致无法正确match index的问题 ([44dd77b](https://github.com/lljj-x/vue-json-schema-form/commit/44dd77bd44b2009aac43b57786a8701c4e8c1abc)), closes [#317](https://github.com/lljj-x/vue-json-schema-form/issues/317) + + +### Features + +* **lib:** vue2版本 formItem 默认支持promise 形式 ([6e48d27](https://github.com/lljj-x/vue-json-schema-form/commit/6e48d277ea3c95a36e56ac166e4c75cf7e920b3d)), closes [#316](https://github.com/lljj-x/vue-json-schema-form/issues/316) + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) diff --git a/lerna.json b/lerna.json index 826fa63c..ed90322c 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "1.17.1", + "version": "1.18.0", "command": { "version": { "allowBranch": "master", diff --git a/packages/demo/demo-v2/CHANGELOG.md b/packages/demo/demo-v2/CHANGELOG.md index 398be932..681e9164 100644 --- a/packages/demo/demo-v2/CHANGELOG.md +++ b/packages/demo/demo-v2/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.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + +**Note:** Version bump only for package demo + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package demo diff --git a/packages/demo/demo-v2/package.json b/packages/demo/demo-v2/package.json index 13ec70f7..c195fe2c 100644 --- a/packages/demo/demo-v2/package.json +++ b/packages/demo/demo-v2/package.json @@ -1,6 +1,6 @@ { "name": "demo", - "version": "1.17.1", + "version": "1.18.0", "private": true, "license": "Apache-2.0", "scripts": { @@ -10,8 +10,8 @@ }, "dependencies": { "@lljj/polyfill": "^0.1.0", - "@lljj/vue-json-schema-form": "1.17.1", - "@lljj/vue2-form-iview3": "1.17.1", + "@lljj/vue-json-schema-form": "1.18.0", + "@lljj/vue2-form-iview3": "1.18.0", "ajv-i18n": "^3.5.0", "demo-common": "1.17.1", "iview": "^3.5.4", diff --git a/packages/demo/demo-v3/CHANGELOG.md b/packages/demo/demo-v3/CHANGELOG.md index d71f5b53..52c1ee46 100644 --- a/packages/demo/demo-v3/CHANGELOG.md +++ b/packages/demo/demo-v3/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.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + +**Note:** Version bump only for package demo-v3 + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package demo-v3 diff --git a/packages/demo/demo-v3/package.json b/packages/demo/demo-v3/package.json index a4b9660b..6e049d49 100644 --- a/packages/demo/demo-v3/package.json +++ b/packages/demo/demo-v3/package.json @@ -1,6 +1,6 @@ { "name": "demo-v3", - "version": "1.17.1", + "version": "1.18.0", "private": true, "license": "Apache-2.0", "scripts": { @@ -10,8 +10,8 @@ }, "dependencies": { "@lljj/polyfill": "^0.1.0", - "@lljj/vue3-form-ant": "1.17.1", - "@lljj/vue3-form-element": "1.17.1", + "@lljj/vue3-form-ant": "1.18.0", + "@lljj/vue3-form-element": "1.18.0", "ajv-i18n": "^3.5.0", "ant-design-vue": "^2.0.1", "demo-common": "1.17.1", diff --git a/packages/docs/CHANGELOG.md b/packages/docs/CHANGELOG.md index b27f57e6..0009536d 100644 --- a/packages/docs/CHANGELOG.md +++ b/packages/docs/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.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + +**Note:** Version bump only for package docs + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package docs diff --git a/packages/docs/package.json b/packages/docs/package.json index 27d135a4..63ac3f33 100644 --- a/packages/docs/package.json +++ b/packages/docs/package.json @@ -1,6 +1,6 @@ { "name": "docs", - "version": "1.17.1", + "version": "1.18.0", "private": true, "license": "Apache-2.0", "scripts": { @@ -9,7 +9,7 @@ "build": "vuepress build docs" }, "dependencies": { - "@lljj/vue-json-schema-form": "1.17.1", + "@lljj/vue-json-schema-form": "1.18.0", "element-ui": "^2.13.2", "v-distpicker": "^1.2.7" }, diff --git a/packages/lib/utils/CHANGELOG.md b/packages/lib/utils/CHANGELOG.md index 6eda1374..72883d4e 100644 --- a/packages/lib/utils/CHANGELOG.md +++ b/packages/lib/utils/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + + +### Bug Fixes + +* **lib:** 修复 match anyOf option未重新retrieve schema 导致无法正确match index的问题 ([44dd77b](https://github.com/lljj-x/vue-json-schema-form/commit/44dd77bd44b2009aac43b57786a8701c4e8c1abc)), closes [#317](https://github.com/lljj-x/vue-json-schema-form/issues/317) + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) diff --git a/packages/lib/utils/package.json b/packages/lib/utils/package.json index 035bf454..96e01eb5 100644 --- a/packages/lib/utils/package.json +++ b/packages/lib/utils/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vjsf-utils", - "version": "1.17.1", + "version": "1.18.0", "description": "vue json schema form 使用的基础utils工具类", "private": false, "publishConfig": { diff --git a/packages/lib/vue2/vue2-core/CHANGELOG.md b/packages/lib/vue2/vue2-core/CHANGELOG.md index ca6d794a..cfb41270 100644 --- a/packages/lib/vue2/vue2-core/CHANGELOG.md +++ b/packages/lib/vue2/vue2-core/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + + +### Bug Fixes + +* **lib:** 修复 anyOf index change 旧值不匹配不会移除的问题 ([22c658a](https://github.com/lljj-x/vue-json-schema-form/commit/22c658a14a4a4bce8b2d50635bef19738ffbd9b4)) + + +### Features + +* **lib:** vue2版本 formItem 默认支持promise 形式 ([6e48d27](https://github.com/lljj-x/vue-json-schema-form/commit/6e48d277ea3c95a36e56ac166e4c75cf7e920b3d)), closes [#316](https://github.com/lljj-x/vue-json-schema-form/issues/316) + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package @lljj/vue2-form-core diff --git a/packages/lib/vue2/vue2-core/package.json b/packages/lib/vue2/vue2-core/package.json index b1a5af64..2eea9948 100644 --- a/packages/lib/vue2/vue2-core/package.json +++ b/packages/lib/vue2/vue2-core/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue2-form-core", - "version": "1.17.1", + "version": "1.18.0", "description": "基于 Vue 、JsonSchema快速构建一个带完整校验的form表单,vue2版本基础框架", "main": "src/index.js", "module": "src/index.js", @@ -14,7 +14,7 @@ "access": "public" }, "dependencies": { - "@lljj/vjsf-utils": "1.17.1" + "@lljj/vjsf-utils": "1.18.0" }, "repository": "https://github.com/lljj-x/vue-json-schema-form", "homepage": "https://github.com/lljj-x/vue-json-schema-form", diff --git a/packages/lib/vue2/vue2-form-element/CHANGELOG.md b/packages/lib/vue2/vue2-form-element/CHANGELOG.md index 0586d2b7..a4e46a0d 100644 --- a/packages/lib/vue2/vue2-form-element/CHANGELOG.md +++ b/packages/lib/vue2/vue2-form-element/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.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + +**Note:** Version bump only for package @lljj/vue-json-schema-form + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package @lljj/vue-json-schema-form diff --git a/packages/lib/vue2/vue2-form-element/package.json b/packages/lib/vue2/vue2-form-element/package.json index 7f27a79b..37a08838 100644 --- a/packages/lib/vue2/vue2-form-element/package.json +++ b/packages/lib/vue2/vue2-form-element/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue-json-schema-form", - "version": "1.17.1", + "version": "1.18.0", "description": "基于 Vue 、ElementUi、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vueJsonSchemaForm.umd.min.js", "module": "dist/vueJsonSchemaForm.esm.min.js", @@ -15,8 +15,8 @@ "jsonSchema" ], "dependencies": { - "@lljj/vjsf-utils": "1.17.1", - "@lljj/vue2-form-core": "1.17.1" + "@lljj/vjsf-utils": "1.18.0", + "@lljj/vue2-form-core": "1.18.0" }, "typings": "types/index.d.ts", "files": [ diff --git a/packages/lib/vue2/vue2-form-iview3/CHANGELOG.md b/packages/lib/vue2/vue2-form-iview3/CHANGELOG.md index 3d46e162..8b2b892c 100644 --- a/packages/lib/vue2/vue2-form-iview3/CHANGELOG.md +++ b/packages/lib/vue2/vue2-form-iview3/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.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + +**Note:** Version bump only for package @lljj/vue2-form-iview3 + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package @lljj/vue2-form-iview3 diff --git a/packages/lib/vue2/vue2-form-iview3/package.json b/packages/lib/vue2/vue2-form-iview3/package.json index 7bf887ac..f9b42bf8 100644 --- a/packages/lib/vue2/vue2-form-iview3/package.json +++ b/packages/lib/vue2/vue2-form-iview3/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue2-form-iview3", - "version": "1.17.1", + "version": "1.18.0", "description": "基于 Vue 、iView3、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vue2-form-iview3.umd.min.js", "module": "dist/vue2-form-iview3.esm.min.js", @@ -16,8 +16,8 @@ "iView3" ], "dependencies": { - "@lljj/vjsf-utils": "1.17.1", - "@lljj/vue2-form-core": "1.17.1" + "@lljj/vjsf-utils": "1.18.0", + "@lljj/vue2-form-core": "1.18.0" }, "typings": "types/index.d.ts", "files": [ diff --git a/packages/lib/vue3/vue3-core/CHANGELOG.md b/packages/lib/vue3/vue3-core/CHANGELOG.md index 801df2cd..f7d073a0 100644 --- a/packages/lib/vue3/vue3-core/CHANGELOG.md +++ b/packages/lib/vue3/vue3-core/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + + +### Bug Fixes + +* **lib:** 修复 anyOf index change 旧值不匹配不会移除的问题 ([22c658a](https://github.com/lljj-x/vue-json-schema-form/commit/22c658a14a4a4bce8b2d50635bef19738ffbd9b4)) + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package @lljj/vue3-form-core diff --git a/packages/lib/vue3/vue3-core/package.json b/packages/lib/vue3/vue3-core/package.json index 3c910e9b..0163446f 100644 --- a/packages/lib/vue3/vue3-core/package.json +++ b/packages/lib/vue3/vue3-core/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue3-form-core", - "version": "1.17.1", + "version": "1.18.0", "description": "基于 Vue3 、JsonSchema快速构建一个带完整校验的form表单,vue3版本基础框架", "main": "src/index.js", "module": "src/index.js", @@ -14,7 +14,7 @@ "access": "public" }, "dependencies": { - "@lljj/vjsf-utils": "1.17.1" + "@lljj/vjsf-utils": "1.18.0" }, "repository": "https://github.com/lljj-x/vue-json-schema-form", "homepage": "https://github.com/lljj-x/vue-json-schema-form", diff --git a/packages/lib/vue3/vue3-form-ant/CHANGELOG.md b/packages/lib/vue3/vue3-form-ant/CHANGELOG.md index 616f443a..f8051916 100644 --- a/packages/lib/vue3/vue3-form-ant/CHANGELOG.md +++ b/packages/lib/vue3/vue3-form-ant/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.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + +**Note:** Version bump only for package @lljj/vue3-form-ant + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package @lljj/vue3-form-ant diff --git a/packages/lib/vue3/vue3-form-ant/package.json b/packages/lib/vue3/vue3-form-ant/package.json index c500bd86..73af1655 100644 --- a/packages/lib/vue3/vue3-form-ant/package.json +++ b/packages/lib/vue3/vue3-form-ant/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue3-form-ant", - "version": "1.17.1", + "version": "1.18.0", "description": "基于 Vue3 、Antdv、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vue3-form-ant.umd.min.js", "module": "dist/vue3-form-ant.esm.min.js", @@ -15,8 +15,8 @@ "jsonSchema" ], "dependencies": { - "@lljj/vjsf-utils": "1.17.1", - "@lljj/vue3-form-core": "1.17.1" + "@lljj/vjsf-utils": "1.18.0", + "@lljj/vue3-form-core": "1.18.0" }, "typings": "types/index.d.ts", "files": [ diff --git a/packages/lib/vue3/vue3-form-element/CHANGELOG.md b/packages/lib/vue3/vue3-form-element/CHANGELOG.md index 9bb6db63..70f9d5b8 100644 --- a/packages/lib/vue3/vue3-form-element/CHANGELOG.md +++ b/packages/lib/vue3/vue3-form-element/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.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + +**Note:** Version bump only for package @lljj/vue3-form-element + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package @lljj/vue3-form-element diff --git a/packages/lib/vue3/vue3-form-element/package.json b/packages/lib/vue3/vue3-form-element/package.json index d17de92c..bbf86b23 100644 --- a/packages/lib/vue3/vue3-form-element/package.json +++ b/packages/lib/vue3/vue3-form-element/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue3-form-element", - "version": "1.17.1", + "version": "1.18.0", "description": "基于 Vue3 、ElementPlus、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vue3-form-element.umd.min.js", "module": "dist/vue3-form-element.esm.min.js", @@ -15,8 +15,8 @@ "jsonSchema" ], "dependencies": { - "@lljj/vjsf-utils": "1.17.1", - "@lljj/vue3-form-core": "1.17.1" + "@lljj/vjsf-utils": "1.18.0", + "@lljj/vue3-form-core": "1.18.0" }, "typings": "types/index.d.ts", "files": [ diff --git a/packages/lib/vue3/vue3-form-naive/CHANGELOG.md b/packages/lib/vue3/vue3-form-naive/CHANGELOG.md index a04e0d9d..22b9eb9e 100644 --- a/packages/lib/vue3/vue3-form-naive/CHANGELOG.md +++ b/packages/lib/vue3/vue3-form-naive/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.18.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.1...v1.18.0) (2023-08-05) + +**Note:** Version bump only for package @lljj/vue3-form-naive + + + + + ## [1.17.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.17.0...v1.17.1) (2023-05-14) **Note:** Version bump only for package @lljj/vue3-form-naive diff --git a/packages/lib/vue3/vue3-form-naive/package.json b/packages/lib/vue3/vue3-form-naive/package.json index 18718de0..1f9821a3 100644 --- a/packages/lib/vue3/vue3-form-naive/package.json +++ b/packages/lib/vue3/vue3-form-naive/package.json @@ -1,6 +1,6 @@ { "name": "@lljj/vue3-form-naive", - "version": "1.17.1", + "version": "1.18.0", "description": "基于 Vue3 、Naive、JsonSchema快速构建一个带完整校验的form表单", "main": "dist/vue3-form-naive.umd.min.js", "module": "dist/vue3-form-naive.esm.min.js", @@ -16,8 +16,8 @@ "jsonSchema" ], "dependencies": { - "@lljj/vjsf-utils": "1.17.1", - "@lljj/vue3-form-core": "1.17.1" + "@lljj/vjsf-utils": "1.18.0", + "@lljj/vue3-form-core": "1.18.0" }, "typings": "types/index.d.ts", "files": [