@node-red/editor-client 3.1.7 → 4.0.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/locales/en-US/editor.json +8 -1
- package/package.json +1 -1
- package/public/red/about +31 -0
- package/public/red/red.js +677 -121
- package/public/red/red.min.js +3 -3
- package/public/red/style.min.css +2 -2
- package/public/red/tours/3.1/welcome.js +231 -0
- package/public/red/tours/images/nr4-auto-complete.png +0 -0
- package/public/red/tours/images/nr4-sf-config.png +0 -0
- package/public/red/tours/images/nr4-timestamp-formatting.png +0 -0
- package/public/red/tours/welcome.js +36 -186
- /package/public/red/tours/{images → 3.1/images}/context-menu.png +0 -0
- /package/public/red/tours/{images → 3.1/images}/global-env-vars.png +0 -0
- /package/public/red/tours/{images → 3.1/images}/hiding-flows.png +0 -0
- /package/public/red/tours/{images → 3.1/images}/locking-flows.png +0 -0
- /package/public/red/tours/{images → 3.1/images}/mermaid.png +0 -0
- /package/public/red/tours/{images → 3.1/images}/node-help.png +0 -0
- /package/public/red/tours/{images → 3.1/images}/tab-changes.png +0 -0
|
@@ -924,7 +924,14 @@
|
|
|
924
924
|
"date": "timestamp",
|
|
925
925
|
"jsonata": "expression",
|
|
926
926
|
"env": "env variable",
|
|
927
|
-
"cred": "credential"
|
|
927
|
+
"cred": "credential",
|
|
928
|
+
"conf-types": "config node"
|
|
929
|
+
},
|
|
930
|
+
"date": {
|
|
931
|
+
"format": {
|
|
932
|
+
"timestamp": "milliseconds since epoch",
|
|
933
|
+
"object": "JavaScript Date Object"
|
|
934
|
+
}
|
|
928
935
|
}
|
|
929
936
|
},
|
|
930
937
|
"editableList": {
|
package/package.json
CHANGED
package/public/red/about
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
#### 4.0.0-beta.1: Beta Release
|
|
2
|
+
|
|
3
|
+
Editor
|
|
4
|
+
|
|
5
|
+
- Click on id in debug panel highlights node or flow (#4439) @ralphwetzel
|
|
6
|
+
- Support config selection in a subflow env var (#4587) @Steve-Mcl
|
|
7
|
+
- Add timestamp formatting options to TypedInput (#4468) @knolleary
|
|
8
|
+
- Allow RED.view.select to select links (#4553) @lgrkvst
|
|
9
|
+
- Add auto-complete to flow/global/env typedInput types (#4480) @knolleary
|
|
10
|
+
- Improve the appearance of the Node-RED primary header (#4598) @joepavitt
|
|
11
|
+
|
|
12
|
+
Runtime
|
|
13
|
+
|
|
14
|
+
- let settings.httpNodeAuth accept single middleware or array of middlewares (#4572) @kevinGodell
|
|
15
|
+
- Upgrade to JSONata 2.x (#4590) @knolleary
|
|
16
|
+
- Bump minimum version to node 18 (#4571) @knolleary
|
|
17
|
+
- npm: Remove production flag on npm invocation (#4347) @ZJvandeWeg
|
|
18
|
+
- Timer testing fix (#4367) @hlovdal
|
|
19
|
+
- Bump to 4.0.0-dev (#4322) @knolleary
|
|
20
|
+
|
|
21
|
+
Nodes
|
|
22
|
+
|
|
23
|
+
- TCP node - when resetting, if no payload, stay disconnected @dceejay
|
|
24
|
+
- HTML node: add option for collecting attributes and content (#4513) @gorenje
|
|
25
|
+
- let split node specify property to split on, and join auto join correctly (#4386) @dceejay
|
|
26
|
+
- Add RFC4180 compliant mode to CSV node (#4540) @Steve-Mcl
|
|
27
|
+
- Fix change node to return boolean if asked (#4525) @dceejay
|
|
28
|
+
- Let msg.reset reset Tcp request node connection when in stay connected mode (#4406) @dceejay
|
|
29
|
+
- Let debug node status msg length be settable via settings (#4402) @dceejay
|
|
30
|
+
- Feat: Add ability to set headers for WebSocket client (#4436) @marcus-j-davies
|
|
31
|
+
|
|
1
32
|
#### 3.1.7: Maintenance Release
|
|
2
33
|
|
|
3
34
|
- Add Japanese translation for v3.1.6 (#4603) @kazuhitoyokoi
|