From dc3c2aa3caa7b7bbc1937f10e241ad6f00f43dee Mon Sep 17 00:00:00 2001 From: Ali Mihandoost Date: Tue, 19 Sep 2023 21:19:52 +0330 Subject: [PATCH] release: new independent version - @alwatr/crypto@1.1.4 - @alwatr/fetch@2.0.0 - @alwatr/logger@1.1.4 - @alwatr/math@1.1.4 - @alwatr/nano-server@1.1.4 - @alwatr/type@1.1.3 - @alwatr/util@1.2.2 - @alwatr/validator@1.1.4 --- packages/crypto/CHANGELOG.md | 4 ++++ packages/crypto/package.json | 6 +++--- packages/fetch/CHANGELOG.md | 12 ++++++++++++ packages/fetch/package.json | 6 +++--- packages/logger/CHANGELOG.md | 4 ++++ packages/logger/package.json | 4 ++-- packages/math/CHANGELOG.md | 4 ++++ packages/math/package.json | 4 ++-- packages/nano-server/CHANGELOG.md | 4 ++++ packages/nano-server/package.json | 6 +++--- packages/type/CHANGELOG.md | 4 ++++ packages/type/package.json | 2 +- packages/util/CHANGELOG.md | 4 ++++ packages/util/package.json | 6 +++--- packages/validator/CHANGELOG.md | 4 ++++ packages/validator/package.json | 6 +++--- 16 files changed, 60 insertions(+), 20 deletions(-) diff --git a/packages/crypto/CHANGELOG.md b/packages/crypto/CHANGELOG.md index 137aa7b..bffad2d 100644 --- a/packages/crypto/CHANGELOG.md +++ b/packages/crypto/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.1.4](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/crypto@1.1.3...@alwatr/crypto@1.1.4) (2023-09-19) + +**Note:** Version bump only for package @alwatr/crypto + ## 1.1.3 (2023-09-19) **Note:** Version bump only for package @alwatr/crypto diff --git a/packages/crypto/package.json b/packages/crypto/package.json index 97b4b62..0a1d230 100644 --- a/packages/crypto/package.json +++ b/packages/crypto/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/crypto", - "version": "1.1.3", + "version": "1.1.4", "description": "Secure authentication HOTP token generator (the HMAC-based One-Time Password algorithm) and crypto utils written in tiny TypeScript module.", "keywords": [ "crypto", @@ -40,8 +40,8 @@ "url": "https://github.com/AliMD/alwatr-eslib/issues" }, "dependencies": { - "@alwatr/logger": "^1.1.3", - "@alwatr/math": "^1.1.3", + "@alwatr/logger": "^1.1.4", + "@alwatr/math": "^1.1.4", "tslib": "^2.6.2" } } diff --git a/packages/fetch/CHANGELOG.md b/packages/fetch/CHANGELOG.md index 51e453b..c612929 100644 --- a/packages/fetch/CHANGELOG.md +++ b/packages/fetch/CHANGELOG.md @@ -3,6 +3,18 @@ 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/AliMD/alwatr-eslib/compare/@alwatr/fetch@1.1.3...@alwatr/fetch@2.0.0) (2023-09-19) + +### Bug Fixes + +* **fetch:** remove @alwatr/signal ([03d947b](https://github.com/AliMD/alwatr-eslib/commit/03d947be3889d63805eabb7f4be618fed6da0d55)) by @AliMD + +* fix(fetch)!: remove fetchContext ([eba9cf0](https://github.com/AliMD/alwatr-eslib/commit/eba9cf0a443564478b5b985a69d0f54fbd514440)) by @AliMD + +### BREAKING CHANGES + +* fetchContext method removed + ## 1.1.3 (2023-09-19) ### Bug Fixes diff --git a/packages/fetch/package.json b/packages/fetch/package.json index 6f353db..e45b533 100644 --- a/packages/fetch/package.json +++ b/packages/fetch/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/fetch", - "version": "1.1.3", + "version": "2.0.0", "description": "Enhanced fetch API with cache strategy, retry pattern, timeout, helper methods and enhanced types written in tiny TypeScript, ES module.", "keywords": [ "fetch", @@ -34,8 +34,8 @@ "url": "https://github.com/AliMD/alwatr-eslib/issues" }, "dependencies": { - "@alwatr/logger": "^1.1.3", - "@alwatr/util": "^1.2.1", + "@alwatr/logger": "^1.1.4", + "@alwatr/util": "^1.2.2", "tslib": "^2.6.2" } } diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index c77e3a9..7c635bb 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. +## [1.1.4](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/logger@1.1.3...@alwatr/logger@1.1.4) (2023-09-19) + +**Note:** Version bump only for package @alwatr/logger + ## [1.1.3](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/logger@1.1.2...@alwatr/logger@1.1.3) (2023-09-19) **Note:** Version bump only for package @alwatr/logger diff --git a/packages/logger/package.json b/packages/logger/package.json index 399b3ef..276269a 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/logger", - "version": "1.1.3", + "version": "1.1.4", "description": "Fancy colorful console debugger with custom scope written in tiny TypeScript, ES module.", "keywords": [ "log", @@ -32,7 +32,7 @@ "url": "https://github.com/AliMD/alwatr-eslib/issues" }, "dependencies": { - "@alwatr/type": "^1.1.2", + "@alwatr/type": "^1.1.3", "tslib": "^2.6.2" } } diff --git a/packages/math/CHANGELOG.md b/packages/math/CHANGELOG.md index 6c10bbb..17fbd1f 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.1.4](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/math@1.1.3...@alwatr/math@1.1.4) (2023-09-19) + +**Note:** Version bump only for package @alwatr/math + ## 1.1.3 (2023-09-19) **Note:** Version bump only for package @alwatr/math diff --git a/packages/math/package.json b/packages/math/package.json index ba4356a..925e798 100644 --- a/packages/math/package.json +++ b/packages/math/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/math", - "version": "1.1.3", + "version": "1.1.4", "description": "Simple useful Math library written in tiny TypeScript module.", "keywords": [ "math", @@ -30,7 +30,7 @@ "url": "https://github.com/AliMD/alwatr-eslib/issues" }, "dependencies": { - "@alwatr/logger": "^1.1.3", + "@alwatr/logger": "^1.1.4", "tslib": "^2.6.2" } } diff --git a/packages/nano-server/CHANGELOG.md b/packages/nano-server/CHANGELOG.md index 89de97d..b9c8b86 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.1.4](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/nano-server@1.1.3...@alwatr/nano-server@1.1.4) (2023-09-19) + +**Note:** Version bump only for package @alwatr/nano-server + ## 1.1.3 (2023-09-19) **Note:** Version bump only for package @alwatr/nano-server diff --git a/packages/nano-server/package.json b/packages/nano-server/package.json index 51ac544..d1feb92 100644 --- a/packages/nano-server/package.json +++ b/packages/nano-server/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nano-server", - "version": "1.1.3", + "version": "1.1.4", "description": "Elegant powerful nodejs server for nanoservice use cases, written in tiny TypeScript module.", "keywords": [ "server", @@ -31,8 +31,8 @@ "url": "https://github.com/AliMD/alwatr-eslib/issues" }, "dependencies": { - "@alwatr/logger": "^1.1.3", - "@alwatr/math": "^1.1.3", + "@alwatr/logger": "^1.1.4", + "@alwatr/math": "^1.1.4", "tslib": "^2.6.2" } } diff --git a/packages/type/CHANGELOG.md b/packages/type/CHANGELOG.md index 0e4f2a7..ac86b05 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.1.3](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/type@1.1.2...@alwatr/type@1.1.3) (2023-09-19) + +**Note:** Version bump only for package @alwatr/type + ## 1.1.2 (2023-09-19) **Note:** Version bump only for package @alwatr/type diff --git a/packages/type/package.json b/packages/type/package.json index 10ad0bf..88b095b 100644 --- a/packages/type/package.json +++ b/packages/type/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/type", - "version": "1.1.2", + "version": "1.1.3", "description": "Alwatr projects common entities types", "keywords": [ "type", diff --git a/packages/util/CHANGELOG.md b/packages/util/CHANGELOG.md index d4e7fa9..47b8efd 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.2.2](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/util@1.2.1...@alwatr/util@1.2.2) (2023-09-19) + +**Note:** Version bump only for package @alwatr/util + ## 1.2.1 (2023-09-19) **Note:** Version bump only for package @alwatr/util diff --git a/packages/util/package.json b/packages/util/package.json index 031a265..6d61efa 100644 --- a/packages/util/package.json +++ b/packages/util/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/util", - "version": "1.2.1", + "version": "1.2.2", "description": "Util library written in tiny TypeScript module.", "keywords": [ "util", @@ -40,8 +40,8 @@ } }, "dependencies": { - "@alwatr/math": "^1.1.3", - "@alwatr/type": "^1.1.2", + "@alwatr/math": "^1.1.4", + "@alwatr/type": "^1.1.3", "tslib": "^2.6.2" }, "devDependencies": { diff --git a/packages/validator/CHANGELOG.md b/packages/validator/CHANGELOG.md index cb91c0a..2803a1e 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.1.4](https://github.com/AliMD/alwatr-eslib/compare/@alwatr/validator@1.1.3...@alwatr/validator@1.1.4) (2023-09-19) + +**Note:** Version bump only for package @alwatr/validator + ## 1.1.3 (2023-09-19) **Note:** Version bump only for package @alwatr/validator diff --git a/packages/validator/package.json b/packages/validator/package.json index 29cdfa7..88bd615 100644 --- a/packages/validator/package.json +++ b/packages/validator/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/validator", - "version": "1.1.3", + "version": "1.1.4", "description": "Simple useful validator library written in tiny TypeScript module.", "keywords": [ "validator", @@ -29,8 +29,8 @@ "url": "https://github.com/AliMD/alwatr-eslib/issues" }, "dependencies": { - "@alwatr/math": "^1.1.3", - "@alwatr/type": "^1.1.2", + "@alwatr/math": "^1.1.4", + "@alwatr/type": "^1.1.3", "tslib": "^2.6.2" } }