From c98dd471f6edd8a51c7740c38a55281d63ebafed Mon Sep 17 00:00:00 2001 From: haiweilian Date: Thu, 17 Oct 2024 08:59:20 +0800 Subject: [PATCH 1/4] feat: release 0.14.2 --- package-lock.json | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 520c589254..367a742e5d 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 f2a80485ac..0d43157a11 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", From d9310d96513a96d4dd911ca3fc75524b7f90d9fc Mon Sep 17 00:00:00 2001 From: haiweilian Date: Tue, 22 Oct 2024 08:50:43 +0800 Subject: [PATCH 2/4] docs: update changelog for 0.14.2 --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ad4085a40..68afab23a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ _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) (2024-10-18) + +#### 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) + +#### Changed + +- update `libphonenumber-js` to `^1.11.1` from `^1.10.53` +- update various dev-dependencies + ### [0.14.0](https://github.com/typestack/class-validator/compare/v0.13.2...v0.14.0) (2022-12-09) ### Added From a2156a1581c1b80f9b17495a67aec48481c01768 Mon Sep 17 00:00:00 2001 From: haiweilian Date: Wed, 27 Nov 2024 13:41:08 +0800 Subject: [PATCH 3/4] chore: trigger merge From 4dde0ef97587104399ee785efa5fea1782baaa1a Mon Sep 17 00:00:00 2001 From: haiweilian Date: Fri, 17 Jan 2025 22:01:23 +0800 Subject: [PATCH 4/4] chore: update changelog --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d3cef95b8..8e804ae644 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ _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) (2024-10-18) +### [0.14.2](https://github.com/typestack/class-validator/compare/v0.14.1...v0.14.2) (2025-01-17) #### Added @@ -12,6 +12,8 @@ _This changelog follows the [keep a changelog][keep-a-changelog]_ format to main - 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`