diff --git a/CHANGELOG.md b/CHANGELOG.md index 970a0d9..9fc5b99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.1.0](https://github.com/finnair/v-validation/compare/v7.0.0...v7.1.0) (2025-01-23) + +### Features + +- JsonBigInt constructor supports string and number inputs ([#127](https://github.com/finnair/v-validation/issues/127)) ([0b67fb1](https://github.com/finnair/v-validation/commit/0b67fb18c2189d2520ac34abb7107663f51f18ad)) +- path-based Diff configuration to allow any value to be handled as "primitive" ([#128](https://github.com/finnair/v-validation/issues/128)) ([4222b6d](https://github.com/finnair/v-validation/commit/4222b6d58610323219af8ebf1bc5832dc06f008b)) + # [7.0.0](https://github.com/finnair/v-validation/compare/v7.0.0-alpha.9...v7.0.0) (2025-01-07) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 9c7b652..5896e82 100644 --- a/lerna.json +++ b/lerna.json @@ -1,4 +1,4 @@ { - "version": "7.0.0", + "version": "7.1.0", "npmClient": "yarn" } diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 8e2d558..65ba9ce 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.1.0](https://github.com/finnair/v-validation/compare/v7.0.0...v7.1.0) (2025-01-23) + +### Features + +- JsonBigInt constructor supports string and number inputs ([#127](https://github.com/finnair/v-validation/issues/127)) ([0b67fb1](https://github.com/finnair/v-validation/commit/0b67fb18c2189d2520ac34abb7107663f51f18ad)) + # [7.0.0](https://github.com/finnair/v-validation/compare/v7.0.0-alpha.9...v7.0.0) (2025-01-07) ### Features diff --git a/packages/core/package.json b/packages/core/package.json index 1b2c597..74f7374 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@finnair/v-validation", - "version": "7.0.0", + "version": "7.1.0", "private": false, "description": "V-validation core package", "main": "./dist/cjs/index.js", @@ -48,6 +48,6 @@ "@finnair/path": ">=7" }, "devDependencies": { - "@finnair/path": "^7.0.0" + "@finnair/path": "^7.1.0" } } diff --git a/packages/diff/CHANGELOG.md b/packages/diff/CHANGELOG.md index a801710..e9e8784 100644 --- a/packages/diff/CHANGELOG.md +++ b/packages/diff/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.1.0](https://github.com/finnair/v-validation/compare/v7.0.0...v7.1.0) (2025-01-23) + +### Features + +- path-based Diff configuration to allow any value to be handled as "primitive" ([#128](https://github.com/finnair/v-validation/issues/128)) ([4222b6d](https://github.com/finnair/v-validation/commit/4222b6d58610323219af8ebf1bc5832dc06f008b)) + # [7.0.0](https://github.com/finnair/v-validation/compare/v7.0.0-alpha.9...v7.0.0) (2025-01-07) **Note:** Version bump only for package @finnair/diff diff --git a/packages/diff/package.json b/packages/diff/package.json index b4d8f5d..913ac20 100644 --- a/packages/diff/package.json +++ b/packages/diff/package.json @@ -1,6 +1,6 @@ { "name": "@finnair/diff", - "version": "7.0.0", + "version": "7.1.0", "private": false, "description": "Object Diff Based on Paths And Valudes of an Object", "main": "./dist/cjs/index.js", @@ -42,7 +42,7 @@ "@finnair/path-parser": ">=7" }, "devDependencies": { - "@finnair/path": "^7.0.0", - "@finnair/path-parser": "^7.0.0" + "@finnair/path": "^7.1.0", + "@finnair/path-parser": "^7.1.0" } } diff --git a/packages/luxon/CHANGELOG.md b/packages/luxon/CHANGELOG.md index 44d7bfe..e2d4cc2 100644 --- a/packages/luxon/CHANGELOG.md +++ b/packages/luxon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.1.0](https://github.com/finnair/v-validation/compare/v7.0.0...v7.1.0) (2025-01-23) + +**Note:** Version bump only for package @finnair/v-validation-luxon + # [7.0.0](https://github.com/finnair/v-validation/compare/v7.0.0-alpha.9...v7.0.0) (2025-01-07) **Note:** Version bump only for package @finnair/v-validation-luxon diff --git a/packages/luxon/package.json b/packages/luxon/package.json index 05c176d..4f1ef41 100644 --- a/packages/luxon/package.json +++ b/packages/luxon/package.json @@ -1,6 +1,6 @@ { "name": "@finnair/v-validation-luxon", - "version": "7.0.0", + "version": "7.1.0", "private": false, "description": "Luxon validators", "main": "./dist/cjs/index.js", @@ -46,7 +46,7 @@ "luxon": "^3.4.4" }, "devDependencies": { - "@finnair/path": "^7.0.0", - "@finnair/v-validation": "^7.0.0" + "@finnair/path": "^7.1.0", + "@finnair/v-validation": "^7.1.0" } } diff --git a/packages/moment/CHANGELOG.md b/packages/moment/CHANGELOG.md index 02939a4..4724d58 100644 --- a/packages/moment/CHANGELOG.md +++ b/packages/moment/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.1.0](https://github.com/finnair/v-validation/compare/v7.0.0...v7.1.0) (2025-01-23) + +**Note:** Version bump only for package @finnair/v-validation-moment + # [7.0.0](https://github.com/finnair/v-validation/compare/v7.0.0-alpha.9...v7.0.0) (2025-01-07) ### Bug Fixes diff --git a/packages/moment/package.json b/packages/moment/package.json index 650f65c..b587c36 100644 --- a/packages/moment/package.json +++ b/packages/moment/package.json @@ -1,6 +1,6 @@ { "name": "@finnair/v-validation-moment", - "version": "7.0.0", + "version": "7.1.0", "private": false, "description": "Moment validators", "main": "./dist/cjs/index.js", @@ -46,7 +46,7 @@ "moment": "^2.30.0" }, "devDependencies": { - "@finnair/path": "^7.0.0", - "@finnair/v-validation": "^7.0.0" + "@finnair/path": "^7.1.0", + "@finnair/v-validation": "^7.1.0" } } diff --git a/packages/path-parser/CHANGELOG.md b/packages/path-parser/CHANGELOG.md index c5da939..29c72e4 100644 --- a/packages/path-parser/CHANGELOG.md +++ b/packages/path-parser/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.1.0](https://github.com/finnair/v-validation/compare/v7.0.0...v7.1.0) (2025-01-23) + +**Note:** Version bump only for package @finnair/path-parser + # [7.0.0](https://github.com/finnair/v-validation/compare/v7.0.0-alpha.9...v7.0.0) (2025-01-07) **Note:** Version bump only for package @finnair/path-parser diff --git a/packages/path-parser/package.json b/packages/path-parser/package.json index 30c2411..a499c6e 100644 --- a/packages/path-parser/package.json +++ b/packages/path-parser/package.json @@ -1,6 +1,6 @@ { "name": "@finnair/path-parser", - "version": "7.0.0", + "version": "7.1.0", "private": false, "description": "Simple object path as array of strings and numbers", "main": "./dist/cjs/index.js", @@ -47,6 +47,6 @@ "@finnair/path": ">=7" }, "devDependencies": { - "@finnair/path": "^7.0.0" + "@finnair/path": "^7.1.0" } } diff --git a/packages/path/CHANGELOG.md b/packages/path/CHANGELOG.md index f5c72f7..92542d0 100644 --- a/packages/path/CHANGELOG.md +++ b/packages/path/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.1.0](https://github.com/finnair/v-validation/compare/v7.0.0...v7.1.0) (2025-01-23) + +**Note:** Version bump only for package @finnair/path + # [7.0.0](https://github.com/finnair/v-validation/compare/v7.0.0-alpha.9...v7.0.0) (2025-01-07) **Note:** Version bump only for package @finnair/path diff --git a/packages/path/package.json b/packages/path/package.json index 0e11e07..e302c82 100644 --- a/packages/path/package.json +++ b/packages/path/package.json @@ -1,6 +1,6 @@ { "name": "@finnair/path", - "version": "7.0.0", + "version": "7.1.0", "private": false, "description": "Simple object path as array of strings and numbers", "main": "./dist/cjs/index.js",