@alwatr/nanotron-api-server 4.8.0 → 4.8.1
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 +7 -0
- package/dist/main.cjs +2 -3
- package/dist/main.mjs +2 -3
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
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.8.1](https://github.com/Alwatr/nanotron/compare/v4.8.0...v4.8.1) (2025-02-18)
|
|
7
|
+
|
|
8
|
+
### Dependencies update
|
|
9
|
+
|
|
10
|
+
* **deps-dev:** bump the dependencies group across 1 directory with 11 updates ([9257e08](https://github.com/Alwatr/nanotron/commit/9257e08b96f5661a7e13e153b9c71d9dbc08fd18)) by @dependabot[bot]
|
|
11
|
+
* update TypeScript, Prettier, and various dependencies to latest versions ([5c0f752](https://github.com/Alwatr/nanotron/commit/5c0f7521851acaabb2466e459754c130d7ebf31b)) by @
|
|
12
|
+
|
|
6
13
|
## [4.8.0](https://github.com/Alwatr/nanotron/compare/v4.7.0...v4.8.0) (2024-11-08)
|
|
7
14
|
|
|
8
15
|
### Features
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/nanotron-api-server v4.8.
|
|
1
|
+
/* @alwatr/nanotron-api-server v4.8.1 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -638,7 +638,7 @@ _NanotronUrl.versionPattern_ = new RegExp("^/v[0-9]+/");
|
|
|
638
638
|
var NanotronUrl = _NanotronUrl;
|
|
639
639
|
|
|
640
640
|
// src/api-server.ts
|
|
641
|
-
__dev_mode__: import_nanolib3.packageTracer.add("@alwatr/nanotron-api-server", "4.8.
|
|
641
|
+
__dev_mode__: import_nanolib3.packageTracer.add("@alwatr/nanotron-api-server", "4.8.1");
|
|
642
642
|
var _NanotronApiServer = class _NanotronApiServer {
|
|
643
643
|
constructor(config) {
|
|
644
644
|
this.config_ = {
|
|
@@ -836,5 +836,4 @@ var NanotronApiServer = _NanotronApiServer;
|
|
|
836
836
|
HttpStatusMessages,
|
|
837
837
|
NanotronApiServer
|
|
838
838
|
});
|
|
839
|
-
/*! For license information please see main.cjs.LEGAL.txt */
|
|
840
839
|
//# sourceMappingURL=main.cjs.map
|
package/dist/main.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/nanotron-api-server v4.8.
|
|
1
|
+
/* @alwatr/nanotron-api-server v4.8.1 */
|
|
2
2
|
|
|
3
3
|
// src/api-server.ts
|
|
4
4
|
import { createServer } from "node:http";
|
|
@@ -610,7 +610,7 @@ _NanotronUrl.versionPattern_ = new RegExp("^/v[0-9]+/");
|
|
|
610
610
|
var NanotronUrl = _NanotronUrl;
|
|
611
611
|
|
|
612
612
|
// src/api-server.ts
|
|
613
|
-
__dev_mode__: packageTracer.add("@alwatr/nanotron-api-server", "4.8.
|
|
613
|
+
__dev_mode__: packageTracer.add("@alwatr/nanotron-api-server", "4.8.1");
|
|
614
614
|
var _NanotronApiServer = class _NanotronApiServer {
|
|
615
615
|
constructor(config) {
|
|
616
616
|
this.config_ = {
|
|
@@ -807,5 +807,4 @@ export {
|
|
|
807
807
|
HttpStatusMessages,
|
|
808
808
|
NanotronApiServer
|
|
809
809
|
};
|
|
810
|
-
/*! For license information please see main.mjs.LEGAL.txt */
|
|
811
810
|
//# sourceMappingURL=main.mjs.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/nanotron-api-server",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.1",
|
|
4
4
|
"description": "Nanotron: Your Lightweight, High-Performance Micro/Nano Service Framework. Nanotron is designed for building blazingly fast and efficient microservices and APIs. Its minimalist approach and focus on performance make it ideal for resource-constrained environments and scenarios where every millisecond counts.",
|
|
5
5
|
"author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
|
|
6
6
|
"keywords": [
|
|
@@ -57,16 +57,16 @@
|
|
|
57
57
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@alwatr/nanolib": "^5.
|
|
60
|
+
"@alwatr/nanolib": "^5.4.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@alwatr/nano-build": "^5.
|
|
63
|
+
"@alwatr/nano-build": "^5.4.0",
|
|
64
64
|
"@alwatr/prettier-config": "^5.0.0",
|
|
65
65
|
"@alwatr/tsconfig-base": "^5.0.0",
|
|
66
|
-
"@alwatr/type-helper": "^5.
|
|
67
|
-
"@types/node": "^22.
|
|
66
|
+
"@alwatr/type-helper": "^5.3.0",
|
|
67
|
+
"@types/node": "^22.13.4",
|
|
68
68
|
"jest": "^29.7.0",
|
|
69
|
-
"typescript": "^5.
|
|
69
|
+
"typescript": "^5.7.3"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "8f7cbca94fd9edee517b4f4c21f0de9a8442cc32"
|
|
72
72
|
}
|