iobroker.openknx 0.2.5 → 0.2.6

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/README.md CHANGED
@@ -310,6 +310,9 @@ Data is sent to Iobroker Sentry server hosted in Germany. If you have allowed io
310
310
  - only IPv4 supported
311
311
 
312
312
  ## Changelog
313
+ ## 0.2.6 (2022-07-09)
314
+ * bugfix: fix filtering of addresses 1.1.1
315
+
313
316
  ## 0.2.5 (2022-06-22)
314
317
  * feature: option remove existing KNX objects that are not in import file
315
318
 
package/io-package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "openknx",
4
- "version": "0.2.5",
4
+ "version": "0.2.6",
5
5
  "news": {
6
- "0.2.5": {
6
+ "0.2.6": {
7
7
  "en": "see https://www.npmjs.com/package/iobroker.openknx",
8
8
  "de": "https://www.npmjs.com/package/iobroker.openknx"
9
9
  }
@@ -73,7 +73,6 @@
73
73
  "native": {
74
74
  "gwip": "",
75
75
  "gwipport": "3671",
76
- "eibadr": "1.1.1",
77
76
  "localInterface": "",
78
77
  "minimumDelay": 50,
79
78
  "aliassRegexp": "[Ss]tat(e|us)(\\.|$)|[Rr]m(\\.|$)|[Rr]ückmeldung(\\.|$)|\\s[Vv]alue(\\.|$)",
package/main.js CHANGED
@@ -521,12 +521,6 @@ class openknx extends utils.Adapter {
521
521
  let convertedVal = [];
522
522
  let ret = "unknown";
523
523
 
524
- if (src == this.config.eibadr) {
525
- //L_data.ind of own L_data.req
526
- this.log.debug(`receive self ga: ${src}`);
527
- return "receive self ga";
528
- }
529
-
530
524
  /* some checks */
531
525
  if (dest == "0/0/0" || tools.isDeviceAddress(dest)) {
532
526
  //seems that knx lib does not guarantee dest group adresses
@@ -642,7 +636,7 @@ class openknx extends utils.Adapter {
642
636
  }
643
637
 
644
638
  main(startKnxConnection) {
645
- this.log.info("Connecting to knx gateway: " + this.config.gwip + ":" + this.config.gwipport + " with phy. Adr: " + this.config.eibadr + " minimum send delay: " + this.config.minimumDelay + " ms debug level: " + this.log.level);
639
+ this.log.info("Connecting to knx gateway: " + this.config.gwip + ":" + this.config.gwipport + " minimum send delay: " + this.config.minimumDelay + "ms debug level: " + this.log.level);
646
640
  this.log.info(utils.controllerDir);
647
641
  this.setState("info.connection", false, true);
648
642
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.openknx",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "ioBroker knx Adapter",
5
5
  "author": "boellner",
6
6
  "homepage": "https://github.com/iobroker-community-adapters/ioBroker.openknx.git",
@@ -38,29 +38,29 @@
38
38
  "devDependencies": {
39
39
  "@alcalzone/release-script": "^3.5.6",
40
40
  "@iobroker/adapter-dev": "^1.0.0",
41
- "@iobroker/adapter-react": "2.1.0",
41
+ "@iobroker/adapter-react": "2.2.4",
42
42
  "@iobroker/testing": "^2.6.0",
43
43
  "@material-ui/core": "^4.12.4",
44
44
  "@types/chai": "^4.3.1",
45
45
  "@types/chai-as-promised": "^7.1.5",
46
46
  "@types/mocha": "^9.1.1",
47
- "@types/node": "^18.0.0",
47
+ "@types/node": "^18.0.3",
48
48
  "@types/proxyquire": "^1.3.28",
49
49
  "@types/react-dom": "^18.0.3",
50
50
  "@types/react": "^17.0.45",
51
- "@types/sinon": "^10.0.11",
51
+ "@types/sinon": "^10.0.12",
52
52
  "@types/sinon-chai": "^3.2.8",
53
53
  "chai": "^4.3.6",
54
54
  "chai-as-promised": "^7.1.1",
55
- "eslint": "^8.17.0",
56
- "eslint-plugin-react": "^7.30.0",
55
+ "eslint": "^8.19.0",
56
+ "eslint-plugin-react": "^7.30.1",
57
57
  "mocha": "^10.0.0",
58
58
  "proxyquire": "^2.1.3",
59
59
  "react-dom": "^17.0.2",
60
60
  "react": "^17.0.2",
61
61
  "sinon": "^14.0.0",
62
62
  "sinon-chai": "^3.7.0",
63
- "typescript": "~4.7.3",
63
+ "typescript": "~4.7.4",
64
64
  "iobroker.js-controller": "4.0.23"
65
65
  },
66
66
  "main": "main.js",