Nick O'Leary
9d39709038
Merge pull request #3660 from Steve-Mcl/backport-3632
...
Fix JSONata evaluation of inject button (Backport 3632 to v2.x)
2022-06-16 11:14:26 +01:00
Nick O'Leary
68a2786ff2
Merge pull request #3658 from Steve-Mcl/backport-3630
...
Dont delete TCP socket twice (backport Backport: #3630 to v2.x)
2022-06-16 11:13:17 +01:00
Hiroyasu Nishiyama
4b4e5a0861
fix JSONata evaluation of inject button
2022-06-13 13:52:28 +01:00
Stephen McLaughlin
c7994b6393
Dont delete TCP socket twice
2022-06-13 13:40:50 +01:00
Steve-Mcl
933cad888f
add changes from #3563
...
Add client and Runtime MQTT topic validation and fix subsequent connection lockup
(that arises due to bad birth/will topic)
backport-2.x
2022-06-13 12:57:22 +01:00
Stephen McLaughlin
8133c5e834
define noproxy variable
2022-06-13 12:16:10 +01:00
Stephen McLaughlin
e7f6549cb6
Remove unnecessary call to clientRemoveListeners
...
Also, merge the non JSDOC comment into the JSDOC comment
2022-06-13 12:15:27 +01:00
Phil Day
2ded07c765
call client.end with force=true on timeout
2022-06-13 12:15:27 +01:00
Phil Day
6a799e7e2a
Update packages/node_modules/@node-red/nodes/core/network/10-mqtt.js
...
Co-authored-by: Stephen McLaughlin <44235289+Steve-Mcl@users.noreply.github.com>
2022-06-13 12:15:27 +01:00
Phil Day
1d40378f8c
Update packages/node_modules/@node-red/nodes/core/network/10-mqtt.js
...
Co-authored-by: Stephen McLaughlin <44235289+Steve-Mcl@users.noreply.github.com>
2022-06-13 12:15:27 +01:00
Phil Day
bcab1cf096
Update packages/node_modules/@node-red/nodes/core/network/10-mqtt.js
...
Co-authored-by: Stephen McLaughlin <44235289+Steve-Mcl@users.noreply.github.com>
2022-06-13 12:15:27 +01:00
Phil Day
03484fd5cd
Updated to cover the removal of individual event handlers
2022-06-13 12:15:27 +01:00
Phil Day
02d9ad479d
Track which event handlers we add to the mqtt client so we can removed them cleanly
2022-06-13 12:15:23 +01:00
Phil Day
3be75fa822
Add Force parameter mqtt client.end() when called in disconnect
2022-06-13 12:14:38 +01:00
Stephen McLaughlin
ca204dea2d
Use new validation option to return better label
...
Co-authored-by: Nick O'Leary <nick.oleary@gmail.com>
2022-06-13 12:11:42 +01:00
Stephen McLaughlin
294fc6b62f
Ensure userProps makes it through to runtime
2022-04-29 11:25:19 +01:00
Stephen McLaughlin
662a44fccf
save and restore v5 config user props
2022-04-29 10:44:19 +01:00
Stephen McLaughlin
020eaef5ba
Fix incorrect MQTT status
...
fixes #3550
2022-04-26 16:12:54 +01:00
Nick O'Leary
4706e20a1d
Merge pull request #3526 from node-red-hitachi/fix-status-reference-in-debug-node
...
fix reference error of msg.status in debug node
2022-04-20 10:56:25 +01:00
Steve-Mcl
8df53e441d
remove unused vars
2022-04-19 10:42:00 +01:00
Stephen McLaughlin
6f89efa40b
remove unused if block
...
Co-authored-by: Nick O'Leary <nick.oleary@gmail.com>
2022-04-19 10:30:08 +01:00
Steve-Mcl
97678577fb
call done after ws disconnects
...
fixes #3527
2022-04-14 22:07:52 +01:00
Hiroyasu Nishiyama
226f45d8d5
fix reference error of msg.status in debug node
2022-04-12 11:33:02 +09:00
Nick O'Leary
0f37b326a0
Merge pull request #3502 from Steve-Mcl/fix-mqtt-will-props
...
fix typo of will properties (properies)
2022-03-21 19:29:23 +00:00
Steve-Mcl
7f9f551cfe
fix typo of will properties (properies)
...
Fixes #3501
2022-03-21 15:24:23 +00:00
Steve-Mcl
10b18de3e0
fix: ensure mqtt v5 props can be set false
...
fixes #3471
2022-03-05 11:24:25 +00:00
Dave Conway-Jones
c0612e6193
Merge branch 'master' of https://github.com/node-red/node-red
2022-02-28 09:59:35 +00:00
萧十一郎
380a08242a
fix html label mistake ( #3459 )
2022-02-26 10:10:17 +00:00
Dave Conway-Jones
0398ef3b90
undo regression in tcp-in node (missed one)
...
and add test
2022-02-25 16:06:44 +00:00
Dave Conway-Jones
25f4fbf2bb
undo regression to tcp-in node
...
To fix #3454
2022-02-21 20:03:25 +00:00
Steve-Mcl
669aa769c2
Fix close timeout on MQTT nodes
...
fixes #2934
2022-02-17 10:18:46 +00:00
Nick O'Leary
be11fda814
Allow nbRateUnits to be undefined when validating
...
Fixes #3407
2022-02-14 20:44:55 +00:00
Alexandre Alapetite
280d63fde7
Fix util.encodeObject
2022-02-03 15:59:25 +01:00
Alexandre Alapetite
e55cbb3e3d
Fix bug in debug node due to msg.hasOwnProperty construct
...
`msg.hasOwnProperty("status")` might make the debug node crash/produce an error if the payload was created with `Object.create(null)`.
This is the case e.g. for `ini` (to parse INI files), an official NPM node:
4f289946b3/lib/ini.js (L63)
My Node-RED node `node-red-contrib-parser-ini`, which is using that library, was hit by this bug and I had to ship a workaround
fe6b1eb4b1/parser-ini.js (L14)
The `msg.hasOwnProperty("xxx")` construct should not be used since ECMAScript 5.1.
ESLint advises in the same direction https://eslint.org/docs/rules/no-prototype-builtins
This patch was produced using the following regex:
Search: `\b([\w.]+).hasOwnProperty\(`
Replace: `Object.prototype.hasOwnProperty.call($1, `
This could be applied more gobally if desired.
2022-02-03 02:01:22 +01:00
Nick O'Leary
1cea1ced82
Merge pull request #3371 from node-red/node-alias
...
Add _path property to nodes and expose as node.path in Function node
2022-01-26 11:10:43 +00:00
Nick O'Leary
703c5adba7
Add _path property to nodes and expose as node.path in Function node
2022-01-25 21:32:28 +00:00
Steve-Mcl
8948ca5323
Merge branch 'dev' into mqtt-reconnect-fix
2022-01-25 12:32:49 +00:00
Steve-Mcl
9c3be51fe9
Improve MQTT broker disconnect situation
...
* Ensure topic is sane to prevent error 129
* Ensure a log entry is made
* Update node status
2022-01-25 12:29:51 +00:00
Nick O'Leary
4e5ddd57bf
Merge branch 'dev' of github.com:node-red/node-red into dev
2022-01-24 23:18:43 +00:00
Nick O'Leary
e0d4ecf835
Merge branch 'master' into dev
2022-01-24 23:18:25 +00:00
Hiroyasu Nishiyama
5effcdb024
use setCookieSync instead of setCookie
2022-01-19 23:45:13 +09:00
Nick O'Leary
c4465ba58d
Merge pull request #3351 from node-red-hitachi/fix-delay-rate-unit-validation
...
fix unit value validation of delay node
2022-01-18 09:45:56 +00:00
Hiroyasu Nishiyama
e7189ab81f
fix unit value validation of delay node
2022-01-13 23:52:06 +09:00
Hiroyasu Nishiyama
f786c7f144
fix JSON propety validation of inject node
2022-01-13 21:42:50 +09:00
Nick O'Leary
51f45293b8
Merge branch 'master' into dev
2022-01-13 10:52:36 +00:00
Nick O'Leary
e1467dfe23
Merge pull request #3348 from node-red/scrollbar-expand
...
Prevent function scrollbar from obscuring expand button
2022-01-13 09:49:15 +00:00
Nick O'Leary
c480f96d30
Prevent function scrollbar from obscuring expand button
...
Fixes #2955
2022-01-13 09:46:37 +00:00
Nick O'Leary
036a825892
Only setup ws client heartbeat once it is connected
...
Fixes #3264
2022-01-12 21:46:56 +00:00
Nick O'Leary
30b00741b5
Merge pull request #3296 from node-red/Json-try-parse-buffer
...
Let JSON node attempt to parse buffer if it contains a valid string
2022-01-12 18:58:02 +00:00
Nick O'Leary
f86e743cce
Merge branch 'master' into dev
2022-01-12 17:59:26 +00:00