Merge pull request #5163 from node-red/rel410b1-prep

Initial prep for 4.1.0-beta.1 release
This commit is contained in:
Nick O'Leary
2025-06-10 16:29:56 +01:00
committed by GitHub
15 changed files with 183 additions and 59 deletions

View File

@@ -431,7 +431,7 @@ in your Node-RED user directory (${RED.settings.userDir}).
normalisedHeaders[k.toLowerCase()] = response.headers[k]
})
if (normalisedHeaders['www-authenticate']) {
let authHeader = buildDigestHeader(digestCreds.user,digestCreds.password, response.request.options.method, requestUrl.pathname, normalisedHeaders['www-authenticate'])
let authHeader = buildDigestHeader(digestCreds.user,digestCreds.password, response.request.options.method, requestUrl.pathname + requestUrl.search, normalisedHeaders['www-authenticate'])
options.headers.Authorization = authHeader;
}
// response.request.options.merge(options)

View File

@@ -1,6 +1,6 @@
{
"name": "@node-red/nodes",
"version": "4.1.0-beta.0",
"version": "4.1.0-beta.1",
"license": "Apache-2.0",
"repository": {
"type": "git",
@@ -15,7 +15,7 @@
}
],
"dependencies": {
"acorn": "8.14.1",
"acorn": "8.15.0",
"acorn-walk": "8.3.4",
"ajv": "8.17.1",
"body-parser": "1.20.3",