-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
218 additions
and
5 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
# [5.0.0-beta](https://github.com/Alwatr/store/compare/v4.1.0...v5.0.0-beta) (2023-12-31) | ||
|
||
### Bug Fixes | ||
|
||
* **deps:** dev deps ([b129567](https://github.com/Alwatr/store/commit/b12956768b9d60a75c0fdc43774512b86b655f78)) by @AliMD | ||
* **engine/demo:** benchmark ([48b4456](https://github.com/Alwatr/store/commit/48b4456cd09bf610bfe718c843e55ff0db2a9e5a)) by @njfamirm | ||
* **engine/demo:** import path ([6effc2c](https://github.com/Alwatr/store/commit/6effc2c105aaf4057581bc161723d59a7ea0b7e6)) by @njfamirm | ||
* **engine:** add types to deps ([170043d](https://github.com/Alwatr/store/commit/170043d9095c73e3c678c051bc3f34d2ccd43730)) by @njfamirm | ||
* **engine:** data loss issue and improve performance ([07f6877](https://github.com/Alwatr/store/commit/07f68777faec66fee4efae7afd340bebe7078f17)) by @AliMD | ||
* **engine:** file path ([bbc4abd](https://github.com/Alwatr/store/commit/bbc4abdbb601108dc91ee95eeaac5cbbc272cdd4)) by @njfamirm | ||
* **engine:** get collection issue ([742aa23](https://github.com/Alwatr/store/commit/742aa236ae98c934ea6e0904a8a91d152471a31a)) by @AliMD | ||
* **engine:** import type ([9f67871](https://github.com/Alwatr/store/commit/9f67871dba8528a5393ea372f136865c952a102c)) by @njfamirm | ||
* **engine:** Remove StoreFileStatModel class ([d47b680](https://github.com/Alwatr/store/commit/d47b680d54b8bd9a0b8926653a69cb59c8f36398)) by @AliMD | ||
* **engine:** unsaved data lost issues ([fec0bef](https://github.com/Alwatr/store/commit/fec0bef78ac67ddd669012d8804588883f39affa)) by @AliMD | ||
* **engine:** Update defaultChangeDebounce value in AlwatrStore ([63edd08](https://github.com/Alwatr/store/commit/63edd08c87c675edb91b8f7aa61b901a6d1db111)) by @AliMD | ||
* **engine:** Update imports and refactor util.ts ([2b1f962](https://github.com/Alwatr/store/commit/2b1f9628f4578f707996fe5e6d5d92c7d093b615)) by @AliMD | ||
|
||
### Features | ||
|
||
* **engine/demo:** collection with new api ([f603e86](https://github.com/Alwatr/store/commit/f603e86d2827c66219321f9df400049e76b78c21)) by @AliMD | ||
* **engine:** Add data-lost-test.js demo file ([673f324](https://github.com/Alwatr/store/commit/673f3247c4b6c1bca2f9e9d9169843ca6a5e9804)) by @AliMD | ||
* **engine:** debounce for save file ([c92749e](https://github.com/Alwatr/store/commit/c92749e83352129c02130ac2466dd5acda289795)) by @AliMD | ||
* **engine:** doc demo ([f49f78b](https://github.com/Alwatr/store/commit/f49f78bd3b5942406fe74e273e87bcbf12f67c4f)) by @njfamirm | ||
* **engine:** enhance benchmark demo ([200da18](https://github.com/Alwatr/store/commit/200da18cd9542fa4182f910c0ad813703326fe38)) by @AliMD | ||
* **engine:** impediment exit hook ([68695a9](https://github.com/Alwatr/store/commit/68695a975e0ec6c473bbd2d9a62c81720f090352)) by @AliMD | ||
* **engine:** Refactor code to improve performance and readability ([b4c0848](https://github.com/Alwatr/store/commit/b4c0848e7518ae5c96e8ab7643716a2e923f7635)) by @AliMD | ||
* **node-fs:** Update logger method arguments to include truncated path ([8c6f49a](https://github.com/Alwatr/store/commit/8c6f49ad56d5667ba1280a5d28b7a39b21c3a11a)) by @AliMD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@alwatr/store-engine", | ||
"version": "5.0.0-alpha.0", | ||
"version": "5.0.0-beta", | ||
"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": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
# [5.0.0-beta](https://github.com/Alwatr/store/compare/v4.1.0...v5.0.0-beta) (2023-12-31) | ||
|
||
### Bug Fixes | ||
|
||
* **nginx:** device id variable ([7e58911](https://github.com/Alwatr/store/commit/7e5891137a095b28fd6cd5388073212f73441225)) by @njfamirm | ||
* **nginx:** header map regex ([3e16b69](https://github.com/Alwatr/store/commit/3e16b6946c7f07b76af7a3af299339899ac4b6fa)) by @njfamirm | ||
|
||
### Features | ||
|
||
* **nginx:** Add debug-info-007 endpoint to return JSON response ([9d6d671](https://github.com/Alwatr/store/commit/9d6d67187248e3b626675a780e23bf3bdfc64300)) by @AliMD | ||
* **nginx:** Add input validation for user_id and user_token ([7216ae5](https://github.com/Alwatr/store/commit/7216ae5171b0c13c77b5d801bf945c23972f6234)) by @AliMD | ||
* **nginx:** Add location for super admin access ([7e274a6](https://github.com/Alwatr/store/commit/7e274a63b3d12ac656dd461f9bd03ed63f0db2cb)) by @AliMD | ||
* **nginx:** Add MIME type for asj files ([756a99e](https://github.com/Alwatr/store/commit/756a99e70c8977dda1d852327ef9f87942d3f4d9)) by @AliMD | ||
* **nginx:** Add user/device/token locations headers mappings ([3e71297](https://github.com/Alwatr/store/commit/3e7129732ada897e4c858d8c7ab0b2309186f353)) by @AliMD | ||
* **nginx:** compatible with new engine ([196b80f](https://github.com/Alwatr/store/commit/196b80fcf6ce24d9f061b85c99a0a93d5e1a8933)) by @njfamirm | ||
* **nginx:** Refactor nginx location configuration for engine5 ([451e266](https://github.com/Alwatr/store/commit/451e266daade4c7dff88a3d73273424537bc7251)) by @AliMD | ||
* **nginx:** Update device ID mapping in nginx configuration ([5ff4080](https://github.com/Alwatr/store/commit/5ff40806e29158e2e7271b6123027e92bbc0c933)) by @AliMD | ||
* **nginx:** Update home page JSON response ([0da2f5e](https://github.com/Alwatr/store/commit/0da2f5e1673a96a1bc329a9e7e6968c73312394f)) by @AliMD | ||
* **nginx:** Update nginx version and add default error JSON file ([5213c65](https://github.com/Alwatr/store/commit/5213c652977e5a9db4c2f88aeec8da6a07b1f626)) by @AliMD | ||
* **nginx:** Update nginx-json base image version and add environment variables ([2269f67](https://github.com/Alwatr/store/commit/2269f67f07bfd0eb0207584a27a3fc8663cece8c)) by @AliMD | ||
* **nginx:** Update storeRegionSecret env value in nginx Dockerfile ([15b3595](https://github.com/Alwatr/store/commit/15b35954fc972fdd648584f1b71fdad550699b70)) by @AliMD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@alwatr/store-nginx", | ||
"version": "5.0.0-alpha.0", | ||
"version": "5.0.0-beta", | ||
"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", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
# [5.0.0-beta](https://github.com/Alwatr/store/compare/v4.1.0...v5.0.0-beta) (2023-12-31) | ||
|
||
### Bug Fixes | ||
|
||
* **reference:** add types to deps ([23788e6](https://github.com/Alwatr/store/commit/23788e6cdcd8f26378896bcf469a1308d49300aa)) by @njfamirm | ||
* **reference:** Refactor update delay logic in updated__ to prevent data lost ([c7282fe](https://github.com/Alwatr/store/commit/c7282fe66685843aad4396461ab8c7060742683a)) by @AliMD | ||
|
||
### Features | ||
|
||
* **engine:** impediment exit hook ([68695a9](https://github.com/Alwatr/store/commit/68695a975e0ec6c473bbd2d9a62c81720f090352)) by @AliMD | ||
* **reference:** add debugDomain ([83dd29a](https://github.com/Alwatr/store/commit/83dd29ad07e0a80ae1882f0a459402cf671708ef)) by @AliMD | ||
* **reference:** Add hasUnprocessedChanges_ flag to CollectionReference and DocumentReference ([dff3553](https://github.com/Alwatr/store/commit/dff35530732cce20d21337cb14df9b4ada9022b6)) by @AliMD | ||
* **reference:** add immediate option to save methods ([9267cfd](https://github.com/Alwatr/store/commit/9267cfd13a19ab70cbf2857fe7160314d6a192d8)) by @AliMD | ||
* **reference:** debounce for save file ([b40f9e9](https://github.com/Alwatr/store/commit/b40f9e9d4a2d2501471488b07266576a595380c3)) by @AliMD | ||
* **reference:** enhance logging ([4eab5a2](https://github.com/Alwatr/store/commit/4eab5a277f1bf818fdba2e49ae3ecf0d7e68b4f7)) by @AliMD | ||
* **reference:** Refactor save method to include debounce option and public updateMeta_ ([d9abf84](https://github.com/Alwatr/store/commit/d9abf8415dbe8e189a6dcba3d837fbe2a0e3cdb0)) by @AliMD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@alwatr/store-reference", | ||
"version": "5.0.0-alpha.0", | ||
"version": "5.0.0-beta", | ||
"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": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Change Log | ||
|
||
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
# [5.0.0-beta](https://github.com/Alwatr/store/compare/v4.1.0...v5.0.0-beta) (2023-12-31) | ||
|
||
### Bug Fixes | ||
|
||
* **types:** StoreFileId interface ([d7b0f61](https://github.com/Alwatr/store/commit/d7b0f61d673e6c70c139454aae03f1472f6f7c31)) by @AliMD | ||
|
||
### Features | ||
|
||
* **type/storeFileId:** change debounce ([0f459b6](https://github.com/Alwatr/store/commit/0f459b6bf51ef2ab79b35a738f7a58dd67686527)) by @AliMD | ||
* **types:** new package for store share types ([8487d02](https://github.com/Alwatr/store/commit/8487d0255b21ab02eecb0b6216e438fe0d0ca852)) by @AliMD |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@alwatr/store-types", | ||
"version": "5.0.0-alpha.0", | ||
"version": "5.0.0-beta", | ||
"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": [ | ||
|