diff --git a/packages/crypto/CHANGELOG.md b/packages/crypto/CHANGELOG.md index 88377ef..35a1905 100644 --- a/packages/crypto/CHANGELOG.md +++ b/packages/crypto/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [3.0.0](https://github.com/Alwatr/alwatr-es-sdk/compare/@alwatr/crypto@2.0.0...@alwatr/crypto@3.0.0) (2023-12-09) + +### Bug Fixes + +* **crypto:** use import type ([30e3bac](https://github.com/Alwatr/alwatr-es-sdk/commit/30e3bacb187d58417cb62e2a1511de4ade3f80c0)) by @njfamirm + +### Features + +* **crypto/api:** AlwatrCryptoFactory with secret and device id ([2d754a1](https://github.com/Alwatr/alwatr-es-sdk/commit/2d754a19b2f04f64d0828e31ba004fc192f466d3)) by @njfamirm +* **crypto/api:** device id generator preconfig ([71e80d6](https://github.com/Alwatr/alwatr-es-sdk/commit/71e80d63743579505a6be17d014c364e9f6cf55c)) by @njfamirm +* **crypto:** complete rewrite with new api ([3d56861](https://github.com/Alwatr/alwatr-es-sdk/commit/3d56861a2857e760c7cd5f03be98f003738fc7a9)) by @AliMD +* **crypto:** rename user file to api ([52343ea](https://github.com/Alwatr/alwatr-es-sdk/commit/52343ead04c23f50bedac2caa01f46bf489ab318)) by @njfamirm + +### BREAKING CHANGES + +* **crypto:** new api +* **crypto/api:** rename AlwatrUserGenerator to AlwatrCryptoFactory and change config + # [2.0.0](https://github.com/Alwatr/eslib/compare/@alwatr/crypto@1.2.1...@alwatr/crypto@2.0.0) (2023-11-29) ### Features diff --git a/packages/crypto/package.json b/packages/crypto/package.json index a89eccb..ec5bede 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/crypto", - "version": "2.0.0", + "version": "3.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 36c58a7..2a5f560 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.3](https://github.com/Alwatr/alwatr-es-sdk/compare/@alwatr/fetch@2.1.2...@alwatr/fetch@2.1.3) (2023-12-09) + +**Note:** Version bump only for package @alwatr/fetch + ## [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 diff --git a/packages/fetch/package.json b/packages/fetch/package.json index 262bb49..5d86d9f 100644 --- a/packages/fetch/package.json +++ b/packages/fetch/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/fetch", - "version": "2.1.2", + "version": "2.1.3", "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 a3210ed..24dae16 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.2](https://github.com/Alwatr/alwatr-es-sdk/compare/@alwatr/logger@2.3.1...@alwatr/logger@2.3.2) (2023-12-09) + +**Note:** Version bump only for package @alwatr/logger + ## [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 diff --git a/packages/logger/package.json b/packages/logger/package.json index 4ef6eac..f0a2c46 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/logger", - "version": "2.3.1", + "version": "2.3.2", "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 29e650d..a4a5acc 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.3](https://github.com/Alwatr/alwatr-es-sdk/compare/@alwatr/math@1.2.2...@alwatr/math@1.2.3) (2023-12-09) + +**Note:** Version bump only for package @alwatr/math + ## [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 diff --git a/packages/math/package.json b/packages/math/package.json index 717b378..669eaf1 100644 --- a/packages/math/package.json +++ b/packages/math/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/math", - "version": "1.2.2", + "version": "1.2.3", "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 b026b4f..990c12e 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.3](https://github.com/Alwatr/alwatr-es-sdk/compare/@alwatr/nano-server@1.2.2...@alwatr/nano-server@1.2.3) (2023-12-09) + +**Note:** Version bump only for package @alwatr/nano-server + ## [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 diff --git a/packages/nano-server/package.json b/packages/nano-server/package.json index b4e0f3a..9e1d9d0 100644 --- a/packages/nano-server/package.json +++ b/packages/nano-server/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nano-server", - "version": "1.2.2", + "version": "1.2.3", "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 9c300ce..406e3b2 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.3](https://github.com/Alwatr/alwatr-es-sdk/compare/@alwatr/type@1.2.2...@alwatr/type@1.2.3) (2023-12-09) + +**Note:** Version bump only for package @alwatr/type + ## [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 diff --git a/packages/type/package.json b/packages/type/package.json index de14287..6f2d119 100644 --- a/packages/type/package.json +++ b/packages/type/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/type", - "version": "1.2.2", + "version": "1.2.3", "description": "Alwatr projects common entities types", "keywords": [ "type", diff --git a/packages/util/CHANGELOG.md b/packages/util/CHANGELOG.md index ff625aa..e15873c 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.3](https://github.com/Alwatr/alwatr-es-sdk/compare/@alwatr/util@1.3.2...@alwatr/util@1.3.3) (2023-12-09) + +**Note:** Version bump only for package @alwatr/util + ## [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 diff --git a/packages/util/package.json b/packages/util/package.json index 4e33969..520d906 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/util", - "version": "1.3.2", + "version": "1.3.3", "description": "Util library written in tiny TypeScript module.", "keywords": [ "util", diff --git a/packages/validator/CHANGELOG.md b/packages/validator/CHANGELOG.md index beba367..b46cfc6 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.3](https://github.com/Alwatr/alwatr-es-sdk/compare/@alwatr/validator@1.2.2...@alwatr/validator@1.2.3) (2023-12-09) + +**Note:** Version bump only for package @alwatr/validator + ## [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 diff --git a/packages/validator/package.json b/packages/validator/package.json index fbbf475..12722c3 100644 --- a/packages/validator/package.json +++ b/packages/validator/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/validator", - "version": "1.2.2", + "version": "1.2.3", "description": "Simple useful validator library written in tiny TypeScript module.", "keywords": [ "validator",