@alwatr/nitrobase-engine 7.8.0 โ 7.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +26 -0
- package/LICENSE +373 -661
- package/README.md +0 -6
- package/dist/alwatr-nitrobase.d.ts +1 -1
- package/dist/alwatr-nitrobase.d.ts.map +1 -1
- package/dist/logger.d.ts.map +1 -1
- package/dist/main.cjs +3 -446
- package/dist/main.cjs.map +3 -3
- package/dist/main.mjs +3 -424
- package/dist/main.mjs.map +2 -2
- package/package.json +47 -45
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [7.10.0](https://github.com/Alwatr/nitrobase/compare/v7.9.0...v7.10.0) (2025-09-21)
|
|
7
|
+
|
|
8
|
+
### ๐ Bug Fixes
|
|
9
|
+
|
|
10
|
+
* add "sideEffects": false to package.json files for better tree-shaking ([cb6f75b](https://github.com/Alwatr/nitrobase/commit/cb6f75b86eb7dba6812aaad5136fcd867e885562))
|
|
11
|
+
* add type imports for nano-build and type-helper in logger files ([6ca3627](https://github.com/Alwatr/nitrobase/commit/6ca362761c0d30a2813369bda49c927960c787f8))
|
|
12
|
+
|
|
13
|
+
### ๐จ Code Refactoring
|
|
14
|
+
|
|
15
|
+
* rename newStoreFile_ to newStoreFile__ for consistency in AlwatrNitrobase class ([2010994](https://github.com/Alwatr/nitrobase/commit/201099488a9bd379a67355df0c26fbef205626bd))
|
|
16
|
+
* update access modifiers to public for class properties and methods in nitrobase and user management ([a988d63](https://github.com/Alwatr/nitrobase/commit/a988d63b61828f6ce360e7179cbaccfa19dc1ae2))
|
|
17
|
+
|
|
18
|
+
### ๐งน Miscellaneous Chores
|
|
19
|
+
|
|
20
|
+
* remove Exir Studio sponsorship logo from multiple README files ([506459f](https://github.com/Alwatr/nitrobase/commit/506459fea7d29b97e478da562590dd202ce7e833))
|
|
21
|
+
* remove unused types from tsconfig.json files and update references ([b504ced](https://github.com/Alwatr/nitrobase/commit/b504ced4a8f98de4fe79a2c974937278bd4e46cb))
|
|
22
|
+
* Update license from AGPL-3.0 to MPL-2.0 ([af1746e](https://github.com/Alwatr/nitrobase/commit/af1746ee9a3786c1cb2e0014f138e9f3b7086b8d))
|
|
23
|
+
* update package.json files across all packages for consistency and improved metadata ([647900d](https://github.com/Alwatr/nitrobase/commit/647900d9966f8df275c4e2ef0550c501be38ece0))
|
|
24
|
+
|
|
25
|
+
### ๐ Dependencies update
|
|
26
|
+
|
|
27
|
+
* add missing dependencies in package.json ([8fe3ae3](https://github.com/Alwatr/nitrobase/commit/8fe3ae36736564a0c56b8915cfcb52b4b00befc2))
|
|
28
|
+
* remove unused packageTracer import and related code from logger.ts ([46ee9d8](https://github.com/Alwatr/nitrobase/commit/46ee9d80bb65299933c8f41631bad527ff206f38))
|
|
29
|
+
* update dependencies in package.json files across all packages to latest versions ([72c20ef](https://github.com/Alwatr/nitrobase/commit/72c20efbc1cac9825fb4880772e3fad797d74a23))
|
|
30
|
+
* update imports to use new package paths for improved modularity ([e59abcc](https://github.com/Alwatr/nitrobase/commit/e59abcce6d32fe3eee1c1f1b578a4b09794e95e6))
|
|
31
|
+
|
|
6
32
|
## [7.8.0](https://github.com/Alwatr/nitrobase/compare/v7.7.0...v7.8.0) (2025-03-06)
|
|
7
33
|
|
|
8
34
|
### Dependencies update
|