@furystack/rest-client-fetch 8.0.32 → 8.0.34
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 +12 -0
- package/package.json +12 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [8.0.34] - 2026-01-26
|
|
4
|
+
|
|
5
|
+
### 🔧 Chores
|
|
6
|
+
|
|
7
|
+
- Standardized author format, improved keywords, removed obsolete `gitHead`, added `engines` (Node 22+) and `sideEffects: false`
|
|
8
|
+
|
|
9
|
+
## [8.0.33] - 2026-01-26
|
|
10
|
+
|
|
11
|
+
### ⬆️ Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated `@furystack/inject` with fix for singleton injector reference being overwritten by child injectors
|
|
14
|
+
|
|
3
15
|
## [8.0.32] - 2026-01-22
|
|
4
16
|
|
|
5
17
|
### ⬆️ Dependencies
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@furystack/rest-client-fetch",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.34",
|
|
4
4
|
"description": "Native browser fetch based REST API implementation for FuryStack",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"build
|
|
7
|
+
"build": "tsc --outDir ./esm"
|
|
8
8
|
},
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
+
"types": "./esm/index.d.ts",
|
|
11
12
|
"import": "./esm/index.js"
|
|
12
13
|
}
|
|
13
14
|
},
|
|
14
15
|
"files": [
|
|
15
16
|
"esm",
|
|
16
|
-
"types",
|
|
17
17
|
"src"
|
|
18
18
|
],
|
|
19
19
|
"repository": {
|
|
@@ -25,24 +25,29 @@
|
|
|
25
25
|
"HTTP",
|
|
26
26
|
"REST",
|
|
27
27
|
"API",
|
|
28
|
-
"
|
|
28
|
+
"client",
|
|
29
|
+
"fetch",
|
|
30
|
+
"browser"
|
|
29
31
|
],
|
|
30
32
|
"publishConfig": {
|
|
31
33
|
"access": "public"
|
|
32
34
|
},
|
|
33
|
-
"author": "gallay.lajos@gmail.com",
|
|
35
|
+
"author": "Gallay Lajos <gallay.lajos@gmail.com>",
|
|
34
36
|
"license": "GPL-2.0",
|
|
35
37
|
"bugs": {
|
|
36
38
|
"url": "https://github.com/furystack/furystack/issues"
|
|
37
39
|
},
|
|
38
40
|
"homepage": "https://github.com/furystack/furystack",
|
|
39
41
|
"dependencies": {
|
|
40
|
-
"@furystack/rest": "^8.0.
|
|
42
|
+
"@furystack/rest": "^8.0.34",
|
|
41
43
|
"path-to-regexp": "^8.3.0"
|
|
42
44
|
},
|
|
43
45
|
"devDependencies": {
|
|
44
46
|
"typescript": "^5.9.3",
|
|
45
47
|
"vitest": "^4.0.17"
|
|
46
48
|
},
|
|
47
|
-
"
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=22.0.0"
|
|
51
|
+
},
|
|
52
|
+
"sideEffects": false
|
|
48
53
|
}
|