qhttpx 1.9.1 → 1.9.2

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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [1.9.2] - 2026-01-20
6
+ **"The Dependency Polish Update"**
7
+
8
+ ### Changed
9
+ - **Dependencies**: Moved `node-addon-api` from `devDependencies` to `dependencies` to ensure native builds succeed in all environments (fixing installation in consumer projects).
10
+ - **Benchmarks**: Removed `bench:compare` and related framework dependencies (`express`, `fastify`, `koa`, `hono`, etc.) to reduce package size and install time.
11
+
12
+ ## [1.9.1] - 2026-01-20
13
+ **"The Performance Tuning Update"**
14
+
15
+ ### Added
16
+ - **Benchmarks**: Added `bench:ultra` for Ultra Mode performance testing.
17
+ - **Benchmarks**: Added `bench:quantam` for Quantam Users simulation.
18
+
5
19
  ## [1.8.11] - 2026-01-20
6
20
  **"The Workflow Fix"**
7
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qhttpx",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "gypfile": false,
5
5
  "description": "The Ultra-Fast HTTP Framework for Node.js",
6
6
  "main": "dist/src/index.js",
@@ -37,8 +37,7 @@
37
37
  "example": "npx tsx examples/api-server.ts",
38
38
  "bench": "npm run build && node dist/src/benchmarks/simple-json.js",
39
39
  "bench:quantam": "npm run build && node dist/src/benchmarks/quantam-users.js",
40
- "bench:ultra": "npm run build && node dist/src/benchmarks/ultra-mode.js",
41
- "bench:compare": "npm run build && node dist/src/benchmarks/compare.js"
40
+ "bench:ultra": "npm run build && node dist/src/benchmarks/ultra-mode.js"
42
41
  },
43
42
  "keywords": [
44
43
  "http",
@@ -74,18 +73,13 @@
74
73
  },
75
74
  "type": "commonjs",
76
75
  "devDependencies": {
77
- "@hono/node-server": "^1.19.9",
78
76
  "@types/autocannon": "^7.12.7",
79
77
  "@types/better-sqlite3": "^7.6.13",
80
78
  "@types/busboy": "^1.5.4",
81
- "@types/express": "^5.0.6",
82
79
  "@types/ioredis": "^4.28.10",
83
- "@types/koa": "^3.0.1",
84
80
  "@types/mongodb": "^4.0.6",
85
81
  "@types/node": "^25.0.9",
86
82
  "@types/pg": "^8.16.0",
87
- "@types/polka": "^0.5.8",
88
- "@types/restify": "^8.5.12",
89
83
  "@types/ws": "^8.18.1",
90
84
  "@typescript-eslint/eslint-plugin": "^8.53.0",
91
85
  "@typescript-eslint/parser": "^8.53.0",
@@ -94,17 +88,10 @@
94
88
  "eslint": "^9.39.2",
95
89
  "eslint-config-prettier": "^10.1.8",
96
90
  "eslint-plugin-prettier": "^5.5.5",
97
- "express": "^5.2.1",
98
- "fastify": "^5.7.1",
99
- "hono": "^4.11.4",
100
- "koa": "^3.1.1",
101
91
  "mongodb": "^7.0.0",
102
- "node-addon-api": "^8.5.0",
103
92
  "pg": "^8.17.1",
104
- "polka": "^0.5.2",
105
93
  "prebuildify": "^6.0.1",
106
94
  "prettier": "^3.8.0",
107
- "restify": "^11.1.0",
108
95
  "tsx": "^4.21.0",
109
96
  "typescript": "^5.9.3",
110
97
  "vitest": "^4.0.17"
@@ -113,6 +100,7 @@
113
100
  "better-sqlite3": "^12.6.2",
114
101
  "busboy": "^1.6.0",
115
102
  "fast-json-stringify": "^5.15.1",
103
+ "node-addon-api": "^8.5.0",
116
104
  "node-gyp-build": "^4.8.4",
117
105
  "pino": "^10.2.0",
118
106
  "pino-pretty": "^13.1.3",
Binary file