latency-lab 1.1.0 → 1.1.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 +9 -0
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.1] - 2026-06-20
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Added real Fastify and Hono integration tests.
|
|
8
|
+
- Added ESM, CommonJS, subpath export, and npm package smoke tests.
|
|
9
|
+
- Raised enforced coverage thresholds to protect published behavior.
|
|
10
|
+
- Expanded malformed configuration and adapter edge-case coverage.
|
|
11
|
+
|
|
3
12
|
## [1.1.0] - 2026-06-20
|
|
4
13
|
|
|
5
14
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "latency-lab",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Inject realistic network chaos into backend applications during local development and testing",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"network",
|
|
@@ -125,11 +125,14 @@
|
|
|
125
125
|
"lint": "eslint src test",
|
|
126
126
|
"lint:fix": "eslint src test --fix",
|
|
127
127
|
"test": "vitest run",
|
|
128
|
+
"test:package": "npm run build && node test/package-smoke.mjs",
|
|
128
129
|
"test:watch": "vitest",
|
|
129
130
|
"test:coverage": "vitest run --coverage",
|
|
130
131
|
"typecheck": "tsc --noEmit",
|
|
131
|
-
"version:
|
|
132
|
-
"
|
|
132
|
+
"version:release": "node scripts/bump-version.mjs",
|
|
133
|
+
"version:patch": "node scripts/bump-version.mjs patch",
|
|
134
|
+
"version:minor": "node scripts/bump-version.mjs minor",
|
|
135
|
+
"prepublishOnly": "npm run version:release && npm run build:check && npm run lint && npm run test && npm run test:package",
|
|
133
136
|
"prepack": "npm run build",
|
|
134
137
|
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\""
|
|
135
138
|
},
|
|
@@ -139,6 +142,8 @@
|
|
|
139
142
|
"@typescript-eslint/parser": "^8.0.0",
|
|
140
143
|
"@vitest/coverage-v8": "^2.1.9",
|
|
141
144
|
"eslint": "^9.0.0",
|
|
145
|
+
"fastify": "^5.8.5",
|
|
146
|
+
"hono": "^4.12.26",
|
|
142
147
|
"tsup": "^8.5.1",
|
|
143
148
|
"typescript": "^5.9.3",
|
|
144
149
|
"vitest": "^2.1.9"
|