node-red-contrib-knx-ultimate 4.3.17 → 4.3.18
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 +7 -0
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
+
**Version 4.3.18** - May 2026<br/>
|
|
10
|
+
|
|
11
|
+
- Bump Engine to 5.5.8
|
|
12
|
+
- Security: removed unused dependency `translate-google` (which transitively pulled in the critically vulnerable `safe-eval` package). No functionality was affected as the package was never referenced in the codebase.<br/>
|
|
13
|
+
- Security: applied `npm audit fix` to resolve moderate and high vulnerabilities in `brace-expansion`, `diff`, `minimatch`, `picomatch`, `postcss`, and `vite`.<br/>
|
|
14
|
+
- Tests: added unit test suites for `payloadManipulation` (Manipulate), `utils` (ToBoolean, fetchFromObject), `ColorConverter` (kelvin/mirek, scale, brightness, HSV/RGB, hexRgb, xyBriToRgb) and `XYFromRGB_Supergiovane` (calculateXYFromRGB) — 83 new tests, total suite 117 passing.<br/>
|
|
15
|
+
|
|
9
16
|
**Version 4.3.17** - May 2026<br/>
|
|
10
17
|
|
|
11
18
|
- Examples: expanded the `examples/` folder to provide dedicated Node-RED flow files for all remaining KNX Ultimate nodes, including `KNX Staircase`, `KNX Garage`, `KNX Load Control`, `KNX IoT Bridge`, `KNX Auto Responder`, `KNX Alerter`, `KNX Global Context`, `KNX HA Translator`, and the full Philips Hue node set.<br/>
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"engines": {
|
|
4
4
|
"node": ">=20.18.1"
|
|
5
5
|
},
|
|
6
|
-
"version": "4.3.
|
|
6
|
+
"version": "4.3.18",
|
|
7
7
|
"description": "Control your KNX and KNX Secure intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control, ETS group address importer, KNX AI for diagnosticsand KNX routing between interfaces. Easy to use and highly configurable.",
|
|
8
8
|
"files": [
|
|
9
9
|
"nodes/",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dns-sync": "0.2.1",
|
|
20
20
|
"google-translate-tts": "^0.3.0",
|
|
21
21
|
"js-yaml": "4.1.1",
|
|
22
|
-
"knxultimate": "5.5.
|
|
22
|
+
"knxultimate": "5.5.8",
|
|
23
23
|
"lodash": "4.18.1",
|
|
24
24
|
"node-color-log": "12.0.1",
|
|
25
25
|
"ping": "0.4.4",
|
|
@@ -113,7 +113,6 @@
|
|
|
113
113
|
"jspdf": "^2.5.2",
|
|
114
114
|
"marked": "^14.1.0",
|
|
115
115
|
"mocha": "^10.4.0",
|
|
116
|
-
"translate-google": "^1.5.0",
|
|
117
116
|
"vite": "^7.1.3",
|
|
118
117
|
"vue": "^3.5.21"
|
|
119
118
|
}
|