undici 5.28.2 → 5.28.3

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.
@@ -1203,6 +1203,9 @@ function httpRedirectFetch (fetchParams, response) {
1203
1203
  // https://fetch.spec.whatwg.org/#cors-non-wildcard-request-header-name
1204
1204
  request.headersList.delete('authorization')
1205
1205
 
1206
+ // https://fetch.spec.whatwg.org/#authentication-entries
1207
+ request.headersList.delete('proxy-authorization', true)
1208
+
1206
1209
  // "Cookie" and "Host" are forbidden request-headers, which undici doesn't implement.
1207
1210
  request.headersList.delete('cookie')
1208
1211
  request.headersList.delete('host')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "undici",
3
- "version": "5.28.2",
3
+ "version": "5.28.3",
4
4
  "description": "An HTTP/1.1 client, written from scratch for Node.js",
5
5
  "homepage": "https://undici.nodejs.org",
6
6
  "bugs": {