Skip to content

Commit

Permalink
chore: release v0.1.12-alpha.0
Browse files Browse the repository at this point in the history
* (HGlab01) Improve statename verification
  • Loading branch information
HGlab01 committed Jun 30, 2023
1 parent ab1bd0f commit f8c569a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG_OLD.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Older changes
## 0.1.7 (2021-11-16)
* (HGlab01) send missing attributes as warning to Sentry

## 0.1.6 (2021-11-04)
* (HGlab01) Sentry and error logging optimized

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ https://github.com/HGlab01/ioBroker.fuelpricemonitor
Placeholder for the next version (at the beginning of the line):
### __WORK IN PROGRESS__
-->
### 0.1.12-alpha.0 (2023-06-30)
* (HGlab01) Improve statename verification

### 0.1.11 (2023-04-12)
* (HGlab01) Improve stateSetCreate
* (HGlab01) no longer support for state expire
Expand All @@ -52,9 +55,6 @@ https://github.com/HGlab01/ioBroker.fuelpricemonitor
### 0.1.8 (2021-11-25)
* (HGlab01) save 'warnMessages'-array as file to reimport after restart of adapter

### 0.1.7 (2021-11-16)
* (HGlab01) send missing attributes as warning to Sentry

## License
MIT License

Expand Down
1 change: 0 additions & 1 deletion jsonExplorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ function readWarnMessages() {
async function stateSetCreate(objName, name, value) {
adapter.log.silly(`Create_state called for '${objName}' with value '${value}'`);
let objNameOrigin = objName;
//objName = objName.replace(/[^a-zA-Z0-9]/g, '_');
objName = objName.replace(adapter.FORBIDDEN_CHARS, '_');
if (objNameOrigin != objName) adapter.log.info(`Object name '${objNameOrigin}' renamed to '${objName}'`);

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker-jsonexplorer",
"version": "0.1.11",
"version": "0.1.12-alpha.0",
"description": "Creates ioBroker states based on a json-object",
"main": "jsonExplorer.js",
"scripts": {
Expand Down

0 comments on commit f8c569a

Please sign in to comment.