iobroker.gotify-ws 0.2.0 → 0.2.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
@@ -67,6 +67,13 @@ You can then configure a notification service of your choice for forwarding.
67
67
  ## Changelog
68
68
 
69
69
  <!-- ### **WORK IN PROGRESS** -->
70
+ ### 0.2.2 (2025-07-20)
71
+ * (simatec) dependencies updated
72
+
73
+ ### 0.2.1 (2025-06-27)
74
+ * (simatec) dependencies updated
75
+ * (simatec) Ready for NodeJS 24.x
76
+
70
77
  ### 0.2.0 (2025-04-22)
71
78
  * (simatec) Adapter rewritten in Typescript
72
79
 
package/io-package.json CHANGED
@@ -1,8 +1,34 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "gotify-ws",
4
- "version": "0.2.0",
4
+ "version": "0.2.2",
5
5
  "news": {
6
+ "0.2.2": {
7
+ "en": "dependencies updated",
8
+ "de": "aktualisierte abhängigkeiten",
9
+ "ru": "обновленные зависимости",
10
+ "pt": "dependências atualizadas",
11
+ "nl": "afhankelijkheden bijgewerkt",
12
+ "fr": "dépendances mises à jour",
13
+ "it": "dipendenze aggiornate",
14
+ "es": "dependencias actualizadas",
15
+ "pl": "zaktualizowane zależności",
16
+ "uk": "оновлені залежності",
17
+ "zh-cn": "更新依赖关系"
18
+ },
19
+ "0.2.1": {
20
+ "en": "dependencies updated\nReady for NodeJS 24.x",
21
+ "de": "aktualisierte abhängigkeiten\nBereit für NodeJS 24.x",
22
+ "ru": "обновленные зависимости\nГотовность к NodeJS 24.x",
23
+ "pt": "dependências atualizadas\nPronto para NodeJS 24.x",
24
+ "nl": "afhankelijkheden bijgewerkt\nKlaar voor NodeJS 24.x",
25
+ "fr": "dépendances mises à jour\nPrêt pour NodeJS 24.x",
26
+ "it": "dipendenze aggiornate\nPronti per NodeJS 24.x",
27
+ "es": "dependencias actualizadas\nListo para NodeJS 24.x",
28
+ "pl": "zaktualizowane zależności\nGotowy do NodeJS 24.x",
29
+ "uk": "оновлені залежності\nГотовий для NodeJS 24.x",
30
+ "zh-cn": "更新依赖关系\n准备进入节点JS 24.x"
31
+ },
6
32
  "0.2.0": {
7
33
  "en": "Adapter rewritten in Typescript",
8
34
  "de": "Adapter neu geschrieben in Typescript",
@@ -67,32 +93,6 @@
67
93
  "pl": "Aktualizacja zależności\nResponsive Design fix\nDodano działanie\neslint- config dodany",
68
94
  "uk": "Залежність оновлено\nКріплення адаптивного дизайну\nДодана емісія\neslint-config додано",
69
95
  "zh-cn": "更新的依赖关系\n反应设计修正\n添加的问题行动\n添加埃斯林特配置"
70
- },
71
- "0.1.9": {
72
- "en": "Fix for admin 7.1.5",
73
- "de": "Fix für admin 7.1.5",
74
- "ru": "Admin 7.1.5",
75
- "pt": "Fix para admin 7.1.5",
76
- "nl": "Fix voor admin 7.1.5",
77
- "fr": "Correction pour admin 7.1.5",
78
- "it": "Fissare per admin 7.1.5",
79
- "es": "Corrección para administración 7.1.5",
80
- "pl": "Popraw dla admin 7.1.5",
81
- "uk": "Виправлення для адміністратора 7.1.5",
82
- "zh-cn": "7.1.5 管理员的固定"
83
- },
84
- "0.1.8": {
85
- "en": "Responsive Design fix\nCleaned code",
86
- "de": "Responsive Design fix\nGesäuberter Code",
87
- "ru": "Реакция Responsive Design\nЧистый код",
88
- "pt": "Correção de design responsivo\nCódigo limpo",
89
- "nl": "Responsive Design fix\nGeschoonde code",
90
- "fr": "Correction de conception sensible\nCode nettoyé",
91
- "it": "Responsive Design fix\nCodice pulito",
92
- "es": "Responsive Design fix\nCódigo limpio",
93
- "pl": "Responsive Design fix\nKod oczyszczony",
94
- "uk": "Кріплення адаптивного дизайну\nЧистий код",
95
- "zh-cn": "反应设计修正\n已清理代码"
96
96
  }
97
97
  },
98
98
  "titleLang": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.gotify-ws",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "Gotify web socket for connection to various notification systems",
5
5
  "author": {
6
6
  "name": "simatec",
@@ -25,12 +25,12 @@
25
25
  "url": "https://github.com/simatec/ioBroker.gotify-ws.git"
26
26
  },
27
27
  "engines": {
28
- "node": ">= 18"
28
+ "node": ">= 20"
29
29
  },
30
30
  "dependencies": {
31
31
  "@iobroker/adapter-core": "^3.2.3",
32
- "axios": "^1.8.4",
33
- "ws": "^8.18.1"
32
+ "axios": "^1.10.0",
33
+ "ws": "^8.18.3"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@alcalzone/release-script": "^3.8.0",
@@ -38,15 +38,15 @@
38
38
  "@alcalzone/release-script-plugin-license": "^3.7.0",
39
39
  "@alcalzone/release-script-plugin-manual-review": "^3.7.0",
40
40
  "@iobroker/adapter-dev": "^1.4.0",
41
- "@iobroker/eslint-config": "^2.0.1",
41
+ "@iobroker/eslint-config": "^2.0.2",
42
42
  "@iobroker/testing": "^5.0.4",
43
- "@tsconfig/node20": "^20.1.5",
43
+ "@tsconfig/node20": "^20.1.6",
44
44
  "@types/ws": "^8.18.1",
45
- "chai": "^5.2.0",
45
+ "chai": "^5.2.1",
46
46
  "chai-as-promised": "^8.0.1",
47
- "mocha": "^11.1.0",
47
+ "mocha": "^11.7.1",
48
48
  "rimraf": "^6.0.1",
49
- "sinon": "^20.0.0",
49
+ "sinon": "^21.0.0",
50
50
  "sinon-chai": "^4.0.0",
51
51
  "ts-node": "^10.9.2",
52
52
  "typescript": "^5.8.3"