From 06d4ce112695208db62ffc59551e53e348434b57 Mon Sep 17 00:00:00 2001 From: Ayo Date: Sat, 25 Mar 2023 20:52:53 +0100 Subject: [PATCH] chore: move RELEASE content to CHANGELOG --- packages/common/CHANGELOG.md | 29 ++++++++++++ packages/common/RELEASE.md | 28 ----------- packages/form/CHANGELOG.md | 84 +++++++++++++++++++++++++++++++++ packages/form/RELEASE.md | 83 -------------------------------- packages/validator/CHANGELOG.md | 46 ++++++++++++++++++ packages/validator/RELEASE.md | 44 ----------------- 6 files changed, 159 insertions(+), 155 deletions(-) delete mode 100644 packages/common/RELEASE.md delete mode 100644 packages/form/RELEASE.md delete mode 100644 packages/validator/RELEASE.md diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 9bc8848..6fe9a07 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -13,3 +13,32 @@ ### Patch Changes - 414a0bd: Fix dependencies for Astro v2+ support + +## v0.1.6 +- updates on how packages share files + +## v0.1.5 +- fix form method type to accept: 'get', 'post', 'dialog' + +## v0.1.4 +- form validation hook property `triggerValidationOn` +- form properties `action` and `method` + +## v0.1.2 +- make `Checkbox.checked` optional + +## v0.1.1 +- fix broken `ControlConfig` + +## 0.1.0 +- deprecate `labelPosition` prop +- TextArea and Dropdown types + +## 0.0.3 +- update package exports and files + +## 0.0.2 +- expose types on top-level index + +## 0.0.1 +- initialize @astro-reactive/common package \ No newline at end of file diff --git a/packages/common/RELEASE.md b/packages/common/RELEASE.md deleted file mode 100644 index 246d04a..0000000 --- a/packages/common/RELEASE.md +++ /dev/null @@ -1,28 +0,0 @@ -### v0.1.6 -- updates on how packages share files - -### v0.1.5 -- fix form method type to accept: 'get', 'post', 'dialog' - -### v0.1.4 -- form validation hook property `triggerValidationOn` -- form properties `action` and `method` - -### v0.1.2 -- make `Checkbox.checked` optional - -### v0.1.1 -- fix broken `ControlConfig` - -## 0.1.0 -- deprecate `labelPosition` prop -- TextArea and Dropdown types - -### 0.0.3 -- update package exports and files - -### 0.0.2 -- expose types on top-level index - -### 0.0.1 -- initialize @astro-reactive/common package \ No newline at end of file diff --git a/packages/form/CHANGELOG.md b/packages/form/CHANGELOG.md index 31eb2c9..07b028d 100644 --- a/packages/form/CHANGELOG.md +++ b/packages/form/CHANGELOG.md @@ -24,3 +24,87 @@ - Updated dependencies [414a0bd] - @astro-reactive/validator@0.3.2 - @astro-reactive/common@0.1.8 + +## v0.7.0 +- project chores: updates on how the packages share common files, initial codecov set up +- documentation updates: Readme examples and API docs update +- support for Astro v2 + +## v0.6.7 +- fix form method type to accept: 'get', 'post', 'dialog' + +## v0.6.6 +- implement validation hooks with form's `triggerValidationOn` prop +- types and intellisense improvements +- validation support for RadioGroup +- form's `action` and `method` props + +## v0.6.5 +- fix deps + +## v0.6.4 +- Form component's new `validateOnLoad` property +- FormGroup.setValue() method to set values for the whole form +- fix for Radio Group's inputs not having unique IDs + +## v0.6.3 +- make `Checkbox.checked` optional + +## v0.6.2 +- fix broken `ControlConfig` + +## v0.6.1 +- fix wrong dependency version + +## v0.6.0 +- deprecate `labelPosition` prop +- implement TextArea control +- add method `setValidators` to FormControl +- implement `readOnly` flag +- implement Dropdown control + +## v0.5.1 - v0.5.2 +- use @astro-reactive/common + +## v0.5.1 +- fix for dynamic import of validator causing errors (breaks independence) + +## v0.5.0 +- server-rendered validation errors (when control was set with invalid value) +- radio control accepts array of value or RadioOption +- added tests for form components + +## v0.4.5 +- update project documentations + +## v0.4.4 +- `validators` property in ControlConfig to set validators for a control + +## v0.4.1 +- set `showValidationHints` to true to show validation hints + +## v0.3.0 +- new control configuration type `ControlConfig` + +## v0.2.7 +- updated project logo + +## v0.2.6 +- support single `FormGroup` as input to the `Form` component +- implement `Form` component input prop `theme` +- add initial implementation of `FormControl` `isPristine` and `isValid` states +- filter out control with type 'submit' from the FormGroup.controls +- implement the submitControl Form input prop +- implement the FormControl placeholder attribute + +## v0.2.4 to v0.2.5 +- update package README +- update dependencies + +## v0.2.2 +- initial light and dark mode scaffold +- update package README + +## v0.2.1 +- FormGroup.get(name) - returns the FormControl with matching name +- FormControl.setValue(value) - sets the FormControl value diff --git a/packages/form/RELEASE.md b/packages/form/RELEASE.md deleted file mode 100644 index be59d13..0000000 --- a/packages/form/RELEASE.md +++ /dev/null @@ -1,83 +0,0 @@ -## v0.7.0 -- project chores: updates on how the packages share common files, initial codecov set up -- documentation updates: Readme examples and API docs update -- support for Astro v2 - -### v0.6.7 -- fix form method type to accept: 'get', 'post', 'dialog' - -### v0.6.6 -- implement validation hooks with form's `triggerValidationOn` prop -- types and intellisense improvements -- validation support for RadioGroup -- form's `action` and `method` props - -### v0.6.5 -- fix deps - -### v0.6.4 -- Form component's new `validateOnLoad` property -- FormGroup.setValue() method to set values for the whole form -- fix for Radio Group's inputs not having unique IDs - -### v0.6.3 -- make `Checkbox.checked` optional - -### v0.6.2 -- fix broken `ControlConfig` - -### v0.6.1 -- fix wrong dependency version - -## v0.6.0 -- deprecate `labelPosition` prop -- implement TextArea control -- add method `setValidators` to FormControl -- implement `readOnly` flag -- implement Dropdown control - -### v0.5.1 - v0.5.2 -- use @astro-reactive/common - -### v0.5.1 -- fix for dynamic import of validator causing errors (breaks independence) - -## v0.5.0 -- server-rendered validation errors (when control was set with invalid value) -- radio control accepts array of value or RadioOption -- added tests for form components - -### v0.4.5 -- update project documentations - -### v0.4.4 -- `validators` property in ControlConfig to set validators for a control - -### v0.4.1 -- set `showValidationHints` to true to show validation hints - -## v0.3.0 -- new control configuration type `ControlConfig` - -### v0.2.7 -- updated project logo - -### v0.2.6 -- support single `FormGroup` as input to the `Form` component -- implement `Form` component input prop `theme` -- add initial implementation of `FormControl` `isPristine` and `isValid` states -- filter out control with type 'submit' from the FormGroup.controls -- implement the submitControl Form input prop -- implement the FormControl placeholder attribute - -### v0.2.4 to v0.2.5 -- update package README -- update dependencies - -### v0.2.2 -- initial light and dark mode scaffold -- update package README - -### v0.2.1 -- FormGroup.get(name) - returns the FormControl with matching name -- FormControl.setValue(value) - sets the FormControl value diff --git a/packages/validator/CHANGELOG.md b/packages/validator/CHANGELOG.md index dc79d7f..fc00e13 100644 --- a/packages/validator/CHANGELOG.md +++ b/packages/validator/CHANGELOG.md @@ -17,3 +17,49 @@ - 414a0bd: Fix dependencies for Astro v2+ support - Updated dependencies [414a0bd] - @astro-reactive/common@0.1.8 + + +## v0.3.0 +- project chores: updates on how the packages share common files, initial codecov set up +- documentation updates: Readme examples and API docs update +- support for Astro v2 + +## v0.2.7 +- support form method type to accept: 'get', 'post', 'dialog' + +## v0.2.6 +- implement validation hooks with form's `triggerValidationOn` prop +- types and intellisense improvements + +## v0.2.5 +- fix deps + +## v0.2.4 +- Validation categories: Error, Warning, Info + +## v0.2.3 +- make `Checkbox.checked` optional + +## v0.2.2 +- fix broken `ControlConfig` + +## v0.2.1 +- fix wrong dependency version +## v0.2.0 +- deprecate `labelPosition` prop + +## v0.1.1 +- use @astro-reactive/common + +## v0.1.0 +- support server-rendered validation for forms + +## v0.0.4 +- update project documentation + +## v0.0.3 +- update examples on the README + +## v0.0.1 +- Validators +- validator functions diff --git a/packages/validator/RELEASE.md b/packages/validator/RELEASE.md deleted file mode 100644 index c573e69..0000000 --- a/packages/validator/RELEASE.md +++ /dev/null @@ -1,44 +0,0 @@ -## v0.3.0 -- project chores: updates on how the packages share common files, initial codecov set up -- documentation updates: Readme examples and API docs update -- support for Astro v2 - -### v0.2.7 -- support form method type to accept: 'get', 'post', 'dialog' - -### v0.2.6 -- implement validation hooks with form's `triggerValidationOn` prop -- types and intellisense improvements - -### v0.2.5 -- fix deps - -### v0.2.4 -- Validation categories: Error, Warning, Info - -### v0.2.3 -- make `Checkbox.checked` optional - -### v0.2.2 -- fix broken `ControlConfig` - -### v0.2.1 -- fix wrong dependency version -## v0.2.0 -- deprecate `labelPosition` prop - -### v0.1.1 -- use @astro-reactive/common - -## v0.1.0 -- support server-rendered validation for forms - -### v0.0.4 -- update project documentation - -### v0.0.3 -- update examples on the README - -### v0.0.1 -- Validators -- validator functions