@stryke/http 0.12.17 → 0.12.18
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 +11 -0
- package/README.md +6 -6
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# Changelog for Stryke - HTTP
|
|
4
|
+
|
|
5
|
+
## [0.12.17](https://github.com/storm-software/stryke/releases/tag/http%400.12.17) (12/18/2025)
|
|
6
|
+
|
|
7
|
+
### Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated **type-checks** to **v0.5.12**
|
|
10
|
+
- Updated **url** to **v0.3.18**
|
|
11
|
+
|
|
1
12
|

|
|
2
13
|
|
|
3
14
|
# Changelog for Stryke - HTTP
|
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
|
|
6
6
|
<div align="center">
|
|
7
7
|
<picture>
|
|
8
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-dark
|
|
9
|
-
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-light
|
|
10
|
-
<img src="https://public.storm-cdn.com/storm-software/banner-1280x640-dark
|
|
8
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-dark.gif">
|
|
9
|
+
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x640-light.gif">
|
|
10
|
+
<img src="https://public.storm-cdn.com/storm-software/banner-1280x640-dark.gif" width="100%" alt="Storm Software" />
|
|
11
11
|
</picture>
|
|
12
12
|
</div>
|
|
13
13
|
<br />
|
|
@@ -247,9 +247,9 @@ specification. Contributions of any kind welcome!
|
|
|
247
247
|
|
|
248
248
|
<div align="center">
|
|
249
249
|
<picture>
|
|
250
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-dark
|
|
251
|
-
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-light
|
|
252
|
-
<img src="https://public.storm-cdn.com/storm-software/banner-1280x320-dark
|
|
250
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-dark.webp">
|
|
251
|
+
<source media="(prefers-color-scheme: light)" srcset="https://public.storm-cdn.com/storm-software/banner-1280x320-light.webp">
|
|
252
|
+
<img src="https://public.storm-cdn.com/storm-software/banner-1280x320-dark.webp" width="100%" alt="Storm Software" />
|
|
253
253
|
</picture>
|
|
254
254
|
</div>
|
|
255
255
|
<br />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stryke/http",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.18",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing HTTP communication utilities used by Storm Software.",
|
|
6
6
|
"repository": {
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
},
|
|
44
44
|
"types": "./dist/index.d.cts",
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@stryke/type-checks": "^0.5.
|
|
47
|
-
"@stryke/url": "^0.3.
|
|
46
|
+
"@stryke/type-checks": "^0.5.13",
|
|
47
|
+
"@stryke/url": "^0.3.19",
|
|
48
48
|
"defu": "^6.1.4",
|
|
49
49
|
"undici": "^7.16.0"
|
|
50
50
|
},
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"undici-types": "^7.16.0"
|
|
55
55
|
},
|
|
56
56
|
"publishConfig": { "access": "public" },
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "ed86f49867133045cf1eb4626ca513043221d0af"
|
|
58
58
|
}
|