@jsenv/fetch 1.3.35 → 1.3.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/fetch",
3
- "version": "1.3.35",
3
+ "version": "1.3.36",
4
4
  "type": "module",
5
5
  "description": "Unified url fetcher (http, http, file, data)",
6
6
  "repository": {
@@ -29,7 +29,7 @@
29
29
  "/src/"
30
30
  ],
31
31
  "dependencies": {
32
- "@jsenv/server": "17.6.1",
32
+ "@jsenv/server": "17.6.2",
33
33
  "@jsenv/urls": "2.9.10",
34
34
  "node-fetch": "3.3.2"
35
35
  },
@@ -43,6 +43,8 @@ export const fetchUrl = async (
43
43
  resource: new URL(url).pathname,
44
44
  },
45
45
  {
46
+ // reading the local filesystem: the path belongs in the status text
47
+ canExposeSensitiveData: true,
46
48
  timing: () => {
47
49
  return { end: () => {} };
48
50
  },