@furystack/rest-service 12.3.1 → 12.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [12.3.2] - 2026-03-19
4
+
5
+ ### ✨ Features
6
+
7
+ - OpenAPI document generation with metadata (`generateOpenApiDocument`, `CreateGetOpenApiDocumentAction`, `WithSchemaAndOpenApiAction`).
8
+ - Added server lifecycle events (`onServerListening`, `onServerClosed`) and HTTP auth events (`onLogin`, `onLogout`, `onSessionInvalidated`).
9
+ - `ApiManager` now responds with 400 for malformed percent‑encoded path parameters instead of crashing.
10
+
11
+ ### ⬆️ Dependencies
12
+
13
+ - Upgraded `vite` from ^7.3.1 to ^8.0.0 for improved build performance and new features
14
+ - Upgraded `vitest` from ^4.0.18 to ^4.1.0
15
+ - Upgraded `@vitest/coverage-istanbul` from ^4.0.18 to ^4.1.0
16
+
3
17
  ## [12.3.1] - 2026-03-10
4
18
 
5
19
  ### ⬆️ Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@furystack/rest-service",
3
- "version": "12.3.1",
3
+ "version": "12.3.2",
4
4
  "description": "REST API service implementation for FuryStack",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -39,22 +39,22 @@
39
39
  },
40
40
  "homepage": "https://github.com/furystack/furystack",
41
41
  "dependencies": {
42
- "@furystack/core": "^16.0.0",
43
- "@furystack/inject": "^12.0.32",
44
- "@furystack/repository": "^10.1.7",
45
- "@furystack/rest": "^8.1.1",
46
- "@furystack/security": "^7.0.5",
47
- "@furystack/utils": "^8.2.1",
42
+ "@furystack/core": "^16.0.1",
43
+ "@furystack/inject": "^12.0.33",
44
+ "@furystack/repository": "^10.1.8",
45
+ "@furystack/rest": "^8.1.2",
46
+ "@furystack/security": "^7.0.6",
47
+ "@furystack/utils": "^8.2.2",
48
48
  "ajv": "^8.18.0",
49
49
  "ajv-formats": "^3.0.1",
50
50
  "path-to-regexp": "^8.3.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@furystack/rest-client-fetch": "^8.1.3",
54
- "@types/node": "^25.3.5",
53
+ "@furystack/rest-client-fetch": "^8.1.4",
54
+ "@types/node": "^25.5.0",
55
55
  "@types/ws": "^8.18.1",
56
56
  "typescript": "^5.9.3",
57
- "vitest": "^4.0.18",
57
+ "vitest": "^4.1.0",
58
58
  "ws": "^8.19.0"
59
59
  },
60
60
  "engines": {