fetch-nodeshim 0.3.0-canary-4913c1df1c113e5c07d128c574512b23632ce954 → 0.4.0-canary-eaf68db8156953f9940d5b9be8744b077581ca58
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 +13 -1
- package/dist/minifetch.js +395 -214
- package/dist/minifetch.js.map +1 -1
- package/dist/minifetch.mjs +360 -181
- package/dist/minifetch.mjs.map +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# minifetch
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.4.0-canary-eaf68db8156953f9940d5b9be8744b077581ca58
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add automatic configuration for `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` similar to the upcoming Node 24+ built-in support. Agents will automatically be created and used when these environment variables are set
|
|
8
|
+
Submitted by [@kitten](https://github.com/kitten) (See [#8](https://github.com/kitten/fetch-nodeshim/pull/8))
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Update rollup config for reduced output and exclude sources from sourcemaps
|
|
13
|
+
Submitted by [@kitten](https://github.com/kitten) (See [#9](https://github.com/kitten/fetch-nodeshim/pull/9))
|
|
14
|
+
|
|
15
|
+
## 0.3.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
|
6
18
|
|