node-red-contrib-knx-ultimate 3.0.2 → 3.0.3

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 CHANGED
@@ -6,6 +6,10 @@
6
6
 
7
7
  # CHANGELOG
8
8
 
9
+ **Version 3.0.3** - Juli 2024<br/>
10
+ - Warning: Node-Red version **equals or major than 3.1.1** is needed to run this node.<br/>
11
+ - FIX: fix crash when no more KNX tunnels avaiable.<br/>
12
+
9
13
  **Version 3.0.2** - Juli 2024<br/>
10
14
  - Warning: Node-Red version **equals or major than 3.1.1** is needed to run this node.<br/>
11
15
  - HUE BRIDGE: added the message to DEPLOY the flow prior to proceed, when you're creating a new HUE CONFIG node.<br/>
@@ -353,6 +353,7 @@ module.exports = (RED) => {
353
353
  });
354
354
  }
355
355
  } catch (error) {
356
+ console.log("KNXHue-config: getResources error ", error.trace);
356
357
  retArray.push({
357
358
  name: `${_rtype}: ERROR ${error.message}`,
358
359
  id: resource.id,
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "engines": {
4
4
  "node": ">=16.0.0"
5
5
  },
6
- "version": "3.0.2",
6
+ "version": "3.0.3",
7
7
  "description": "Control your KNX intallation via Node-Red! A bunch of KNX nodes, with integrated Philips HUE control and ETS group address importer. Easy to use and highly configurable.",
8
8
  "dependencies": {
9
9
  "binary-parser": "2.2.1",
@@ -11,7 +11,7 @@
11
11
  "dns-sync": "0.2.1",
12
12
  "eventsource": "2.0.2",
13
13
  "js-yaml": "4.1.0",
14
- "knxultimate": ">=2.3.3",
14
+ "knxultimate": ">=2.3.5",
15
15
  "lodash": "4.17.21",
16
16
  "log-driver": "1.2.7",
17
17
  "mkdirp": "3.0.1",