From c349fe79b6c72ad1bb87b9bf166eb67cb2e81865 Mon Sep 17 00:00:00 2001 From: simonguo Date: Thu, 11 Apr 2024 10:32:23 +0800 Subject: [PATCH] build: bump 2.2.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 399724e..4cca011 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [2.2.0](https://github.com/rsuite/schema-typed/compare/2.1.3...2.2.0) (2024-04-11) + + +### Features + +* add support for `equalTo` and `proxy` ([#78](https://github.com/rsuite/schema-typed/issues/78)) ([d9f0e55](https://github.com/rsuite/schema-typed/commit/d9f0e555cf532731839584b0c036648001fe0503)) +* add support for `label` method ([#77](https://github.com/rsuite/schema-typed/issues/77)) ([9ff16c3](https://github.com/rsuite/schema-typed/commit/9ff16c346d6f13caabd4910a7d920c1c11eced18)) +* **Schema:** support nested object check with `checkForField` and `checkForFieldAsync` ([#76](https://github.com/rsuite/schema-typed/issues/76)) ([e315aec](https://github.com/rsuite/schema-typed/commit/e315aec657ee230f2cf235861e05b37a7eedd274)) +* **StringType:** add alllowMailto option to isURL rule ([#72](https://github.com/rsuite/schema-typed/issues/72)) ([349dc42](https://github.com/rsuite/schema-typed/commit/349dc429b51db89e7b261ed24aa006435c501685)) + + + ## [2.1.3](https://github.com/rsuite/schema-typed/compare/2.1.2...2.1.3) (2023-05-06) diff --git a/README.md b/README.md index b22e341..4c0713f 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Schema for data modeling & validation - [Getting Started](#getting-started) - [Multiple verification](#multiple-verification) - [Custom verification](#custom-verification) - - [Multi-field cross validation](#multi-field-cross-validation) + - [Field dependency validation](#field-dependency-validation) - [Asynchronous check](#asynchronous-check) - [Validate nested objects](#validate-nested-objects) - [Combine](#combine) diff --git a/package-lock.json b/package-lock.json index a73fd17..13f2a4c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "schema-typed", - "version": "2.1.3", + "version": "2.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "schema-typed", - "version": "2.1.3", + "version": "2.2.0", "license": "MIT", "dependencies": { "lodash.get": "^4.4.2", diff --git a/package.json b/package.json index 84f68b0..f6206ad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "schema-typed", - "version": "2.1.3", + "version": "2.2.0", "description": "Schema for data modeling & validation", "main": "lib/index.js", "module": "es/index.js",