@alwatr/pre-handlers 4.9.3 โ 4.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 +35 -0
- package/LICENSE +373 -661
- package/README.md +0 -6
- package/dist/handler/parse-body-as-json.d.ts +1 -1
- package/dist/handler/parse-body-as-json.d.ts.map +1 -1
- package/dist/handler/require-access-token.d.ts +23 -23
- package/dist/handler/require-access-token.d.ts.map +1 -1
- package/dist/main.cjs +3 -100
- package/dist/main.cjs.map +2 -2
- package/dist/main.d.ts.map +1 -1
- package/dist/main.mjs +3 -74
- package/dist/main.mjs.map +3 -3
- package/package.json +40 -43
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
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
|
+
## [4.10.0](https://github.com/Alwatr/pre-handlers/compare/v4.9.4...v4.10.0) (2025-09-21)
|
|
7
|
+
|
|
8
|
+
### ๐ Bug Fixes
|
|
9
|
+
|
|
10
|
+
* update function signature to allow body as JsonArray in parseBodyAsJson middleware ([11751ec](https://github.com/Alwatr/pre-handlers/commit/11751ec1bea9126165ca8ee324ae9f2c7c64db08))
|
|
11
|
+
* update workspace dependency versioning to use wildcard for nanotron-api-server ([0f62667](https://github.com/Alwatr/pre-handlers/commit/0f62667adfb3d35026ebe143b8f682d128ccfdc1))
|
|
12
|
+
|
|
13
|
+
### ๐จ Code Refactoring
|
|
14
|
+
|
|
15
|
+
* remove unused packageTracer import and development mode tracer from main.ts ([411708a](https://github.com/Alwatr/pre-handlers/commit/411708a37a1202098b747d902cd255c03cfad061))
|
|
16
|
+
|
|
17
|
+
### ๐งน Miscellaneous Chores
|
|
18
|
+
|
|
19
|
+
* remove Exir Studio sponsorship logo from multiple README files ([af3fd5d](https://github.com/Alwatr/pre-handlers/commit/af3fd5dda9b57d0948003db1feb0dc2dad4883d7))
|
|
20
|
+
* remove unused types from compiler options in tsconfig.json ([2d47851](https://github.com/Alwatr/pre-handlers/commit/2d47851db94f8c9da50d3b0a3570d02052bfe61a))
|
|
21
|
+
* standardize formatting in tsconfig.json files by removing trailing commas ([fb9c6b9](https://github.com/Alwatr/pre-handlers/commit/fb9c6b9648b04b038db212727e8d38761d081a65))
|
|
22
|
+
* update @alwatr/nanolib and @alwatr/nano-build to version 6.1.1 and 6.3.1 respectively ([81b3d5e](https://github.com/Alwatr/pre-handlers/commit/81b3d5ebf5ecc1242ee0a010631e4d920af9f3dd))
|
|
23
|
+
* update @alwatr/nanolib and related dependencies to version 6.x ([d824f0d](https://github.com/Alwatr/pre-handlers/commit/d824f0d5b8e008ec758842997a6e2ee6f7d078d5))
|
|
24
|
+
* update licenses from AGPL-3.0 to MPL-2.0 ([a84513e](https://github.com/Alwatr/pre-handlers/commit/a84513efbe12b9570c7550c887f2cdfbf67fc82b))
|
|
25
|
+
|
|
26
|
+
### ๐ Dependencies update
|
|
27
|
+
|
|
28
|
+
* remove @alwatr/nanolib from dependencies in package.json ([62e6b0d](https://github.com/Alwatr/pre-handlers/commit/62e6b0d858e10bc0c594fd616e584f51c299bd2c))
|
|
29
|
+
|
|
30
|
+
## [4.9.4](https://github.com/Alwatr/pre-handlers/compare/v4.9.3...v4.9.4) (2025-08-23)
|
|
31
|
+
|
|
32
|
+
### ๐จ Code Refactoring
|
|
33
|
+
|
|
34
|
+
* reorganize package.json files for consistency and clarity ([bde116e](https://github.com/Alwatr/pre-handlers/commit/bde116e21f9d9bd6084940e257438916d2c3d312)) by @alimd
|
|
35
|
+
|
|
36
|
+
### ๐ Dependencies update
|
|
37
|
+
|
|
38
|
+
* downgrade @types/node version to 22.17.2 in all package.json files ([4f01e14](https://github.com/Alwatr/pre-handlers/commit/4f01e1408d8d0954865eb9d20f90178f13e98719)) by @alimd
|
|
39
|
+
* update dependencies for eslint-config, lerna-lite, typescript, and nanolib ([de16a71](https://github.com/Alwatr/pre-handlers/commit/de16a718bb1c0fa569d39c824ec39a1e67ef8dfe)) by @alimd
|
|
40
|
+
|
|
6
41
|
## [4.9.3](https://github.com/Alwatr/pre-handlers/compare/v4.9.2...v4.9.3) (2025-07-23)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @alwatr/pre-handlers
|