@node-red/nodes 3.0.1 → 3.0.2
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.
|
@@ -91,6 +91,11 @@
|
|
|
91
91
|
<label for="node-input-senderr" style="width: auto" data-i18n="httpin.senderr"></label>
|
|
92
92
|
</div>
|
|
93
93
|
|
|
94
|
+
<div class="form-row">
|
|
95
|
+
<input type="checkbox" id="node-input-insecureHTTPParser" style="display: inline-block; width: auto; vertical-align: top;">
|
|
96
|
+
<label for="node-input-insecureHTTPParser", style="width: auto;" data-i18n="httpin.insecureHTTPParser"></label>
|
|
97
|
+
</div>
|
|
98
|
+
|
|
94
99
|
|
|
95
100
|
<div class="form-row">
|
|
96
101
|
<label for="node-input-ret"><i class="fa fa-arrow-left"></i> <span data-i18n="httpin.label.return"></span></label>
|
|
@@ -227,6 +232,7 @@
|
|
|
227
232
|
persist: {value:false},
|
|
228
233
|
proxy: {type:"http proxy",required: false,
|
|
229
234
|
label:RED._("node-red:httpin.proxy-config") },
|
|
235
|
+
insecureHTTPParser: {value: false},
|
|
230
236
|
authType: {value: ""},
|
|
231
237
|
senderr: {value: false},
|
|
232
238
|
headers: { value: [] }
|
|
@@ -338,6 +344,12 @@
|
|
|
338
344
|
} else {
|
|
339
345
|
$("#node-input-useProxy").prop("checked", false);
|
|
340
346
|
}
|
|
347
|
+
|
|
348
|
+
if (node.insecureHTTPParser) {
|
|
349
|
+
$("node-intput-insecureHTTPParser").prop("checked", true)
|
|
350
|
+
} else {
|
|
351
|
+
$("node-intput-insecureHTTPParser").prop("checked", false)
|
|
352
|
+
}
|
|
341
353
|
updateProxyOptions();
|
|
342
354
|
$("#node-input-useProxy").on("click", function() {
|
|
343
355
|
updateProxyOptions();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-red/nodes",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.2",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"cookie": "0.5.0",
|
|
26
26
|
"cors": "2.8.5",
|
|
27
27
|
"cronosjs": "1.7.1",
|
|
28
|
-
"denque": "2.0
|
|
28
|
+
"denque": "2.1.0",
|
|
29
29
|
"form-data": "4.0.0",
|
|
30
30
|
"fs-extra": "10.1.0",
|
|
31
31
|
"got": "11.8.5",
|