From 76454eabdb5673d0816bc231f0b353cfc0576ec9 Mon Sep 17 00:00:00 2001 From: 1on Date: Tue, 3 Aug 2021 11:01:03 +0300 Subject: [PATCH] chore(release): 0.6.0 --- CHANGELOG.md | 35 +++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..23385b1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,35 @@ +# Changelog + +All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +## [0.6.0](https://github.com/retailcrm/vue-formulario/compare/v0.5.1...v0.6.0) (2021-08-03) + + +### ⚠ BREAKING CHANGES + +* Validation event payload property "name" renamed to "path" +* FormularioFieldGroup - isArrayItem prop no longer required, replaced with integer name value detection +* FormularioField - individual field errors are always presumed as a string array +* FormularioForm - renamed prop errors to fieldsErrors, some internal renamings; tests semantic improvements +* FormularioForm - renamed formularioValue into state +* FormularioField - removed formulario-input class from root element + +### Features + +* Added possibility to run / reset form validation via $formulario ([fd780cd](https://github.com/retailcrm/vue-formulario/commit/fd780cd585d55d2f4cc0aac9c24ed515f0cf8c57)) +* FormularioField - individual field errors are always presumed as a string array ([9a344bf](https://github.com/retailcrm/vue-formulario/commit/9a344bf8b52f1889fcc93a253b08de5c360e5873)) +* FormularioForm - added ::runValidation() method to run entire form validation manually and return all form violations ([aee0dc9](https://github.com/retailcrm/vue-formulario/commit/aee0dc977a538e6279ce0006ae675182f44f1333)) +* Renamed FormularioInput => FormularioField, FormularioGrouping => FormularioFieldGroup, old names are preserved in plugin install method for compatibility ([013931f](https://github.com/retailcrm/vue-formulario/commit/013931fbfc1d0a5d0a8b27c7a2b9555a039bd142)) +* Validation event payload property "name" renamed to "path" ([7c2a9e8](https://github.com/retailcrm/vue-formulario/commit/7c2a9e8110b443f0f2108d963dcd510e0ff2feb5)) + + +* FormularioField - removed formulario-input class from root element ([735fa3f](https://github.com/retailcrm/vue-formulario/commit/735fa3f126b7b9f8f485b5928f396f2d787ace18)) +* FormularioFieldGroup - isArrayItem prop no longer required, replaced with integer name value detection ([6612d8a](https://github.com/retailcrm/vue-formulario/commit/6612d8a5f930b535241cd0d27e2bfe7742f71627)) +* FormularioForm - renamed formularioValue into state ([8144c27](https://github.com/retailcrm/vue-formulario/commit/8144c27c692fce3e685086180cffa52a3f78a25b)) +* FormularioForm - renamed prop errors to fieldsErrors, some internal renamings; tests semantic improvements ([4e05844](https://github.com/retailcrm/vue-formulario/commit/4e05844e7325323d7c2054d362a5c1ae2cca8e13)) + + +### Fixes + +* Got rid of redundant input events ([b4ab340](https://github.com/retailcrm/vue-formulario/commit/b4ab3404a4ea078f0e2834a07afa93aa57bc025d)) +* Url validator now allows empty value ([1023ae2](https://github.com/retailcrm/vue-formulario/commit/1023ae2fc17b4a170d1ba444f1222fd0563b5caa)) diff --git a/package.json b/package.json index 56194d6..75cd393 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@retailcrm/vue-formulario", - "version": "0.5.1", + "version": "0.6.0", "license": "MIT", "author": "RetailDriverLLC ", "main": "dist/formulario.umd.js",