iobroker.eusec 2.0.1-alpha.0 → 2.0.2

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
@@ -43,7 +43,7 @@ This adapter would not have been possible without the great work of Patrick Broe
43
43
  Placeholder for the next version (at the beginning of the line):
44
44
  ### **WORK IN PROGRESS**
45
45
  -->
46
- ### 2.0.1-alpha.0 (2025-10-26)
46
+ ### 2.0.2 (2025-10-26)
47
47
  - (mcm1957) Remove fix for CVE-2023-46809 for node.js 22 and newer
48
48
 
49
49
  ### 2.0.0 (2025-10-26)
package/cleanupCveFix.js CHANGED
@@ -57,7 +57,7 @@ function getEusecInstances() {
57
57
  log('Retrieving eusec adapter instances...');
58
58
 
59
59
  try {
60
- const output = executeCommand('node ..\\iobroker.js-controller\\iobroker.js object list system.adapter.eusec.*');
60
+ const output = executeCommand('node ../iobroker.js-controller/iobroker.js object list system.adapter.eusec.*');
61
61
  const instances = [];
62
62
 
63
63
  // Parse the output to extract instance numbers
@@ -87,7 +87,7 @@ function getEusecInstances() {
87
87
  */
88
88
  function fixInstance(instanceNumber) {
89
89
  const objectId = `system.adapter.eusec.${instanceNumber}`;
90
- const command = `node ..\\iobroker.js-controller\\iobroker.js object set ${objectId} common.nodeProcessParams=[]`;
90
+ const command = `node ../iobroker.js-controller/iobroker.js object set ${objectId} common.nodeProcessParams=[]`;
91
91
 
92
92
  log(`Fixing instance ${instanceNumber}...`);
93
93
  log(`Executing: ${command}`);
package/io-package.json CHANGED
@@ -1,9 +1,22 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "eusec",
4
- "version": "2.0.1-alpha.0",
4
+ "version": "2.0.2",
5
5
  "news": {
6
- "2.0.1-alpha.0": {
6
+ "2.0.2": {
7
+ "en": "Remove fix for CVE-2023-46809 for node.js 22 and newer",
8
+ "de": "Entfernen Sie Fix für CVE-2023-46809 für node.js 22 und neuer",
9
+ "ru": "Удалить исправление для CVE-2023-46809 для node.js 22 и новее",
10
+ "pt": "Remover correção para CVE-2023-46809 para nod.js 22 e mais recente",
11
+ "nl": "Verwijder fix voor CVE-202-3-46809 voor node.js 22 en nieuwer",
12
+ "fr": "Supprimer fix pour CVE-2023-46809 pour node.js 22 et plus récent",
13
+ "it": "Rimuovere la correzione per CVE-2023-46809 per node.js 22 e più recente",
14
+ "es": "Retire la fijación para CVE-2023-46809 para node.js 22 y nuevo",
15
+ "pl": "Usuń fix dla CVE- 2023- 46809 dla node.js 22 i nowszych",
16
+ "uk": "Видалити виправити для CVE-2023-46809 для node.js 22 і newer",
17
+ "zh-cn": "删除CVE-2023-46809节点和较新节点的固定"
18
+ },
19
+ "2.0.1": {
7
20
  "en": "Remove fix for CVE-2023-46809 for node.js 22 and newer",
8
21
  "de": "Entfernen Sie Fix für CVE-2023-46809 für node.js 22 und neuer",
9
22
  "ru": "Удалить исправление для CVE-2023-46809 для node.js 22 и новее",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.eusec",
3
- "version": "2.0.1-alpha.0",
3
+ "version": "2.0.2",
4
4
  "description": "ioBroker adapter that integrates Eufy-Security cameras with stations",
5
5
  "author": {
6
6
  "name": "bropat",