@node-red/nodes 3.0.2 → 3.1.0-beta.1
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/core/common/20-inject.js +48 -29
- package/core/common/24-complete.html +1 -1
- package/core/common/25-catch.html +2 -2
- package/core/common/25-status.html +2 -2
- package/core/common/91-global-config.html +27 -0
- package/core/common/91-global-config.js +7 -0
- package/core/function/10-function.html +12 -8
- package/core/function/15-change.js +1 -1
- package/core/function/16-range.html +1 -0
- package/core/function/16-range.js +6 -2
- package/core/function/80-template.html +2 -1
- package/core/function/89-delay.js +34 -30
- package/core/function/89-trigger.html +8 -1
- package/core/network/05-tls.html +3 -3
- package/core/network/06-httpproxy.html +1 -0
- package/core/network/10-mqtt.html +13 -5
- package/core/network/10-mqtt.js +51 -28
- package/core/network/21-httpin.html +1 -0
- package/core/network/21-httpin.js +12 -3
- package/core/network/21-httprequest.html +1 -0
- package/core/network/21-httprequest.js +5 -0
- package/core/network/31-tcpin.js +1 -1
- package/core/parsers/70-CSV.js +16 -5
- package/core/sequence/17-split.html +6 -1
- package/core/sequence/17-split.js +3 -1
- package/core/sequence/19-batch.html +8 -1
- package/core/storage/10-file.html +0 -0
- package/locales/de/common/20-inject.html +0 -0
- package/locales/de/common/21-debug.html +0 -0
- package/locales/de/common/25-catch.html +0 -0
- package/locales/de/common/25-status.html +0 -0
- package/locales/de/common/60-link.html +0 -0
- package/locales/de/common/90-comment.html +0 -0
- package/locales/de/common/98-unknown.html +0 -0
- package/locales/de/function/10-function.html +0 -0
- package/locales/de/function/10-switch.html +0 -0
- package/locales/de/function/15-change.html +0 -0
- package/locales/de/function/16-range.html +0 -0
- package/locales/de/function/80-template.html +0 -0
- package/locales/de/function/89-delay.html +0 -0
- package/locales/de/function/89-trigger.html +0 -0
- package/locales/de/function/90-exec.html +0 -0
- package/locales/de/messages.json +0 -0
- package/locales/de/network/05-tls.html +0 -0
- package/locales/de/network/06-httpproxy.html +0 -0
- package/locales/de/network/10-mqtt.html +0 -0
- package/locales/de/network/21-httpin.html +0 -0
- package/locales/de/network/21-httprequest.html +0 -0
- package/locales/de/network/22-websocket.html +0 -0
- package/locales/de/network/31-tcpin.html +0 -0
- package/locales/de/network/32-udp.html +0 -0
- package/locales/de/parsers/70-CSV.html +0 -0
- package/locales/de/parsers/70-HTML.html +0 -0
- package/locales/de/parsers/70-JSON.html +0 -0
- package/locales/de/parsers/70-XML.html +0 -0
- package/locales/de/parsers/70-YAML.html +0 -0
- package/locales/de/sequence/17-split.html +0 -0
- package/locales/de/sequence/18-sort.html +0 -0
- package/locales/de/sequence/19-batch.html +0 -0
- package/locales/de/storage/10-file.html +0 -0
- package/locales/de/storage/23-watch.html +0 -0
- package/locales/en-US/common/90-comment.html +1 -1
- package/locales/en-US/common/91-global-config.html +3 -0
- package/locales/en-US/function/16-range.html +3 -0
- package/locales/en-US/function/80-template.html +3 -0
- package/locales/en-US/messages.json +10 -2
- package/locales/en-US/parsers/70-CSV.html +1 -0
- package/locales/ja/common/91-global-config.html +3 -0
- package/locales/ja/function/80-template.html +3 -0
- package/locales/ja/messages.json +14 -5
- package/locales/ja/parsers/70-CSV.html +1 -0
- package/locales/ko/messages.json +0 -0
- package/locales/ru/messages.json +0 -0
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node-red/nodes",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.1.0-beta.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
}
|
|
16
16
|
],
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"acorn": "8.
|
|
18
|
+
"acorn": "8.8.1",
|
|
19
19
|
"acorn-walk": "8.2.0",
|
|
20
|
-
"ajv": "8.11.
|
|
21
|
-
"body-parser": "1.20.
|
|
20
|
+
"ajv": "8.11.2",
|
|
21
|
+
"body-parser": "1.20.1",
|
|
22
22
|
"cheerio": "1.0.0-rc.10",
|
|
23
23
|
"content-type": "1.0.4",
|
|
24
24
|
"cookie-parser": "1.4.6",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"fs-extra": "10.1.0",
|
|
31
31
|
"got": "11.8.5",
|
|
32
32
|
"hash-sum": "2.0.0",
|
|
33
|
-
"hpagent": "1.
|
|
33
|
+
"hpagent": "1.2.0",
|
|
34
34
|
"https-proxy-agent": "5.0.1",
|
|
35
35
|
"is-utf8": "0.2.1",
|
|
36
36
|
"js-yaml": "4.1.0",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"node-watch": "0.7.3",
|
|
42
42
|
"on-headers": "1.0.2",
|
|
43
43
|
"raw-body": "2.5.1",
|
|
44
|
-
"tough-cookie": "4.
|
|
44
|
+
"tough-cookie": "4.1.2",
|
|
45
45
|
"uuid": "8.3.2",
|
|
46
46
|
"ws": "7.5.6",
|
|
47
47
|
"xml2js": "0.4.23",
|