diff --git a/CHANGELOG.md b/CHANGELOG.md
index afd6e93b..a6d4706f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,8 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+## [5.0.6] - 2024-09-20
+
+### Fixed
+
+- Removed ip lib parts CVE related
+- Updated to vuelidate 2+ (CVE related)
+
## [5.0.5] - 2024-09-18
+### Fixed
+
+- Fixed regex for ssh key
+- New version highlight for CVE
+- Bumped several versions
+
## [5.0.4] - 2024-08-18
### Added
@@ -726,7 +739,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Allow change password for current local user
- Start tracking versions
-[Unreleased]: https://github.com/ansibleguy76/ansibleforms/compare/5.0.5...HEAD
+[Unreleased]: https://github.com/ansibleguy76/ansibleforms/compare/5.0.6...HEAD
+
+[5.0.6]: https://github.com/ansibleguy76/ansibleforms/compare/5.0.5...5.0.6
[5.0.5]: https://github.com/ansibleguy76/ansibleforms/compare/5.0.4...5.0.5
diff --git a/app_versions.gradle b/app_versions.gradle
index f9cfc181..62d73250 100644
--- a/app_versions.gradle
+++ b/app_versions.gradle
@@ -1,2 +1,2 @@
-ext.version_code = 50005
-ext.version_name = "5.0.5"
+ext.version_code = 50006
+ext.version_name = "5.0.6"
diff --git a/client/package.json b/client/package.json
index 2628c715..371a7cc7 100644
--- a/client/package.json
+++ b/client/package.json
@@ -1,6 +1,6 @@
{
"name": "ansible_forms_vue",
- "version": "5.0.5",
+ "version": "5.0.6",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
@@ -43,7 +43,8 @@
"vue-showdown": "2.4.1",
"vue-toastification": "1.7.14",
"vue2-datepicker": "~3.11.1",
- "vuelidate": "~0.7.7",
+ "@vuelidate/core": "^2.0.3",
+ "@vuelidate/validators": "^2.0.4",
"yaml": "1.10.2"
},
"devDependencies": {
diff --git a/client/src/components/BulmaEditTable.vue b/client/src/components/BulmaEditTable.vue
index cb3d79b3..59849930 100644
--- a/client/src/components/BulmaEditTable.vue
+++ b/client/src/components/BulmaEditTable.vue
@@ -6,7 +6,7 @@
-
This field is required
-Must be at least {{$v.editedItem[field.name].$params.minLength.min}} characters long
-Can not be more than {{$v.editedItem[field.name].$params.maxLength.max}} characters long
-Value cannot be lower than {{$v.editedItem[field.name].$params.minValue.min}}
-Value cannot be higher than {{$v.editedItem[field.name].$params.maxValue.max}}
-{{$v.editedItem[field.name].$params.regex.description}}
-{{$v.editedItem[field.name].$params.notIn.description}}
-{{$v.editedItem[field.name].$params.in.description}}
+This field is required
+Must be at least {{v$.editedItem[field.name].minLength.$params.min}} characters long
+Can not be more than {{v$.editedItem[field.name].maxLength.$params.max}} characters long
+Value cannot be lower than {{v$.editedItem[field.name].minValue.$params.min}}
+Value cannot be higher than {{v$.editedItem[field.name].maxValue.$params.max}}
+{{v$.editedItem[field.name].regex.$params.description}}
+{{v$.editedItem[field.name].notIn.$params.description}}
+{{v$.editedItem[field.name].in.$params.description}}
@@ -168,15 +168,14 @@