iobroker.parcelapp 0.3.0 → 0.3.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 +10 -24
- package/io-package.json +82 -69
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -119,36 +119,22 @@ The delivery is added to your parcel.app account and immediately appears in ioBr
|
|
|
119
119
|
---
|
|
120
120
|
|
|
121
121
|
## Changelog
|
|
122
|
-
### 0.3.
|
|
122
|
+
### 0.3.2 (2026-05-01)
|
|
123
|
+
- Documentation: rewrote release notes for v0.2.14–v0.3.1 in user-friendly style across all languages.
|
|
123
124
|
|
|
124
|
-
|
|
125
|
-
-
|
|
126
|
-
- Master-sync against `.consistency-master/`: `.github/dependabot.yml` ignore-block for `actions/checkout` + `actions/setup-node` major bumps, and the `repochecker-version-gate` workflow job moved from the legacy M1000 check to the sources-dist-stable check (now identical to hassemu).
|
|
125
|
+
### 0.3.1 (2026-05-01)
|
|
126
|
+
- Documentation cleanup. No code changes.
|
|
127
127
|
|
|
128
|
-
### 0.
|
|
128
|
+
### 0.3.0 (2026-04-30)
|
|
129
|
+
- Internal cleanup. No user-facing changes.
|
|
129
130
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
- Dependabot now ignores major bumps for `@types/node`, `typescript`, `eslint` so the runtime/toolchain pinning cannot drift via auto-merge
|
|
133
|
-
- `nyc` config + `coverage` script added (matches upstream template)
|
|
134
|
-
- `prettier.config.mjs` made explicit with project-style overrides (Spaces 2-wide, double quotes) instead of relying on missing config
|
|
135
|
-
- Orphan `.github/auto-merge.yml` removed (the active workflow is `automerge-dependabot.yml` using `gh pr merge`, the old yml was never read)
|
|
131
|
+
### 0.2.18 (2026-04-28)
|
|
132
|
+
- Internal cleanup. No user-facing changes.
|
|
136
133
|
|
|
137
134
|
### 0.2.17 (2026-04-28)
|
|
135
|
+
- Internal cleanup. No user-facing changes.
|
|
138
136
|
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
### 0.2.16 (2026-04-26)
|
|
142
|
-
|
|
143
|
-
- Min js-controller correction: was incorrectly bumped to `>=7.0.23` in 0.2.15 (Wert kam aus Recherche-Synthese, nicht aus Repochecker-Source). Repochecker-recommended value is `>=6.0.11` — restored.
|
|
144
|
-
|
|
145
|
-
### 0.2.15 (2026-04-26)
|
|
146
|
-
|
|
147
|
-
- Process-level `unhandledRejection` / `uncaughtException` handlers added as last-line-of-defence against fire-and-forget rejections.
|
|
148
|
-
- Stop shipping the `manual-review` release-script plugin — adapter-only consequence.
|
|
149
|
-
- Bump min js-controller to `>=7.0.23` (matches latest-repo recommendation).
|
|
150
|
-
- Audit-driven boilerplate sync with the other krobi adapters (`.vscode` json5 schemas, `tsconfig.test` looser test rules).
|
|
151
|
-
- README footer-link to `CHANGELOG_OLD.md` restored, `CHANGELOG_OLD.md` cleaned up to consistent compact style.
|
|
137
|
+
Older entries are in [CHANGELOG_OLD.md](CHANGELOG_OLD.md).
|
|
152
138
|
|
|
153
139
|
## Support
|
|
154
140
|
|
package/io-package.json
CHANGED
|
@@ -1,85 +1,98 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "parcelapp",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.2",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.3.2": {
|
|
7
|
+
"en": "Documentation: rewrote release notes in user-friendly style across all languages.",
|
|
8
|
+
"de": "Dokumentation: Release-Notes in alle Sprachen User-orientiert neu geschrieben.",
|
|
9
|
+
"ru": "Документация: примечания к релизу переписаны в дружественном к пользователю стиле на всех языках.",
|
|
10
|
+
"pt": "Documentação: notas de release reescritas em estilo amigável ao usuário em todos os idiomas.",
|
|
11
|
+
"nl": "Documentatie: release-notes herschreven in gebruikersvriendelijke stijl in alle talen.",
|
|
12
|
+
"fr": "Documentation : notes de version réécrites dans un style adapté à l'utilisateur dans toutes les langues.",
|
|
13
|
+
"it": "Documentazione: note di release riscritte in stile user-friendly in tutte le lingue.",
|
|
14
|
+
"es": "Documentación: notas de versión reescritas en estilo amigable para el usuario en todos los idiomas.",
|
|
15
|
+
"pl": "Dokumentacja: notatki wydania przepisane w przyjaznym dla użytkownika stylu we wszystkich językach.",
|
|
16
|
+
"uk": "Документація: нотатки до релізу переписано у дружньому до користувача стилі усіма мовами.",
|
|
17
|
+
"zh-cn": "文档:所有语言的发布说明已重写为用户友好的风格。"
|
|
18
|
+
},
|
|
19
|
+
"0.3.1": {
|
|
20
|
+
"en": "Documentation cleanup. No code changes.",
|
|
21
|
+
"de": "Dokumentations-Bereinigung. Keine Code-Änderungen.",
|
|
22
|
+
"ru": "Очистка документации. Без изменений в коде.",
|
|
23
|
+
"pt": "Limpeza da documentação. Sem alterações de código.",
|
|
24
|
+
"nl": "Documentatie-opschoning. Geen code-wijzigingen.",
|
|
25
|
+
"fr": "Nettoyage de la documentation. Aucune modification de code.",
|
|
26
|
+
"it": "Pulizia della documentazione. Nessuna modifica al codice.",
|
|
27
|
+
"es": "Limpieza de documentación. Sin cambios de código.",
|
|
28
|
+
"pl": "Czyszczenie dokumentacji. Bez zmian w kodzie.",
|
|
29
|
+
"uk": "Очищення документації. Без змін у коді.",
|
|
30
|
+
"zh-cn": "文档清理。代码无变化。"
|
|
31
|
+
},
|
|
6
32
|
"0.3.0": {
|
|
7
|
-
"en": "
|
|
8
|
-
"de": "
|
|
9
|
-
"ru": "
|
|
10
|
-
"pt": "
|
|
11
|
-
"nl": "
|
|
12
|
-
"fr": "
|
|
13
|
-
"it": "
|
|
14
|
-
"es": "
|
|
15
|
-
"pl": "
|
|
16
|
-
"uk": "
|
|
17
|
-
"zh-cn": "
|
|
33
|
+
"en": "Internal cleanup. No user-facing changes.",
|
|
34
|
+
"de": "Interne Bereinigung. Keine User-sichtbaren Änderungen.",
|
|
35
|
+
"ru": "Внутренняя очистка. Без видимых изменений для пользователя.",
|
|
36
|
+
"pt": "Limpeza interna. Sem alterações visíveis para o usuário.",
|
|
37
|
+
"nl": "Interne opschoning. Geen wijzigingen voor de gebruiker.",
|
|
38
|
+
"fr": "Nettoyage interne. Aucune modification visible pour l'utilisateur.",
|
|
39
|
+
"it": "Pulizia interna. Nessuna modifica visibile all'utente.",
|
|
40
|
+
"es": "Limpieza interna. Sin cambios visibles para el usuario.",
|
|
41
|
+
"pl": "Wewnętrzne porządki. Brak zmian widocznych dla użytkownika.",
|
|
42
|
+
"uk": "Внутрішнє прибирання. Без помітних для користувача змін.",
|
|
43
|
+
"zh-cn": "内部清理。对用户无可见变化。"
|
|
18
44
|
},
|
|
19
45
|
"0.2.18": {
|
|
20
|
-
"en": "
|
|
21
|
-
"de": "
|
|
22
|
-
"ru": "
|
|
23
|
-
"pt": "Limpeza
|
|
24
|
-
"nl": "
|
|
25
|
-
"fr": "Nettoyage
|
|
26
|
-
"it": "
|
|
27
|
-
"es": "Limpieza
|
|
28
|
-
"pl": "
|
|
29
|
-
"uk": "
|
|
30
|
-
"zh-cn": "
|
|
46
|
+
"en": "Internal cleanup. No user-facing changes.",
|
|
47
|
+
"de": "Interne Bereinigung. Keine User-sichtbaren Änderungen.",
|
|
48
|
+
"ru": "Внутренняя очистка. Без видимых изменений для пользователя.",
|
|
49
|
+
"pt": "Limpeza interna. Sem alterações visíveis para o usuário.",
|
|
50
|
+
"nl": "Interne opschoning. Geen wijzigingen voor de gebruiker.",
|
|
51
|
+
"fr": "Nettoyage interne. Aucune modification visible pour l'utilisateur.",
|
|
52
|
+
"it": "Pulizia interna. Nessuna modifica visibile all'utente.",
|
|
53
|
+
"es": "Limpieza interna. Sin cambios visibles para el usuario.",
|
|
54
|
+
"pl": "Wewnętrzne porządki. Brak zmian widocznych dla użytkownika.",
|
|
55
|
+
"uk": "Внутрішнє прибирання. Без помітних для користувача змін.",
|
|
56
|
+
"zh-cn": "内部清理。对用户无可见变化。"
|
|
31
57
|
},
|
|
32
58
|
"0.2.17": {
|
|
33
|
-
"en": "
|
|
34
|
-
"de": "
|
|
35
|
-
"ru": "
|
|
36
|
-
"pt": "
|
|
37
|
-
"nl": "
|
|
38
|
-
"fr": "
|
|
39
|
-
"it": "
|
|
40
|
-
"es": "
|
|
41
|
-
"pl": "
|
|
42
|
-
"uk": "
|
|
43
|
-
"zh-cn": "
|
|
59
|
+
"en": "Internal cleanup. No user-facing changes.",
|
|
60
|
+
"de": "Interne Bereinigung. Keine User-sichtbaren Änderungen.",
|
|
61
|
+
"ru": "Внутренняя очистка. Без видимых изменений для пользователя.",
|
|
62
|
+
"pt": "Limpeza interna. Sem alterações visíveis para o usuário.",
|
|
63
|
+
"nl": "Interne opschoning. Geen wijzigingen voor de gebruiker.",
|
|
64
|
+
"fr": "Nettoyage interne. Aucune modification visible pour l'utilisateur.",
|
|
65
|
+
"it": "Pulizia interna. Nessuna modifica visibile all'utente.",
|
|
66
|
+
"es": "Limpieza interna. Sin cambios visibles para el usuario.",
|
|
67
|
+
"pl": "Wewnętrzne porządki. Brak zmian widocznych dla użytkownika.",
|
|
68
|
+
"uk": "Внутрішнє прибирання. Без помітних для користувача змін.",
|
|
69
|
+
"zh-cn": "内部清理。对用户无可见变化。"
|
|
44
70
|
},
|
|
45
71
|
"0.2.16": {
|
|
46
|
-
"en": "Min js-controller
|
|
47
|
-
"de": "Min js-
|
|
48
|
-
"ru": "
|
|
49
|
-
"pt": "
|
|
50
|
-
"nl": "Min js-controller
|
|
51
|
-
"fr": "
|
|
52
|
-
"it": "Min js-controller
|
|
53
|
-
"es": "
|
|
54
|
-
"pl": "Min js-
|
|
55
|
-
"uk": "
|
|
56
|
-
"zh-cn": "
|
|
72
|
+
"en": "Min js-controller restored to >=6.0.11 (was incorrectly bumped to >=7.0.23 in 0.2.15).",
|
|
73
|
+
"de": "Min js-controller zurück auf >=6.0.11 (war in 0.2.15 fälschlich auf >=7.0.23 gesetzt).",
|
|
74
|
+
"ru": "Мин. js-controller восстановлен на >=6.0.11 (в 0.2.15 ошибочно был >=7.0.23).",
|
|
75
|
+
"pt": "Mín. js-controller restaurado para >=6.0.11 (em 0.2.15 estava erroneamente em >=7.0.23).",
|
|
76
|
+
"nl": "Min. js-controller hersteld op >=6.0.11 (was in 0.2.15 ten onrechte >=7.0.23).",
|
|
77
|
+
"fr": "Min js-controller rétabli à >=6.0.11 (était par erreur à >=7.0.23 en 0.2.15).",
|
|
78
|
+
"it": "Min js-controller ripristinato a >=6.0.11 (in 0.2.15 era erroneamente >=7.0.23).",
|
|
79
|
+
"es": "Mín. js-controller restaurado a >=6.0.11 (en 0.2.15 estaba incorrectamente en >=7.0.23).",
|
|
80
|
+
"pl": "Min. js-controller przywrócony do >=6.0.11 (w 0.2.15 błędnie ustawiony na >=7.0.23).",
|
|
81
|
+
"uk": "Мін. js-controller повернено на >=6.0.11 (у 0.2.15 помилково було >=7.0.23).",
|
|
82
|
+
"zh-cn": "最低 js-controller 恢复为 >=6.0.11(0.2.15 中错误地设置为 >=7.0.23)。"
|
|
57
83
|
},
|
|
58
84
|
"0.2.15": {
|
|
59
|
-
"en": "
|
|
60
|
-
"de": "
|
|
61
|
-
"ru": "
|
|
62
|
-
"pt": "
|
|
63
|
-
"nl": "
|
|
64
|
-
"fr": "
|
|
65
|
-
"it": "
|
|
66
|
-
"es": "
|
|
67
|
-
"pl": "
|
|
68
|
-
"uk": "
|
|
69
|
-
"zh-cn": "
|
|
70
|
-
},
|
|
71
|
-
"0.2.14": {
|
|
72
|
-
"en": "Latest-repo review round 2 response. Separate test-build output (build-test/) from production build/. Declare deliveries folder and summary channel as instance objects. Localize status labels and delivery estimates to all 11 ioBroker languages via system.config.language; the per-instance Status Language option is removed. Fix summary.todayCount for non-DE/EN languages.",
|
|
73
|
-
"de": "Latest-Repo Review Round 2 Response. Test-Build-Output (build-test/) von der Production build/ getrennt. deliveries-Folder und summary-Channel als Instance-Objects deklariert. Status-Labels und Lieferzeit-Schätzungen werden in alle 11 ioBroker-Sprachen lokalisiert (über system.config.language); die per-Instanz Status-Language-Option entfällt. summary.todayCount für nicht-DE/EN Sprachen behoben.",
|
|
74
|
-
"ru": "Відповідь на latest-repo review round 2. Test-build output (build-test/) відокремлено від production build/. deliveries-folder та summary-channel задекларовано як instance objects. Status-labels та оцінки доставки локалізовано на всі 11 мов ioBroker через system.config.language; per-instance Status Language опція видалена. Виправлено summary.todayCount для не-DE/EN мов.",
|
|
75
|
-
"pt": "Resposta ao latest-repo review round 2. Saída do test-build (build-test/) separada da produção build/. Pasta deliveries e canal summary declarados como instance objects. Labels de status e estimativas de entrega localizadas em todas as 11 línguas do ioBroker via system.config.language; a opção Status Language por instância foi removida. summary.todayCount corrigido para línguas não-DE/EN.",
|
|
76
|
-
"nl": "Respons op latest-repo review round 2. Test-build output (build-test/) gescheiden van productie build/. deliveries-folder en summary-channel gedeclareerd als instance objects. Status-labels en bezorgschattingen gelokaliseerd in alle 11 ioBroker-talen via system.config.language; per-instance Status Language optie is verwijderd. summary.todayCount opgelost voor niet-DE/EN talen.",
|
|
77
|
-
"fr": "Réponse au latest-repo review round 2. Sortie du test-build (build-test/) séparée de la production build/. Dossier deliveries et canal summary déclarés comme instance objects. Status-labels et estimations de livraison localisés dans toutes les 11 langues ioBroker via system.config.language; option Status Language par instance supprimée. summary.todayCount corrigé pour langues non-DE/EN.",
|
|
78
|
-
"it": "Risposta alla latest-repo review round 2. Output del test-build (build-test/) separato dalla produzione build/. Cartella deliveries e canale summary dichiarati come instance objects. Status-label e stime di consegna localizzati in tutte le 11 lingue ioBroker via system.config.language; opzione Status Language per istanza rimossa. summary.todayCount corretto per lingue non-DE/EN.",
|
|
79
|
-
"es": "Respuesta al latest-repo review round 2. Salida del test-build (build-test/) separada de la producción build/. Carpeta deliveries y canal summary declarados como instance objects. Etiquetas de estado y estimaciones de entrega localizadas en los 11 idiomas de ioBroker via system.config.language; opción Status Language por instancia eliminada. summary.todayCount corregido para idiomas no-DE/EN.",
|
|
80
|
-
"pl": "Odpowiedź na latest-repo review round 2. Wyjście test-build (build-test/) oddzielone od produkcji build/. Folder deliveries i kanał summary zadeklarowane jako instance objects. Etykiety statusu i szacunki dostawy zlokalizowane we wszystkich 11 językach ioBroker przez system.config.language; opcja Status Language per-instance została usunięta. summary.todayCount naprawione dla języków innych niż DE/EN.",
|
|
81
|
-
"uk": "Відповідь на latest-repo review round 2. Test-build output (build-test/) відокремлено від production build/. Folder deliveries та channel summary оголошено як instance objects. Status-мітки та оцінки доставки локалізовано в усіх 11 мовах ioBroker через system.config.language; опцію Status Language per-instance видалено. summary.todayCount виправлено для мов крім DE/EN.",
|
|
82
|
-
"zh-cn": "Latest-repo review round 2 的回应。测试构建输出(build-test/)从生产 build/ 分离。deliveries 文件夹和 summary 通道声明为 instance objects。状态标签和到达时间预估通过 system.config.language 本地化为全部 11 种 ioBroker 语言;移除 per-instance Status Language 选项。修复非 DE/EN 语言下的 summary.todayCount。"
|
|
85
|
+
"en": "Crash defense: process-level error handlers.",
|
|
86
|
+
"de": "Crash-Schutz: process-level Error-Handler.",
|
|
87
|
+
"ru": "Защита от сбоев: process-level обработчики ошибок.",
|
|
88
|
+
"pt": "Proteção contra falhas: handlers de erro process-level.",
|
|
89
|
+
"nl": "Crashbescherming: process-level error-handlers.",
|
|
90
|
+
"fr": "Défense contre les crashs : handlers d'erreur process-level.",
|
|
91
|
+
"it": "Difesa anti-crash: handler di errore process-level.",
|
|
92
|
+
"es": "Defensa contra fallos: handlers de error process-level.",
|
|
93
|
+
"pl": "Ochrona przed crashem: handlery błędów process-level.",
|
|
94
|
+
"uk": "Захист від збоїв: process-level обробники помилок.",
|
|
95
|
+
"zh-cn": "崩溃防护:process-level 错误处理器。"
|
|
83
96
|
}
|
|
84
97
|
},
|
|
85
98
|
"titleLang": {
|