@furystack/rest-client-fetch 8.1.3 → 8.1.5

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 +23 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [8.1.5] - 2026-03-25
4
+
5
+ ### 📦 Build
6
+
7
+ - Removed deprecated `baseUrl` from tsconfig.json for TypeScript 6 compatibility
8
+
9
+ ### ⬆️ Dependencies
10
+
11
+ - Upgraded `typescript` from ^5.9.3 to ^6.0.2
12
+ - Upgraded `vitest` from ^4.1.0 to ^4.1.1
13
+
14
+ ## [8.1.4] - 2026-03-19
15
+
16
+ ### ✨ Features
17
+
18
+ - Added `onResponseParseError` callback to `ClientOptions` to surface JSON parse failures.
19
+
20
+ ### ⬆️ Dependencies
21
+
22
+ - Upgraded `vite` from ^7.3.1 to ^8.0.0 for improved build performance and new features
23
+ - Upgraded `vitest` from ^4.0.18 to ^4.1.0
24
+ - Upgraded `@vitest/coverage-istanbul` from ^4.0.18 to ^4.1.0
25
+
3
26
  ## [8.1.3] - 2026-03-10
4
27
 
5
28
  ### ⬆️ Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@furystack/rest-client-fetch",
3
- "version": "8.1.3",
3
+ "version": "8.1.5",
4
4
  "description": "Native browser fetch based REST API implementation for FuryStack",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -39,12 +39,12 @@
39
39
  },
40
40
  "homepage": "https://github.com/furystack/furystack",
41
41
  "dependencies": {
42
- "@furystack/rest": "^8.1.1",
42
+ "@furystack/rest": "^8.1.3",
43
43
  "path-to-regexp": "^8.3.0"
44
44
  },
45
45
  "devDependencies": {
46
- "typescript": "^5.9.3",
47
- "vitest": "^4.0.18"
46
+ "typescript": "^6.0.2",
47
+ "vitest": "^4.1.1"
48
48
  },
49
49
  "engines": {
50
50
  "node": ">=22.0.0"