From 27cb935580d5ccdc4459f1018c66f23ea0a42ddf Mon Sep 17 00:00:00 2001 From: Ali Mihandoost Date: Thu, 30 Nov 2023 02:26:59 +0330 Subject: [PATCH] release: - @alwatr/crypto@2.0.0 - @alwatr/fetch@2.1.2 - @alwatr/logger@2.3.1 - @alwatr/math@1.2.2 - @alwatr/nano-server@1.2.2 - @alwatr/type@1.2.2 - @alwatr/util@1.3.2 - @alwatr/validator@1.2.2 --- packages/crypto/CHANGELOG.md | 16 ++++++++++++++++ packages/crypto/package.json | 2 +- packages/fetch/CHANGELOG.md | 4 ++++ packages/fetch/package.json | 2 +- packages/logger/CHANGELOG.md | 4 ++++ packages/logger/package.json | 2 +- packages/math/CHANGELOG.md | 4 ++++ packages/math/package.json | 2 +- packages/nano-server/CHANGELOG.md | 4 ++++ packages/nano-server/package.json | 2 +- packages/type/CHANGELOG.md | 4 ++++ packages/type/package.json | 2 +- packages/util/CHANGELOG.md | 4 ++++ packages/util/package.json | 2 +- packages/validator/CHANGELOG.md | 4 ++++ packages/validator/package.json | 2 +- 16 files changed, 52 insertions(+), 8 deletions(-) diff --git a/packages/crypto/CHANGELOG.md b/packages/crypto/CHANGELOG.md index 491fe7f..88377ef 100644 --- a/packages/crypto/CHANGELOG.md +++ b/packages/crypto/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.0.0](https://github.com/Alwatr/eslib/compare/@alwatr/crypto@1.2.1...@alwatr/crypto@2.0.0) (2023-11-29) + +### Features + +* **crypto/hash:** review and update all methods and documents ([14acd26](https://github.com/Alwatr/eslib/commit/14acd265a19b1b67bd32f725468fe66985464fe6)) by @AliMD +* **crypto/preConfig:** update prefix and secret algorithm ([0cfff12](https://github.com/Alwatr/eslib/commit/0cfff124e692d02aad0b5c97908df63bc692f896)) by @AliMD +* **crypto/token:** review and update all methods and documents ([dc943f8](https://github.com/Alwatr/eslib/commit/dc943f8a007567b58e9e3b7f9cada556ac76ae9b)) by @AliMD +* **crypto/user:** review and update all methods and documents ([bb79fa8](https://github.com/Alwatr/eslib/commit/bb79fa81f8632d5fe75cac813238b04094d0bb6a)) by @AliMD +* **crypto:** prefix option ([6be5c90](https://github.com/Alwatr/eslib/commit/6be5c90dad4674e8ae3e27611a13dcf1e08ce11a)) by @AliMD + +### BREAKING CHANGES + +* **crypto/user:** methods name updated +* **crypto/token:** methods name updated +* **crypto/hash:** methods name updated + ## [1.2.1](https://github.com/Alwatr/eslib/compare/@alwatr/crypto@1.2.0...@alwatr/crypto@1.2.1) (2023-11-23) **Note:** Version bump only for package @alwatr/crypto diff --git a/packages/crypto/package.json b/packages/crypto/package.json index 19b50bc..93bdb5f 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/crypto", - "version": "1.2.1", + "version": "2.0.0", "description": "A robust generator of secure authentication HOTP tokens, employing the HMAC-based One-Time Password algorithm, accompanied by a suite of cryptographic utilities, all encapsulated within a compact TypeScript module.", "keywords": [ "crypto", diff --git a/packages/fetch/CHANGELOG.md b/packages/fetch/CHANGELOG.md index f997e12..36c58a7 100644 --- a/packages/fetch/CHANGELOG.md +++ b/packages/fetch/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. +## [2.1.2](https://github.com/Alwatr/eslib/compare/@alwatr/fetch@2.1.1...@alwatr/fetch@2.1.2) (2023-11-29) + +**Note:** Version bump only for package @alwatr/fetch + ## [2.1.1](https://github.com/Alwatr/eslib/compare/@alwatr/fetch@2.1.0...@alwatr/fetch@2.1.1) (2023-11-23) **Note:** Version bump only for package @alwatr/fetch diff --git a/packages/fetch/package.json b/packages/fetch/package.json index 9b62f67..dea3b9c 100644 --- a/packages/fetch/package.json +++ b/packages/fetch/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/fetch", - "version": "2.1.1", + "version": "2.1.2", "description": "Enhanced fetch API with cache strategy, retry pattern, timeout, helper methods and enhanced types written in tiny TypeScript, ES module.", "keywords": [ "fetch", diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index 221bda3..a3210ed 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/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. +## [2.3.1](https://github.com/Alwatr/eslib/compare/@alwatr/logger@2.3.0...@alwatr/logger@2.3.1) (2023-11-29) + +**Note:** Version bump only for package @alwatr/logger + # [2.3.0](https://github.com/Alwatr/eslib/compare/@alwatr/logger@2.2.0...@alwatr/logger@2.3.0) (2023-11-23) ### Features diff --git a/packages/logger/package.json b/packages/logger/package.json index bdb7b7f..ed85f0b 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/logger", - "version": "2.3.0", + "version": "2.3.1", "description": "Fancy colorful console debugger with custom scope written in tiny TypeScript, ES module.", "keywords": [ "log", diff --git a/packages/math/CHANGELOG.md b/packages/math/CHANGELOG.md index c99e6c6..29e650d 100644 --- a/packages/math/CHANGELOG.md +++ b/packages/math/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. +## [1.2.2](https://github.com/Alwatr/eslib/compare/@alwatr/math@1.2.1...@alwatr/math@1.2.2) (2023-11-29) + +**Note:** Version bump only for package @alwatr/math + ## [1.2.1](https://github.com/Alwatr/eslib/compare/@alwatr/math@1.2.0...@alwatr/math@1.2.1) (2023-11-23) **Note:** Version bump only for package @alwatr/math diff --git a/packages/math/package.json b/packages/math/package.json index 0b8b731..6a654d5 100644 --- a/packages/math/package.json +++ b/packages/math/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/math", - "version": "1.2.1", + "version": "1.2.2", "description": "Simple useful Math library written in tiny TypeScript module.", "keywords": [ "math", diff --git a/packages/nano-server/CHANGELOG.md b/packages/nano-server/CHANGELOG.md index 59ec8bc..b026b4f 100644 --- a/packages/nano-server/CHANGELOG.md +++ b/packages/nano-server/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. +## [1.2.2](https://github.com/Alwatr/eslib/compare/@alwatr/nano-server@1.2.1...@alwatr/nano-server@1.2.2) (2023-11-29) + +**Note:** Version bump only for package @alwatr/nano-server + ## [1.2.1](https://github.com/Alwatr/eslib/compare/@alwatr/nano-server@1.2.0...@alwatr/nano-server@1.2.1) (2023-11-23) **Note:** Version bump only for package @alwatr/nano-server diff --git a/packages/nano-server/package.json b/packages/nano-server/package.json index 46de979..0908ef7 100644 --- a/packages/nano-server/package.json +++ b/packages/nano-server/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nano-server", - "version": "1.2.1", + "version": "1.2.2", "description": "Elegant powerful nodejs server for nanoservice use cases, written in tiny TypeScript module.", "keywords": [ "server", diff --git a/packages/type/CHANGELOG.md b/packages/type/CHANGELOG.md index 6ef5416..9c300ce 100644 --- a/packages/type/CHANGELOG.md +++ b/packages/type/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. +## [1.2.2](https://github.com/Alwatr/eslib/compare/@alwatr/type@1.2.1...@alwatr/type@1.2.2) (2023-11-29) + +**Note:** Version bump only for package @alwatr/type + ## [1.2.1](https://github.com/Alwatr/eslib/compare/@alwatr/type@1.2.0...@alwatr/type@1.2.1) (2023-11-23) **Note:** Version bump only for package @alwatr/type diff --git a/packages/type/package.json b/packages/type/package.json index 7645372..e93dd19 100644 --- a/packages/type/package.json +++ b/packages/type/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/type", - "version": "1.2.1", + "version": "1.2.2", "description": "Alwatr projects common entities types", "keywords": [ "type", diff --git a/packages/util/CHANGELOG.md b/packages/util/CHANGELOG.md index 44bdd70..ff625aa 100644 --- a/packages/util/CHANGELOG.md +++ b/packages/util/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. +## [1.3.2](https://github.com/Alwatr/eslib/compare/@alwatr/util@1.3.1...@alwatr/util@1.3.2) (2023-11-29) + +**Note:** Version bump only for package @alwatr/util + ## [1.3.1](https://github.com/Alwatr/eslib/compare/@alwatr/util@1.3.0...@alwatr/util@1.3.1) (2023-11-23) **Note:** Version bump only for package @alwatr/util diff --git a/packages/util/package.json b/packages/util/package.json index f4956e2..b07fcb6 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/util", - "version": "1.3.1", + "version": "1.3.2", "description": "Util library written in tiny TypeScript module.", "keywords": [ "util", diff --git a/packages/validator/CHANGELOG.md b/packages/validator/CHANGELOG.md index d2b3eee..beba367 100644 --- a/packages/validator/CHANGELOG.md +++ b/packages/validator/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. +## [1.2.2](https://github.com/Alwatr/eslib/compare/@alwatr/validator@1.2.1...@alwatr/validator@1.2.2) (2023-11-29) + +**Note:** Version bump only for package @alwatr/validator + ## [1.2.1](https://github.com/Alwatr/eslib/compare/@alwatr/validator@1.2.0...@alwatr/validator@1.2.1) (2023-11-23) **Note:** Version bump only for package @alwatr/validator diff --git a/packages/validator/package.json b/packages/validator/package.json index 450c1cf..bc565f6 100644 --- a/packages/validator/package.json +++ b/packages/validator/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/validator", - "version": "1.2.1", + "version": "1.2.2", "description": "Simple useful validator library written in tiny TypeScript module.", "keywords": [ "validator",