diff --git a/.cz.yaml b/.cz.yaml index 736c57c..3ff0166 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -17,5 +17,5 @@ commitizen: prerelease_offset: 1 tag_format: $version update_changelog_on_bump: false - version: 0.1.0 + version: 0.2.0 version_scheme: semver diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dc3837..8cc0d95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,42 @@ +## 0.2.0 (2024-11-15) + +### feat + +- **component**: Add missing navbar icons +- **component**: Add ticket comment inline editing +- add add route for ticket +- **component**: Check for table data, if none report so +- Add route for common model that contains PK +- **layout**: Use the url's as provided by API for models +- **component**: Format a charfield as hyperlink is metadata has `autolink=true` +- **component**: Auto-Expand Text area to content height style +- **component**: Auto-Expand Text area to content height +- **component**: Correctly convert ISO8601 with TZ to display in browser local TZ +- **component**: Support Timezoned DateTime fields +- **function**: Add Delete mehod to urlBuilder +- **layout**: display non-field errors at the top of the form +- **layout**: Cater for multi-select values +- **component**: Add support for multi-select form field +- **layout**: Form field error, set to be no larger than field +- **layout**: On form field error, scroll to top of form +- Support Markdown field + +### Fixes + +- **layout**: ensure all metadata is loaded prior to rendering a ticket +- Add missing route for project task add +- correct logic for history route to work +- **hook**: dont allow fields to be set to `undefined` within urlBuilder +- **layout**: if field is dict, ensure initial data is correctly set to val of `.id` +- **layout**: within form handle JSON data correctly when an object +- **component**: dont attempt to access field in double column if it doesnt exist +- **layout**: Ensure that Markdown code blocks do wrap text + +### Refactoring + +- **component**: Pass field object directly to textarea +- **component**: Pass in the entire field meta and have the component figure out the values + ## 0.1.0 (2024-11-10) ### feat diff --git a/package-lock.json b/package-lock.json index 6eb89c6..fa29fc8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "centurion-erp-ui", - "version": "0.1.0", + "version": "0.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "centurion-erp-ui", - "version": "0.1.0", + "version": "0.2.0", "dependencies": { "highlight.js": "^11.10.0", "markdown-it": "^14.1.0", diff --git a/package.json b/package.json index 82ebeb7..f14c578 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "centurion-erp-ui", - "version": "0.1.0", + "version": "0.2.0", "private": true, "dependencies": { "highlight.js": "^11.10.0",