Skip to content

Commit

Permalink
release:
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Jan 12, 2024
1 parent 955f836 commit dc76e1e
Show file tree
Hide file tree
Showing 10 changed files with 77 additions and 5 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.0.0](https://github.com/Alwatr/storage/compare/v5.0.0-beta...v5.0.0) (2024-01-12)

### Bug Fixes

* **nginx:** token validation in managers region ([f5f54fb](https://github.com/Alwatr/storage/commit/f5f54fb52cb9d4721b25d0c3d76d8a8c717ae288)) by @AliMD

### Code Refactoring

* **engine:** remove all string id from public api ([c44fd1c](https://github.com/Alwatr/storage/commit/c44fd1c0a7daffe20ba9e836f23d63a4dd4250b8)) by @AliMD
* rename region SuperAdmin to Managers ([7c3ece8](https://github.com/Alwatr/storage/commit/7c3ece8a24a88ea12a82966e41ea1ad7362159f4)) by @AliMD

### Features

* **engine:** use alwatr exit hook ([5be4f01](https://github.com/Alwatr/storage/commit/5be4f01bc746b5b4cfb1df10def3abc5632c44ee)) by @njfamirm
* **store:** Add option to error when store not initialized ([4b27468](https://github.com/Alwatr/storage/commit/4b27468a063027b357e27fdff2484932e23d46e0)) by @AliMD

### Performance Improvements

* **nginx:** Micro optimization in map ([955f836](https://github.com/Alwatr/storage/commit/955f8369e5013af06b987bba7acae5fa2d167dfb)) by @AliMD

### BREAKING CHANGES

* region `SuperAdmin` renamed to `Managers`
* **engine:** The string ID has been removed from public APIs to prevent confusion caused by a simple sting ID.

# [5.0.0-beta](https://github.com/Alwatr/storage/compare/v4.1.0...v5.0.0-beta) (2023-12-31)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json",
"version": "5.0.0-beta",
"version": "5.0.0",
"npmClient": "yarn",
"packages": [
"packages/*",
Expand Down
15 changes: 15 additions & 0 deletions packages/engine/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.0.0](https://github.com/Alwatr/store/compare/v5.0.0-beta...v5.0.0) (2024-01-12)

### Code Refactoring

* **engine:** remove all string id from public api ([c44fd1c](https://github.com/Alwatr/store/commit/c44fd1c0a7daffe20ba9e836f23d63a4dd4250b8)) by @AliMD

### Features

* **engine:** use alwatr exit hook ([5be4f01](https://github.com/Alwatr/store/commit/5be4f01bc746b5b4cfb1df10def3abc5632c44ee)) by @njfamirm
* **store:** Add option to error when store not initialized ([4b27468](https://github.com/Alwatr/store/commit/4b27468a063027b357e27fdff2484932e23d46e0)) by @AliMD

### BREAKING CHANGES

* **engine:** The string ID has been removed from public APIs to prevent confusion caused by a simple sting ID.

# [5.0.0-beta](https://github.com/Alwatr/store/compare/v4.1.0...v5.0.0-beta) (2023-12-31)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/store-engine",
"version": "5.0.0-beta",
"version": "5.0.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 <[email protected]>",
"keywords": [
Expand Down
18 changes: 18 additions & 0 deletions packages/nginx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [5.0.0](https://github.com/Alwatr/store/compare/v5.0.0-beta...v5.0.0) (2024-01-12)

### Bug Fixes

* **nginx:** token validation in managers region ([f5f54fb](https://github.com/Alwatr/store/commit/f5f54fb52cb9d4721b25d0c3d76d8a8c717ae288)) by @AliMD

### Code Refactoring

* rename region SuperAdmin to Managers ([7c3ece8](https://github.com/Alwatr/store/commit/7c3ece8a24a88ea12a82966e41ea1ad7362159f4)) by @AliMD

### Performance Improvements

* **nginx:** Micro optimization in map ([955f836](https://github.com/Alwatr/store/commit/955f8369e5013af06b987bba7acae5fa2d167dfb)) by @AliMD

### BREAKING CHANGES

* region `SuperAdmin` renamed to `Managers`

# [5.0.0-beta](https://github.com/Alwatr/store/compare/v4.1.0...v5.0.0-beta) (2023-12-31)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/nginx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/store-nginx",
"version": "5.0.0-beta",
"version": "5.0.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 <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 4 additions & 0 deletions packages/reference/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

# [5.0.0](https://github.com/Alwatr/store/compare/v5.0.0-beta...v5.0.0) (2024-01-12)

**Note:** Version bump only for package @alwatr/store-reference

# [5.0.0-beta](https://github.com/Alwatr/store/compare/v4.1.0...v5.0.0-beta) (2023-12-31)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/reference/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/store-reference",
"version": "5.0.0-beta",
"version": "5.0.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 <[email protected]>",
"keywords": [
Expand Down
10 changes: 10 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [5.0.0](https://github.com/Alwatr/store/compare/v5.0.0-beta...v5.0.0) (2024-01-12)

### Code Refactoring

* rename region SuperAdmin to Managers ([7c3ece8](https://github.com/Alwatr/store/commit/7c3ece8a24a88ea12a82966e41ea1ad7362159f4)) by @AliMD

### BREAKING CHANGES

* region `SuperAdmin` renamed to `Managers`

# [5.0.0-beta](https://github.com/Alwatr/store/compare/v4.1.0...v5.0.0-beta) (2023-12-31)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alwatr/store-types",
"version": "5.0.0-beta",
"version": "5.0.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 <[email protected]>",
"keywords": [
Expand Down

0 comments on commit dc76e1e

Please sign in to comment.