node-red 3.1.3 → 3.1.5
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/CHANGELOG.md +46 -0
- package/lib/red.js +2 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
#### 3.1.5: Maintenance Release
|
|
2
|
+
|
|
3
|
+
Runtime
|
|
4
|
+
|
|
5
|
+
- Fix require of dns module (#4562) @knolleary
|
|
6
|
+
- Ensure global creds object is initialised when adding first cred (#4561) @knolleary
|
|
7
|
+
|
|
8
|
+
#### 3.1.4: Maintenance Release
|
|
9
|
+
|
|
10
|
+
Editor
|
|
11
|
+
|
|
12
|
+
- Highlight errors in config node sidebar (#4529) @knolleary
|
|
13
|
+
- Improve feedback in import dialog to show conflicted nodes (#4550) @knolleary
|
|
14
|
+
- Modify node users info in config editor footer (#4528) @knolleary
|
|
15
|
+
- Handle modified-nodes deploy after replacing unknown config node (#4556) @knolleary
|
|
16
|
+
- Handle undefined default export when importing module (#4539) @knolleary
|
|
17
|
+
- Fix icon scaling for non .svg icons (#4491) @ralphwetzel
|
|
18
|
+
- (convertNode) Do not create the credentials object if there is nothing to export (#4544) @GogoVega
|
|
19
|
+
- Ensure subflow instance node has g property set (#4538) @knolleary
|
|
20
|
+
- Handle importing flow with existing subflow and instance node (#4546) @knolleary
|
|
21
|
+
- Update index.mst (#4483) @gorenje
|
|
22
|
+
- Include top level property name when copying path from context (#4527) @knolleary
|
|
23
|
+
- Add handling to disable items on context menu (#4500) @kazuhitoyokoi
|
|
24
|
+
- Focus Quick Add dialog from context menu (#4516) @kazuhitoyokoi
|
|
25
|
+
- Fix subflow ports in Quick Add dialog (#4518) @kazuhitoyokoi
|
|
26
|
+
- Fix location of subflow ports in palette (#4502) @kazuhitoyokoi
|
|
27
|
+
- Client/Editor Events: fix off-in-on pattern emulating once (#4484) @gorenje
|
|
28
|
+
- Restore caching busting functionality without using explict version number (#4512) @knolleary
|
|
29
|
+
- Do not translate the list of available languages (#4531) @GogoVega
|
|
30
|
+
- Add French translation of v3.1.3 changes (#4477) @GogoVega
|
|
31
|
+
- i18n(es-ES) Spanish Spain translation (#4495) @joebordes
|
|
32
|
+
- Add missing validation messages (#4487) @GogoVega
|
|
33
|
+
- Add Japanese translations for v3.1.3 (#4498) @kazuhitoyokoi
|
|
34
|
+
- Replace `rename` by `edit` for the menu flow label (#4506) @GogoVega
|
|
35
|
+
- Update editor.json fix typo in German translation (#4552) @guidoffm
|
|
36
|
+
|
|
37
|
+
Runtime
|
|
38
|
+
|
|
39
|
+
- Bump the github-actions group with 1 update (#4554) @app/dependabot
|
|
40
|
+
- Clone objects types when getting env values (#4519) @knolleary
|
|
41
|
+
- Ensure global-config credential env vars are merged on deploy (#4526) @knolleary
|
|
42
|
+
|
|
43
|
+
Nodes
|
|
44
|
+
|
|
45
|
+
- 21-httprequest.js remove unused code, because of broken use of toLowercase (#4522) @gorenje
|
|
46
|
+
|
|
1
47
|
#### 3.1.3: Maintenance Release
|
|
2
48
|
|
|
3
49
|
Editor
|
package/lib/red.js
CHANGED
|
@@ -26,8 +26,8 @@ var server = null;
|
|
|
26
26
|
var apiEnabled = false;
|
|
27
27
|
|
|
28
28
|
const NODE_MAJOR_VERSION = process.versions.node.split('.')[0];
|
|
29
|
-
if (NODE_MAJOR_VERSION
|
|
30
|
-
const dns = require('
|
|
29
|
+
if (NODE_MAJOR_VERSION >= 16) {
|
|
30
|
+
const dns = require('dns');
|
|
31
31
|
dns.setDefaultResultOrder('ipv4first');
|
|
32
32
|
}
|
|
33
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-red",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.5",
|
|
4
4
|
"description": "Low-code programming for event-driven applications",
|
|
5
5
|
"homepage": "https://nodered.org",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"flow"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@node-red/editor-api": "3.1.
|
|
35
|
-
"@node-red/runtime": "3.1.
|
|
36
|
-
"@node-red/util": "3.1.
|
|
37
|
-
"@node-red/nodes": "3.1.
|
|
34
|
+
"@node-red/editor-api": "3.1.5",
|
|
35
|
+
"@node-red/runtime": "3.1.5",
|
|
36
|
+
"@node-red/util": "3.1.5",
|
|
37
|
+
"@node-red/nodes": "3.1.5",
|
|
38
38
|
"basic-auth": "2.0.1",
|
|
39
39
|
"bcryptjs": "2.4.3",
|
|
40
40
|
"express": "4.18.2",
|
|
41
41
|
"fs-extra": "11.1.1",
|
|
42
|
-
"node-red-admin": "^3.1.
|
|
42
|
+
"node-red-admin": "^3.1.2",
|
|
43
43
|
"nopt": "5.0.0",
|
|
44
44
|
"semver": "7.5.4"
|
|
45
45
|
},
|