diff --git a/CHANGELOG.md b/CHANGELOG.md index 44de04995..8a30080e8 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. +## [4.4.10](https://github.com/logaretm/vee-validate/compare/v4.4.9...v4.4.10) (2021-08-31) + + +### Bug Fixes + +* added silent validation run after reset closes [#3463](https://github.com/logaretm/vee-validate/issues/3463) ([a61f7ab](https://github.com/logaretm/vee-validate/commit/a61f7ab532d6d2fd9f237145f91bbcc9043431f6)) +* handle absent model value closes [#3468](https://github.com/logaretm/vee-validate/issues/3468) ([2c4a7ff](https://github.com/logaretm/vee-validate/commit/2c4a7ffb84811ae86a1698e6e15f41dc32f8fb8d)) +* **types:** remove arguments of PrivateFieldContext.handleReset ([2e45d1f](https://github.com/logaretm/vee-validate/commit/2e45d1f8a8444c0aabfd307364cadfab74802d02)) +* ensure option bound value type is preserved closes [#3440](https://github.com/logaretm/vee-validate/issues/3440) ([b144615](https://github.com/logaretm/vee-validate/commit/b1446152d6f6cd4843ab206d667a7d744c2a14fc)) + + + + + ## [4.4.9](https://github.com/logaretm/vee-validate/compare/v4.4.8...v4.4.9) (2021-08-05) diff --git a/lerna.json b/lerna.json index acbd16a84..7eeabb282 100644 --- a/lerna.json +++ b/lerna.json @@ -3,7 +3,7 @@ "packages/*" ], "npmClient": "yarn", - "version": "4.4.9", + "version": "4.4.10", "useWorkspaces": true, "command": { "version": { diff --git a/packages/i18n/CHANGELOG.md b/packages/i18n/CHANGELOG.md index 018da4f44..4c934cbdd 100644 --- a/packages/i18n/CHANGELOG.md +++ b/packages/i18n/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. +## [4.4.10](https://github.com/logaretm/vee-validate/compare/v4.4.9...v4.4.10) (2021-08-31) + +**Note:** Version bump only for package @vee-validate/i18n + + + + + ## [4.4.9](https://github.com/logaretm/vee-validate/compare/v4.4.8...v4.4.9) (2021-08-05) **Note:** Version bump only for package @vee-validate/i18n diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 15aab20a3..87f9505f9 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@vee-validate/i18n", - "version": "4.4.9", + "version": "4.4.10", "description": "Localization module for VeeValidate", "author": "Abdelrahman Awad ", "homepage": "https://vee-validate.logaretm.com/v4/guide/i18n", diff --git a/packages/rules/CHANGELOG.md b/packages/rules/CHANGELOG.md index 83f3f9541..f827d9113 100644 --- a/packages/rules/CHANGELOG.md +++ b/packages/rules/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. +## [4.4.10](https://github.com/logaretm/vee-validate/compare/v4.4.9...v4.4.10) (2021-08-31) + +**Note:** Version bump only for package @vee-validate/rules + + + + + ## [4.4.9](https://github.com/logaretm/vee-validate/compare/v4.4.8...v4.4.9) (2021-08-05) **Note:** Version bump only for package @vee-validate/rules diff --git a/packages/rules/package.json b/packages/rules/package.json index e8c0ae956..c8afec73a 100644 --- a/packages/rules/package.json +++ b/packages/rules/package.json @@ -1,6 +1,6 @@ { "name": "@vee-validate/rules", - "version": "4.4.9", + "version": "4.4.10", "description": "Form Validation for Vue.js", "author": "Abdelrahman Awad ", "license": "MIT", diff --git a/packages/vee-validate/CHANGELOG.md b/packages/vee-validate/CHANGELOG.md index 5ae917f51..2381f47e6 100644 --- a/packages/vee-validate/CHANGELOG.md +++ b/packages/vee-validate/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. +## [4.4.10](https://github.com/logaretm/vee-validate/compare/v4.4.9...v4.4.10) (2021-08-31) + + +### Bug Fixes + +* added silent validation run after reset closes [#3463](https://github.com/logaretm/vee-validate/issues/3463) ([a61f7ab](https://github.com/logaretm/vee-validate/commit/a61f7ab532d6d2fd9f237145f91bbcc9043431f6)) +* handle absent model value closes [#3468](https://github.com/logaretm/vee-validate/issues/3468) ([2c4a7ff](https://github.com/logaretm/vee-validate/commit/2c4a7ffb84811ae86a1698e6e15f41dc32f8fb8d)) +* **types:** remove arguments of PrivateFieldContext.handleReset ([2e45d1f](https://github.com/logaretm/vee-validate/commit/2e45d1f8a8444c0aabfd307364cadfab74802d02)) +* ensure option bound value type is preserved closes [#3440](https://github.com/logaretm/vee-validate/issues/3440) ([b144615](https://github.com/logaretm/vee-validate/commit/b1446152d6f6cd4843ab206d667a7d744c2a14fc)) + + + + + ## [4.4.9](https://github.com/logaretm/vee-validate/compare/v4.4.8...v4.4.9) (2021-08-05) diff --git a/packages/vee-validate/package.json b/packages/vee-validate/package.json index a739430ed..7d6ca82be 100644 --- a/packages/vee-validate/package.json +++ b/packages/vee-validate/package.json @@ -1,6 +1,6 @@ { "name": "vee-validate", - "version": "4.4.9", + "version": "4.4.10", "description": "Form Validation for Vue.js", "author": "Abdelrahman Awad ", "license": "MIT", diff --git a/packages/zod/CHANGELOG.md b/packages/zod/CHANGELOG.md index 96f053d6f..c0a1783f8 100644 --- a/packages/zod/CHANGELOG.md +++ b/packages/zod/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. +## [4.4.10](https://github.com/logaretm/vee-validate/compare/v4.4.9...v4.4.10) (2021-08-31) + +**Note:** Version bump only for package @vee-validate/zod + + + + + ## [4.4.9](https://github.com/logaretm/vee-validate/compare/v4.4.8...v4.4.9) (2021-08-05) **Note:** Version bump only for package @vee-validate/zod diff --git a/packages/zod/package.json b/packages/zod/package.json index 55ffcd6a3..fbab2bf22 100644 --- a/packages/zod/package.json +++ b/packages/zod/package.json @@ -1,6 +1,6 @@ { "name": "@vee-validate/zod", - "version": "4.4.9", + "version": "4.4.10", "description": "vee-validate integration with zod schema validation", "author": "Abdelrahman Awad ", "license": "MIT",