diff --git a/CHANGELOG_OLD.md b/CHANGELOG_OLD.md index c070c3c47..5a2cc7934 100644 --- a/CHANGELOG_OLD.md +++ b/CHANGELOG_OLD.md @@ -5,6 +5,10 @@ * (foxriver76) optimzied the notificaiton popup (auto-extend first entry per category, respect line breaks, respect severity for icons) * (theimo1221) #2178 Stabilize onObjectChange handling during creation of new objects in WebUi, to directly show new element. +## 6.12.1 (2023-10-29) +* (foxriver76) optimzied the notificaiton popup (auto-extend first entry per category, respect line breaks, respect severity for icons) +* (theimo1221) #2178 Stabilize onObjectChange handling during creation of new objects in WebUi, to directly show new element. + ## 6.15.2 (2024-03-07) * (foxriver76) fixed cron dialog diff --git a/README.md b/README.md index d7f5c845c..6963f047a 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ The icons may not be reused in other projects without the proper flaticon licens ### **WORK IN PROGRESS** --> ## Changelog -### **WORK IN PROGRESS** +### 6.17.6 (2024-04-19) * (bluefox) Extend the table JSON Config with the encryption possibility * (bluefox) Do not read historical data if instance is not active diff --git a/lerna.json b/lerna.json index 1446e7c3f..9ae098fa8 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "6.17.5", + "version": "6.17.6", "packages": [ "packages/*" ], diff --git a/packages/admin/io-package.json b/packages/admin/io-package.json index 5ec590a77..2c07d2112 100644 --- a/packages/admin/io-package.json +++ b/packages/admin/io-package.json @@ -1,7 +1,7 @@ { "common": { "name": "admin", - "version": "6.17.5", + "version": "6.17.6", "titleLang": { "en": "Admin", "de": "Admin", @@ -18,6 +18,19 @@ "connectionType": "local", "dataSource": "push", "news": { + "6.17.6": { + "en": "Extend the table JSON Config with the encryption possibility\nDo not read historical data if instance is not active", + "de": "Erweitern Sie die Tabelle JSON Config mit der Verschlüsselungsmöglichkeit\nLesen Sie historische Daten nicht, wenn Instanz nicht aktiv ist", + "ru": "Расширение таблицы JSON Config с возможностью шифрования\nНе читайте исторические данные, если экземпляр не активен", + "pt": "Estenda a tabela JSON Config com a possibilidade de criptografia\nNão leia dados históricos se a instância não estiver ativa", + "nl": "De tabel JSON instellen uitbreiden met de versleutelingsmogelijkheid\nNiet lezen van historische gegevens als instantie niet actief is", + "fr": "Étendre la table JSON Config avec la possibilité de chiffrement\nNe pas lire les données historiques si l'instance n'est pas active", + "it": "Estendere il tavolo JSON Config con la possibilità di crittografia\nNon leggere i dati storici se l'istanza non è attiva", + "es": "Extender la tabla JSON Config con la posibilidad de cifrado\nNo lea datos históricos si la instancia no es activa", + "pl": "Rozszerzenie tabeli JSON Config z możliwością szyfrowania\nNie należy odczytywać danych historycznych, jeśli instancja nie jest aktywna", + "uk": "Розширення таблиці JSON Config з можливістю шифрування\nНе прочитайте історичні дані, якщо не активна", + "zh-cn": "扩展表 JSON 配置到加密可能性\n如果实例不活动, 不读取历史数据" + }, "6.17.3": { "en": "fixed npm adapter installation", "de": "installation von npm adapter", diff --git a/packages/admin/package.json b/packages/admin/package.json index 03d1aa2c7..4cf2a3539 100644 --- a/packages/admin/package.json +++ b/packages/admin/package.json @@ -1,7 +1,7 @@ { "name": "iobroker.admin", "description": "The adapter opens a webserver for the ioBroker admin UI.", - "version": "6.17.5", + "version": "6.17.6", "contributors": [ "bluefox ", "apollon77", diff --git a/packages/admin/src/package.json b/packages/admin/src/package.json index e10760866..069fb06f2 100644 --- a/packages/admin/src/package.json +++ b/packages/admin/src/package.json @@ -1,42 +1,41 @@ { - "name": "src-rx", - "private": true, - "homepage": ".", - "scripts": { - "start": "set DANGEROUSLY_DISABLE_HOST_CHECK=true&& craco start", - "old-start": "react-scripts start", - "lint": "eslint --fix --ext .js,.jsx,.tsx src", - "build": "craco build", - "test": "react-scripts test", - "eject": "react-scripts eject", - "check-ts": "tsc --noEmit --checkJS false", - "tsc": "tsc --project tsconfig.build.json" - }, - "eslintConfig": { - "extends": "react-app" - }, - "browserslist": [ - ">0.2%", - "not dead", - "not op_mini all" + "name": "src-rx", + "private": true, + "homepage": ".", + "scripts": { + "start": "set DANGEROUSLY_DISABLE_HOST_CHECK=true&& craco start", + "old-start": "react-scripts start", + "lint": "eslint --fix --ext .js,.jsx,.tsx src", + "build": "craco build", + "test": "react-scripts test", + "eject": "react-scripts eject", + "check-ts": "tsc --noEmit --checkJS false", + "tsc": "tsc --project tsconfig.build.json" + }, + "eslintConfig": { + "extends": "react-app" + }, + "browserslist": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "dependencies": { + "@iobroker/json-config": "file:../../jsonConfig" + }, + "proxy": "http://127.0.0.1:8081", + "plugins": [ + [ + "@babel/plugin-proposal-decorators", + { + "legacy": true + } ], - "dependencies": { - "@iobroker/json-config": "file:../../jsonConfig" - }, - "proxy": "http://127.0.0.1:8081", - "plugins": [ - [ - "@babel/plugin-proposal-decorators", - { - "legacy": true - } - ], - [ - "@babel/plugin-proposal-class-properties", - { - "loose": true - } - ] - ], - "version": "6.17.5" + [ + "@babel/plugin-proposal-class-properties", + { + "loose": true + } + ] + ] } \ No newline at end of file diff --git a/packages/dm-gui-components/package.json b/packages/dm-gui-components/package.json index b392f66bb..6dc27bbdd 100644 --- a/packages/dm-gui-components/package.json +++ b/packages/dm-gui-components/package.json @@ -1,6 +1,6 @@ { "name": "@iobroker/dm-gui-components", - "version": "6.17.5", + "version": "6.17.6", "description": "ReactJS components to develop admin interface for ioBroker device manager.", "author": { "name": "Jey Cee", diff --git a/packages/jsonConfig/package.json b/packages/jsonConfig/package.json index 973b08eef..bb6af5cdb 100644 --- a/packages/jsonConfig/package.json +++ b/packages/jsonConfig/package.json @@ -1,7 +1,7 @@ { "name": "@iobroker/json-config", "description": "This package contains the ioBroker JSON config UI components", - "version": "6.17.5", + "version": "6.17.6", "main": "./build/index.js", "types": "./build/index.d.ts", "scripts": {