iobroker.al-ko 0.3.6 → 0.3.7

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
@@ -53,7 +53,12 @@ Do **not** contact AL-KO customer service regarding this project.
53
53
 
54
54
  ## Changelog
55
55
 
56
- ### 0.3.6
56
+ ### 0.3.7 (2026-05-07)
57
+ - Updated dependencies (including axios security fixes)
58
+ - Require Node.js >= 22
59
+ - Stability improvements
60
+
61
+ ### 0.3.6 (2026-04-26)
57
62
  - Fixed invalid state roles (`value.number` removed, correct usage of `value` and `level`)
58
63
  - Fixed whitelist handling for writable states
59
64
  - Improved object structure according to review feedback
package/docs/de/README.md CHANGED
@@ -48,6 +48,11 @@ AL-KO bietet **keinen offiziellen Support** hierfür.
48
48
 
49
49
  ## Änderungen (Auszug)
50
50
 
51
+ ### 0.3.7 (2026-05-07)
52
+ - Abhängigkeiten aktualisiert (inkl. Axios Sicherheitsfixes)
53
+ - Node.js >= 22 erforderlich
54
+ - Stabilitätsverbesserungen
55
+
51
56
  ### 0.3.6 (2026-04-26)
52
57
 
53
58
  - Ungültige State-Rollen korrigiert (`value.number` entfernt, korrekte Verwendung von `value` und `level`)
package/docs/en/README.md CHANGED
@@ -48,6 +48,11 @@ It is a **community-developed project**.
48
48
 
49
49
  ## Changes (Summary)
50
50
 
51
+ ### 0.3.7 (2026-05-07)
52
+ - Updated dependencies (including axios security fixes)
53
+ - Require Node.js >= 22
54
+ - Stability improvements
55
+
51
56
  ### 0.3.6 (2026-04-26)
52
57
  - Fixed invalid state roles (`value.number` removed, correct usage of `value` and `level`)
53
58
  - Fixed whitelist handling for writable states
package/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "al-ko",
4
- "version": "0.3.6",
4
+ "version": "0.3.7",
5
5
  "tier": 3,
6
6
  "titleLang": {
7
7
  "en": "AL-KO",
@@ -42,6 +42,19 @@
42
42
  "de": "docs/de/README.md"
43
43
  },
44
44
  "news": {
45
+ "0.3.7": {
46
+ "en": "Update dependencies (axios security fixes), require Node.js >= 22, improve stability",
47
+ "de": "Abhängigkeiten aktualisiert (Axios Sicherheitsfixes), Node.js >= 22 erforderlich, Stabilität verbessert",
48
+ "ru": "Обновлены зависимости (исправления безопасности axios), требуется Node.js >= 22, повышена стабильность",
49
+ "pt": "Atualizadas as dependências (correções de segurança do axios), requer Node.js >= 22, melhorias de estabilidade",
50
+ "nl": "Afhankelijkheden bijgewerkt (axios beveiligingsfixes), Node.js >= 22 vereist, stabiliteit verbeterd",
51
+ "fr": "Mise à jour des dépendances (correctifs de sécurité axios), Node.js >= 22 requis, amélioration de la stabilité",
52
+ "it": "Aggiornate le dipendenze (fix di sicurezza axios), richiesto Node.js >= 22, migliorata la stabilità",
53
+ "es": "Dependencias actualizadas (correcciones de seguridad de axios), se requiere Node.js >= 22, mejoras de estabilidad",
54
+ "pl": "Zaktualizowano zależności (poprawki bezpieczeństwa axios), wymagany Node.js >= 22, poprawiona stabilność",
55
+ "uk": "Оновлено залежності (виправлення безпеки axios), потрібен Node.js >= 22, покращено стабільність",
56
+ "zh-cn": "更新依赖(axios 安全修复),需要 Node.js >= 22,提高稳定性"
57
+ },
45
58
  "0.3.6": {
46
59
  "en": "Fix state roles (remove invalid value.number, align value/level), correct whitelist handling for writable states, and finalize object structure according to review feedback",
47
60
  "de": "State-Rollen korrigiert (value.number entfernt, value/level angepasst), Whitelist für schreibbare States korrigiert und Objektstruktur gemäß Review-Anforderungen finalisiert",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.al-ko",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "Adapter for communication with AL-KO smart garden devices (Robolinho, mowing windows, operationState, etc.)",
5
5
  "author": {
6
6
  "name": "Hubert Zechner",
@@ -25,7 +25,7 @@
25
25
  "url": "https://github.com/zechnerhubert/ioBroker.al-ko/issues"
26
26
  },
27
27
  "engines": {
28
- "node": ">= 20"
28
+ "node": ">= 22"
29
29
  },
30
30
  "main": "main.js",
31
31
  "files": [
@@ -52,8 +52,8 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "@iobroker/adapter-core": "^3.3.2",
55
- "axios": "^1.12.2",
56
- "ws": "^8.19.0"
55
+ "axios": "^1.15.0",
56
+ "ws": "^8.20.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@alcalzone/release-script": "^5.1.1",
@@ -62,11 +62,11 @@
62
62
  "@alcalzone/release-script-plugin-manual-review": "^5.1.1",
63
63
  "@iobroker/adapter-dev": "^1.5.0",
64
64
  "@iobroker/eslint-config": "^2.2.0",
65
- "@iobroker/testing": "^5.2.2",
66
- "@tsconfig/node20": "^20.1.8",
65
+ "@iobroker/testing": "^5.1.1",
66
+ "@tsconfig/node22": "^22.0.0",
67
67
  "@types/node": "^25.6.0",
68
68
  "@typescript-eslint/eslint-plugin": "^8.58.2",
69
- "@typescript-eslint/parser": "^8.58.2"
69
+ "@typescript-eslint/parser": "^8.59.2"
70
70
  },
71
71
  "readmeFilename": "README.md"
72
72
  }