Skip to content

Commit e2c0eee

Browse files
committed
chore: release v2.3.1
* (crycode-de) Updated Sentry DSN
1 parent 936dcb8 commit e2c0eee

7 files changed

Lines changed: 37 additions & 44 deletions

File tree

CHANGELOG_OLD.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ The newest change log is in README.md
3434

3535
### 0.0.1
3636
* (crycode-de) initial development release
37+
## 2.0.0 (2024-11-02)
38+
39+
* (crycode-de) Node.js >= 18, Admin >= 6.17, js-contoller >= 5.0.19 are required
40+
* (crycode-de) Changed how custom parser scripts are interpreted. Most custom parser scripts should work as before but they have a limited scope now.
41+
* (crycode-de) Custom parser scripts now support `getStateAsync`, `getForeignStateAsync`, `getObjectAsync` and `getForeignObjectAsync`. If you have used `getStateAsync`/`getObjectAsync` before you need to change them to `getForeignStateAsync`/`getForeignObjectAsync` or update the IDs if you get data from the same adapter instance.
42+
* (crycode-de) Custom write parser scripts an now return false to cancel the write
43+
* (crycode-de) Updated dependencies
44+
3745
## 1.3.1 (2022-04-19)
3846

3947
* (crycode-de) Fixed `autoSetValue` defaults for parsers

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ By writing JSON data to the `raw.send` state you are able to send CAN messages c
166166
Placeholder for the next version (at the beginning of the line):
167167
### **WORK IN PROGRESS**
168168
-->
169-
### **WORK IN PROGRESS**
169+
### 2.3.1 (2025-10-25)
170170

171171
* (crycode-de) Updated Sentry DSN
172172

@@ -193,14 +193,6 @@ By writing JSON data to the `raw.send` state you are able to send CAN messages c
193193
* (crycode-de) Allow `setTimeout` and `clearTimeout` in custom parser scripts (using the adapters setTimeout implementation)
194194
* (crycode-de) Added `wait` function to custom parser scripts
195195

196-
### 2.0.0 (2024-11-02)
197-
198-
* (crycode-de) Node.js >= 18, Admin >= 6.17, js-contoller >= 5.0.19 are required
199-
* (crycode-de) Changed how custom parser scripts are interpreted. Most custom parser scripts should work as before but they have a limited scope now.
200-
* (crycode-de) Custom parser scripts now support `getStateAsync`, `getForeignStateAsync`, `getObjectAsync` and `getForeignObjectAsync`. If you have used `getStateAsync`/`getObjectAsync` before you need to change them to `getForeignStateAsync`/`getForeignObjectAsync` or update the IDs if you get data from the same adapter instance.
201-
* (crycode-de) Custom write parser scripts an now return false to cancel the write
202-
* (crycode-de) Updated dependencies
203-
204196
## License
205197

206198
Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0)

admin/build/index.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

admin/build/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

io-package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
{
22
"common": {
33
"name": "canbus",
4-
"version": "2.3.0",
4+
"version": "2.3.1",
55
"news": {
6+
"2.3.1": {
7+
"en": "Updated Sentry DSN",
8+
"de": "Sentry DSN aktualisiert",
9+
"ru": "Обновленный Sentry DSN",
10+
"pt": "Atualizado Sentry DSN",
11+
"nl": "Bijgewerkt Sentry DSN",
12+
"fr": "Mise à jour de la déclaration DSN",
13+
"it": "Aggiornato Sentry DSN",
14+
"es": "Actualizado Sentry DSN",
15+
"pl": "Aktualizacja Sentry DSN",
16+
"uk": "Оновлена Sentry DSN",
17+
"zh-cn": "更新的哨兵 DSN"
18+
},
619
"2.3.0": {
720
"en": "Support for Node.js 24\njs-controller >= 6.0.11, Admin >= 7.6.17 required\nFixed issue with importing configurations\nUpdated dependencies",
821
"de": "Unterstützung für Node.js 24\njs-controller >= 6.0.11, Admin >= 7.6.17 erforderlich\nProblem beim Konfigurationsimport behoben\nAbhängigkeiten aktualisiert",
@@ -80,19 +93,6 @@
8093
"pl": "Poprawiono domyślne ustawienia `autoSetValue` dla parserów, Poprawiono integrację admina Sentry, Zaktualizowano zależności",
8194
"zh-cn": "修复了解析器的“autoSetValue”默认值,修复了哨兵管理员集成,更新了依赖项",
8295
"uk": "Виправлено значення за замовчуванням `autoSetValue` для аналізаторів, виправлено інтеграцію адміністратора sentry, оновлено залежності"
83-
},
84-
"1.3.0": {
85-
"en": "Added sharedData object in custom parsers.",
86-
"de": "sharedData-Objekt in benutzerdefinierten Parsern hinzugefügt.",
87-
"ru": "Добавлен объект sharedData в пользовательских парсерах.",
88-
"pt": "Adicionado o objeto sharedData em analisadores personalizados.",
89-
"nl": "sharedData-object toegevoegd in aangepaste parsers.",
90-
"fr": "Ajout d'un objet sharedData dans les analyseurs personnalisés.",
91-
"it": "Aggiunto oggetto sharedData nei parser personalizzati.",
92-
"es": "Se agregó el objeto sharedData en analizadores personalizados.",
93-
"pl": "Dodano obiekt sharedData w niestandardowych parserach.",
94-
"zh-cn": "在自定义解析器中添加了 sharedData 对象。",
95-
"uk": "Додано об’єкт sharedData в настроюваних парсерах."
9696
}
9797
},
9898
"titleLang": {

package-lock.json

Lines changed: 7 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iobroker.canbus",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "CAN Bus integration",
55
"author": {
66
"name": "Peter Müller",

0 commit comments

Comments
 (0)