diff --git a/CHANGELOG.md b/CHANGELOG.md index b9634d56..92ff33ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,34 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [7.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09) + +### Features + +* add `user-management` package ([dd0037c](https://github.com/Alwatr/nitrobase/commit/dd0037c9443459520c41f17adbac579069821f95)) by @mohammadhonarvar +* **nitrobase:** export `nitrobase-user-management` ([338e9ab](https://github.com/Alwatr/nitrobase/commit/338e9ab2699f2e532c194667e10a1aa4e795677f)) by @mohammadhonarvar +* **types:** add `AlwatrAuth` ([bff7ab6](https://github.com/Alwatr/nitrobase/commit/bff7ab6cc3850173c30cf3b0408cfda9584df185)) by @mohammadhonarvar +* **user-manaement:** add the initial sturcture ([2897b2c](https://github.com/Alwatr/nitrobase/commit/2897b2c43ce65f5683078fc51022ea3d5cf952af)) by @mohammadhonarvar + +### Bug Fixes + +* **nginx:** change return code from 444 to 403 for unauthorized user access ([7cdb33d](https://github.com/Alwatr/nitrobase/commit/7cdb33d66c1c98f118c623a4cc116d9f60da344a)) by @AliMD +* **nginx:** update base image from 3.2.0 to 3.3.1 in Dockerfile ([6378cb3](https://github.com/Alwatr/nitrobase/commit/6378cb3913937f9bd09f514648b1f77a06af317f)) by @AliMD +* **user-management:** complete codes & types ([838bfd2](https://github.com/Alwatr/nitrobase/commit/838bfd2ca19fb0443beb68903b60cd8aa9c2f791)) by @mohammadhonarvar +* **user-management:** review's feedback ([77b2796](https://github.com/Alwatr/nitrobase/commit/77b2796095f4ad87895df9de5f559dae07537020)) by @mohammadhonarvar +* **user-management:** update `directory` & `homepage` ([32f54f6](https://github.com/Alwatr/nitrobase/commit/32f54f681541373ea3fc8c460d711c04b64c7871)) by @mohammadhonarvar +* **user-management:** update version & name ([1db77da](https://github.com/Alwatr/nitrobase/commit/1db77daa422efe05a1ec4e6156bd6a053bea14ae)) by @mohammadhonarvar +* **workflow:** enable test mode for nginx container tests ([d5bcae5](https://github.com/Alwatr/nitrobase/commit/d5bcae560d216a73bc6ebd6170f4582785d842b0)) by @AliMD + +### Code Refactoring + +* **engine:** make `config` as a public property ([6453540](https://github.com/Alwatr/nitrobase/commit/6453540aac42340cfe3b7ac9e4c26f904aaccdcc)) by @mohammadhonarvar +* **user-management:** remove commented-out code and clean up interface ([f32ac45](https://github.com/Alwatr/nitrobase/commit/f32ac45c14ffe2e5c1b2eb664c1add182a975d1c)) by @AliMD + +### Dependencies update + +* update ([222692c](https://github.com/Alwatr/nitrobase/commit/222692ce3074b81a138174d147b237595bfaf6df)) by @mohammadhonarvar + ## [7.4.1](https://github.com/Alwatr/nitrobase/compare/v7.4.0...v7.4.1) (2024-11-08) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 4824e2c3..809edd26 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/lerna-lite/lerna-lite/main/packages/cli/schemas/lerna-schema.json", - "version": "7.4.1", + "version": "7.5.0", "npmClient": "yarn", "packages": [ "packages/*" diff --git a/packages/engine/CHANGELOG.md b/packages/engine/CHANGELOG.md index 8236f2e3..19df7b18 100644 --- a/packages/engine/CHANGELOG.md +++ b/packages/engine/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.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09) + +### Code Refactoring + +* **engine:** make `config` as a public property ([6453540](https://github.com/Alwatr/nitrobase/commit/6453540aac42340cfe3b7ac9e4c26f904aaccdcc)) by @mohammadhonarvar + ## [7.4.0](https://github.com/Alwatr/nitrobase/compare/v7.3.1...v7.4.0) (2024-11-08) ### Dependencies update diff --git a/packages/engine/package.json b/packages/engine/package.json index dc030134..ed57c435 100644 --- a/packages/engine/package.json +++ b/packages/engine/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nitrobase-engine", - "version": "7.4.0", + "version": "7.5.0", "description": "Nitrobase is a blazingly fast, lightweight database built on JSON. It stores data entirely in memory for lightning-quick access, while also providing a JSON file backup for persistence. You can easily serve your data over the web using our high-performance accelerated Nginx server.", "author": "S. Ali Mihandoost ", "keywords": [ diff --git a/packages/helper/CHANGELOG.md b/packages/helper/CHANGELOG.md index 9c7e1cc3..5ea46d8d 100644 --- a/packages/helper/CHANGELOG.md +++ b/packages/helper/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.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09) + +**Note:** Version bump only for package @alwatr/nitrobase-helper + ## [7.4.0](https://github.com/Alwatr/nitrobase/compare/v7.3.1...v7.4.0) (2024-11-08) ### Dependencies update diff --git a/packages/helper/package.json b/packages/helper/package.json index b36da56c..35d11447 100644 --- a/packages/helper/package.json +++ b/packages/helper/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nitrobase-helper", - "version": "7.4.0", + "version": "7.5.0", "description": "Extremely fast and compact JSON-based database that operates in memory, includes a JSON file backup, and serve over the highly accelerated Nginx.", "author": "S. Ali Mihandoost ", "keywords": [ diff --git a/packages/nginx/CHANGELOG.md b/packages/nginx/CHANGELOG.md index f5e0a396..d5c2efc9 100644 --- a/packages/nginx/CHANGELOG.md +++ b/packages/nginx/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.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09) + +### Bug Fixes + +* **nginx:** change return code from 444 to 403 for unauthorized user access ([7cdb33d](https://github.com/Alwatr/nitrobase/commit/7cdb33d66c1c98f118c623a4cc116d9f60da344a)) by @AliMD +* **nginx:** update base image from 3.2.0 to 3.3.1 in Dockerfile ([6378cb3](https://github.com/Alwatr/nitrobase/commit/6378cb3913937f9bd09f514648b1f77a06af317f)) by @AliMD + ## [7.4.0](https://github.com/Alwatr/nitrobase/compare/v7.3.1...v7.4.0) (2024-11-08) ### Features diff --git a/packages/nginx/package.json b/packages/nginx/package.json index aeea43de..848969b1 100644 --- a/packages/nginx/package.json +++ b/packages/nginx/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nitrobase-nginx", - "version": "7.4.0", + "version": "7.5.0", "description": "Extremely fast and compact JSON-based database that operates in memory, includes a JSON file backup, and serve over the highly accelerated Nginx.", "author": "S. Ali Mihandoost ", "license": "AGPL-3.0-only", diff --git a/packages/nitrobase/CHANGELOG.md b/packages/nitrobase/CHANGELOG.md index 0b0b55d6..f09b1124 100644 --- a/packages/nitrobase/CHANGELOG.md +++ b/packages/nitrobase/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.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09) + +### Features + +* **nitrobase:** export `nitrobase-user-management` ([338e9ab](https://github.com/Alwatr/nitrobase/commit/338e9ab2699f2e532c194667e10a1aa4e795677f)) by @mohammadhonarvar + ## [7.4.1](https://github.com/Alwatr/nitrobase/compare/v7.4.0...v7.4.1) (2024-11-08) ### Bug Fixes diff --git a/packages/nitrobase/package.json b/packages/nitrobase/package.json index b2344151..08d699dc 100644 --- a/packages/nitrobase/package.json +++ b/packages/nitrobase/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nitrobase", - "version": "7.4.1", + "version": "7.5.0", "description": "Nitrobase is a blazingly fast, lightweight database built on JSON. It stores data entirely in memory for lightning-quick access, while also providing a JSON file backup for persistence. You can easily serve your data over the web using our high-performance accelerated Nginx server.", "author": "S. Ali Mihandoost ", "keywords": [ diff --git a/packages/reference/CHANGELOG.md b/packages/reference/CHANGELOG.md index 26d0a196..b431c63a 100644 --- a/packages/reference/CHANGELOG.md +++ b/packages/reference/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.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09) + +**Note:** Version bump only for package @alwatr/nitrobase-reference + ## [7.4.0](https://github.com/Alwatr/nitrobase/compare/v7.3.1...v7.4.0) (2024-11-08) ### Dependencies update diff --git a/packages/reference/package.json b/packages/reference/package.json index 5f39d564..657d4e07 100644 --- a/packages/reference/package.json +++ b/packages/reference/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nitrobase-reference", - "version": "7.4.0", + "version": "7.5.0", "description": "Nitrobase is a blazingly fast, lightweight database built on JSON. It stores data entirely in memory for lightning-quick access, while also providing a JSON file backup for persistence. You can easily serve your data over the web using our high-performance accelerated Nginx server.", "author": "S. Ali Mihandoost ", "keywords": [ diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 73416688..c81bb1c3 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/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.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09) + +### Features + +* **types:** add `AlwatrAuth` ([bff7ab6](https://github.com/Alwatr/nitrobase/commit/bff7ab6cc3850173c30cf3b0408cfda9584df185)) by @mohammadhonarvar + ## [7.4.0](https://github.com/Alwatr/nitrobase/compare/v7.3.1...v7.4.0) (2024-11-08) ### Dependencies update diff --git a/packages/types/package.json b/packages/types/package.json index 5327ae6f..8968e45e 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nitrobase-types", - "version": "7.4.0", + "version": "7.5.0", "description": "Nitrobase is a blazingly fast, lightweight database built on JSON. It stores data entirely in memory for lightning-quick access, while also providing a JSON file backup for persistence. You can easily serve your data over the web using our high-performance accelerated Nginx server.", "author": "S. Ali Mihandoost ", "keywords": [ diff --git a/packages/user-management/CHANGELOG.md b/packages/user-management/CHANGELOG.md new file mode 100644 index 00000000..c9350e6c --- /dev/null +++ b/packages/user-management/CHANGELOG.md @@ -0,0 +1,22 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [7.5.0](https://github.com/Alwatr/nitrobase/compare/v7.4.1...v7.5.0) (2024-11-09) + +### Features + +* add `user-management` package ([dd0037c](https://github.com/Alwatr/nitrobase/commit/dd0037c9443459520c41f17adbac579069821f95)) by @mohammadhonarvar +* **user-manaement:** add the initial sturcture ([2897b2c](https://github.com/Alwatr/nitrobase/commit/2897b2c43ce65f5683078fc51022ea3d5cf952af)) by @mohammadhonarvar + +### Bug Fixes + +* **user-management:** complete codes & types ([838bfd2](https://github.com/Alwatr/nitrobase/commit/838bfd2ca19fb0443beb68903b60cd8aa9c2f791)) by @mohammadhonarvar +* **user-management:** review's feedback ([77b2796](https://github.com/Alwatr/nitrobase/commit/77b2796095f4ad87895df9de5f559dae07537020)) by @mohammadhonarvar +* **user-management:** update `directory` & `homepage` ([32f54f6](https://github.com/Alwatr/nitrobase/commit/32f54f681541373ea3fc8c460d711c04b64c7871)) by @mohammadhonarvar +* **user-management:** update version & name ([1db77da](https://github.com/Alwatr/nitrobase/commit/1db77daa422efe05a1ec4e6156bd6a053bea14ae)) by @mohammadhonarvar + +### Code Refactoring + +* **user-management:** remove commented-out code and clean up interface ([f32ac45](https://github.com/Alwatr/nitrobase/commit/f32ac45c14ffe2e5c1b2eb664c1add182a975d1c)) by @AliMD diff --git a/packages/user-management/package.json b/packages/user-management/package.json index 798a0bf1..dd314852 100644 --- a/packages/user-management/package.json +++ b/packages/user-management/package.json @@ -1,6 +1,6 @@ { "name": "@alwatr/nitrobase-user-management", - "version": "7.4.0", + "version": "7.5.0", "description": "", "author": "S. Ali Mihandoost ", "keywords": [