@furystack/rest 8.1.1 → 8.1.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 +14 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [8.1.2] - 2026-03-19
|
|
4
|
+
|
|
5
|
+
### ✨ Features
|
|
6
|
+
|
|
7
|
+
- Added bidirectional OpenAPI 3.1 support (`OpenApiToRestApi`, `openApiToSchema()`, converters, metadata).
|
|
8
|
+
- Improved error handling: `decode()` throws `RequestError` on invalid query values and percent-encoding.
|
|
9
|
+
- `decode()` now throws `RequestError` for malformed base64/JSON/percent‑encoding inputs.
|
|
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
|
## [8.1.1] - 2026-03-10
|
|
4
18
|
|
|
5
19
|
### ⬆️ Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@furystack/rest",
|
|
3
|
-
"version": "8.1.
|
|
3
|
+
"version": "8.1.2",
|
|
4
4
|
"description": "Generic REST package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -38,13 +38,13 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://github.com/furystack/furystack",
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@furystack/core": "^16.0.
|
|
42
|
-
"@furystack/inject": "^12.0.
|
|
41
|
+
"@furystack/core": "^16.0.1",
|
|
42
|
+
"@furystack/inject": "^12.0.33"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@types/node": "^25.
|
|
45
|
+
"@types/node": "^25.5.0",
|
|
46
46
|
"typescript": "^5.9.3",
|
|
47
|
-
"vitest": "^4.0
|
|
47
|
+
"vitest": "^4.1.0"
|
|
48
48
|
},
|
|
49
49
|
"engines": {
|
|
50
50
|
"node": ">=22.0.0"
|