iobroker.lorawan 1.15.7 → 1.15.8

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.15.8 (2025-09-16)
27
+ * (BenAhrdt) remove await from some callings
28
+
26
29
  ### 1.15.7 (2025-09-15)
27
30
  * (BenAhrdt) solve publishing intern
28
31
 
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "lorawan",
4
- "version": "1.15.7",
4
+ "version": "1.15.8",
5
5
  "news": {
6
+ "1.15.8": {
7
+ "en": "remove await from some callings",
8
+ "de": "Entferne das „await“ aus einigen Aufrufen.",
9
+ "ru": "Удалите ожидание (await) из некоторых вызовов",
10
+ "pt": "remover await de algumas chamadas",
11
+ "nl": "Verwijder 'await' uit enkele aanroepen.",
12
+ "fr": "supprimer l'attente de certains appels",
13
+ "it": "Rimuovere l'attesa da alcune chiamate.",
14
+ "es": "eliminar await de algunas llamadas",
15
+ "pl": "Usuń oczekiwanie (await) z niektórych wywołań.",
16
+ "uk": "видаліть await із деяких викликів",
17
+ "zh-cn": "从部分调用中删除 await"
18
+ },
6
19
  "1.15.7": {
7
20
  "en": "solve publishing intern",
8
21
  "de": "Löse das Problem mit der Veröffentlichung des Praktikanten.",
@@ -80,19 +93,6 @@
80
93
  "pl": "zmień sformułowanie powiadomień\nimport diagnostyka i konfiguracja dla entity_type\nzmień extSensorTemperature na ExtSensorTemperature",
81
94
  "uk": "змінити формулювання сповіщень\nімпорт діагнострики та конфігурації для типу entity\nЗміна extSensorTemperature на ExtSensorTemperature",
82
95
  "zh-cn": "更改通知内容\n为entity_type添加诊断和配置\n将\"extSensorTemperature\"更改为\"ExtSensorTemperature\""
83
- },
84
- "1.15.1": {
85
- "en": "Send trigger with retain = false",
86
- "de": "Trigger mit retain = false senden",
87
- "ru": "Отправка триггера с retain = false",
88
- "pt": "Enviar trigger com retain = false",
89
- "nl": "Verzend trigger met retain = false",
90
- "fr": "Envoyer le trigger avec retain = false",
91
- "it": "Invia trigger con retain = false",
92
- "es": "Enviar trigger con retain = false",
93
- "pl": "Wyślij trigger z retain = false",
94
- "uk": "Надіслати тригер з retain = false",
95
- "zh-cn": "发送带有 retain = false 的触发器"
96
96
  }
97
97
  },
98
98
  "titleLang": {
package/main.js CHANGED
@@ -458,7 +458,7 @@ class Lorawan extends utils.Adapter {
458
458
  try {
459
459
  if (JSON.parse(state.val)) {
460
460
  await this.sendDownlink(downlinkTopic, state.val, changeInfo);
461
- await this.bridge?.publishId(await this.removeNamespace(id), state.val, {});
461
+ await this.bridge?.publishId(this.removeNamespace(id), state.val, {});
462
462
  await this.setState(id, state.val, true);
463
463
  }
464
464
  } catch (error) {
@@ -509,7 +509,7 @@ class Lorawan extends utils.Adapter {
509
509
  }
510
510
  }
511
511
  }
512
- await this.bridge?.publishId(await this.removeNamespace(id), state.val, {});
512
+ await this.bridge?.publishId(this.removeNamespace(id), state.val, {});
513
513
  await this.setState(id, state.val, true);
514
514
  } else {
515
515
  const downlinkTopic = this.downlinkConfighandler?.getDownlinkTopic(changeInfo, suffix);
@@ -534,7 +534,7 @@ class Lorawan extends utils.Adapter {
534
534
  await this.sendDownlink(downlinkTopic, JSON.stringify(downlink), changeInfo);
535
535
  }
536
536
  }
537
- await this.bridge?.publishId(await this.removeNamespace(id), state.val, {});
537
+ await this.bridge?.publishId(this.removeNamespace(id), state.val, {});
538
538
  await this.setState(id, state.val, true);
539
539
  }
540
540
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.lorawan",
3
- "version": "1.15.7",
3
+ "version": "1.15.8",
4
4
  "description": "converts the desired lora gateway data to a ioBroker structure",
5
5
  "author": {
6
6
  "name": "BenAhrdt",