iobroker.lorawan 1.1.0 → 1.1.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/README.md CHANGED
@@ -23,6 +23,9 @@ For now there is documentation in English here: https://wiki.hafenmeister.de
23
23
  Placeholder for the next version (at the beginning of the line):
24
24
  ### **WORK IN PROGRESS**
25
25
  -->
26
+ ### 1.1.1 (2024-05-15)
27
+ * (BenAhrdt) mqtt dependencies updated for better keepalive
28
+
26
29
  ### 1.1.0 (2024-05-12)
27
30
  * (BenAhrdt) implement keepalive in config
28
31
 
@@ -86,21 +86,6 @@
86
86
  ],
87
87
  "default": "ttn",
88
88
  "sm":2
89
- },
90
- "keepalive":{
91
- "type": "select",
92
- "label": "keepalive",
93
- "tooltip": "keepaliveTooltip",
94
- "options": [
95
- {"label":"unused","value":0},
96
- {"label":"60s","value":60},
97
- {"label":"120s","value":120},
98
- {"label":"180s","value":180},
99
- {"label":"240s","value":240},
100
- {"label":"300s","value":300}
101
- ],
102
- "default": 0,
103
- "sm":2
104
89
  }
105
90
  }
106
91
  },
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.1.0",
4
+ "version": "1.1.1",
5
5
  "news": {
6
+ "1.1.1": {
7
+ "en": "mqtt dependencies updated for better keepalive",
8
+ "de": "mqtt abhängigkeiten aktualisiert für besser halten",
9
+ "ru": "зависимости mqtt обновляется для лучшего сохранения",
10
+ "pt": "dependências mqtt atualizadas para melhor manter",
11
+ "nl": "mqtt afhankelijkheden bijgewerkt voor een betere houdbaarheid",
12
+ "fr": "mqtt dépendances mises à jour pour mieux garder",
13
+ "it": "dipendenze di mqtt aggiornate per mantenersi al meglio",
14
+ "es": "mqtt dependencias actualizadas para mejor mantenimiento",
15
+ "pl": "mqtt zależne zaktualizowane dla lepszego utrzymania",
16
+ "uk": "mqtt залежності оновлені для кращого безпечного",
17
+ "zh-cn": "mqtt 依赖性更新以更好地保存"
18
+ },
6
19
  "1.1.0": {
7
20
  "en": "implement keepalive in config",
8
21
  "de": "betreuen in config",
@@ -80,19 +93,6 @@
80
93
  "pl": "zmiana lokalizacji urządzenia offline",
81
94
  "uk": "змінено розташування пристрою",
82
95
  "zh-cn": "设备离线位置已更改"
83
- },
84
- "1.0.4": {
85
- "en": "changed icon and offline time",
86
- "de": "geändertes icon und offline-zeit",
87
- "ru": "измененная иконка и автономное время",
88
- "pt": "ícone alterado e tempo offline",
89
- "nl": "veranderd pictogram en offline tijd",
90
- "fr": "changement d'icône et de l'heure hors ligne",
91
- "it": "cambiato icona e tempo offline",
92
- "es": "cambiado icono y tiempo sin conexión",
93
- "pl": "zmieniony czas ikon i offline",
94
- "uk": "змінена ікона і в автономному режимі",
95
- "zh-cn": "更改图标和离线时间"
96
96
  }
97
97
  },
98
98
  "titleLang": {
@@ -8,8 +8,7 @@ class mqttClientClass {
8
8
  port: settings.port,
9
9
  username: settings.username,
10
10
  password: settings.password,
11
- clientId: `iobroker_${this.adapter.namespace}`,
12
- keepalive: settings.keepalive
11
+ clientId: `iobroker_${this.adapter.namespace}`
13
12
  });
14
13
 
15
14
  // Variables for correct connection (disconnection) notification / logging
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",
@@ -26,7 +26,7 @@
26
26
  "dependencies": {
27
27
  "@iobroker/adapter-core": "^3.1.4",
28
28
  "easy-crc": "^1.1.0",
29
- "mqtt": "^5.5.5",
29
+ "mqtt": "^5.6.0",
30
30
  "node-schedule": "^2.1.1"
31
31
  },
32
32
  "devDependencies": {