diff --git a/CHANGELOG.md b/CHANGELOG.md index 46f65a8f5..8e804ae64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ _This changelog follows the [keep a changelog][keep-a-changelog]_ format to maintain a human readable changelog. +### [0.14.2](https://github.com/typestack/class-validator/compare/v0.14.1...v0.14.2) (2025-01-17) + +#### Added + +- add validator name to `@IsOptional` decorator ([#2044](https://github.com/typestack/class-validator/issues/2044)) + +#### Fixed + +- fix forbidUnknownValues to true by default when validatorOptions is undefined ([#2196](https://github.com/typestack/class-validator/issues/2196)) , closes [#1906](https://github.com/typestack/class-validator/issues/1906) + +- fix options receiving error in `@IsBase64` decorator ([#2549](https://github.com/typestack/class-validator/issues/2549)) , closes [#2548](https://github.com/typestack/class-validator/issues/2548) + +#### Changed + +- update `libphonenumber-js` to `^1.11.1` from `^1.10.53` +- update various dev-dependencies + ### [0.14.1](https://github.com/typestack/class-validator/compare/v0.14.0...v0.14.1) (2024-01-12) #### Added diff --git a/package-lock.json b/package-lock.json index 520c58925..367a742e5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "class-validator", - "version": "0.14.1", + "version": "0.14.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "class-validator", - "version": "0.14.1", + "version": "0.14.2", "license": "MIT", "dependencies": { "@types/validator": "^13.11.8", diff --git a/package.json b/package.json index f2a80485a..0d43157a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "class-validator", - "version": "0.14.1", + "version": "0.14.2", "description": "Decorator-based property validation for classes.", "author": "TypeStack contributors", "license": "MIT",