node-red 3.1.2 → 3.1.4

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