Skip to content

Commit

Permalink
Auto generated self-signed certificates need to have a max duration o…
Browse files Browse the repository at this point in the history
…f 2 years according to new Apple rules
  • Loading branch information
Apollon77 committed Oct 27, 2019
1 parent 1c5affd commit 97bfa8d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Changelog


## 2.0.37 (2019-10-26) Release Bella
## 2.0.38 (2019-10-26) Release Bella
* (Apollon77) Add some more logic to prevent access with invalid ids
* (Apollon77) change "enhancedLogging" to not be global but "per DB"
* (Apollon77) Fix compact mode on Windows systems
Expand Down
4 changes: 2 additions & 2 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"common": {
"name": "js-controller",
"version": "2.0.37",
"version": "2.0.38",
"platform": "Javascript/Node.js",
"controller": true,
"title": "JS controller",
Expand All @@ -18,7 +18,7 @@
"zh-cn": "JS控制器"
},
"news": {
"2.0.37": {
"2.0.38": {
"en": "0_userdata for own states, obejcts and files introduced, optimizations and bugfixes, errors with compact mode on Windows fixed, Logging enhancements",
"de": "0_userdata für eigene Zustände, Objekte und Dateien, Optimierungen und Bugfixes, Fehler im Kompaktmodus unter Windows behoben, Logging-Verbesserungen",
"ru": "0_userdata для собственных состояний, введенных объектов и файлов, оптимизаций и исправлений, исправлены ошибки с компактным режимом в Windows, улучшения ведения журнала",
Expand Down
2 changes: 1 addition & 1 deletion lib/states/statesInRedis.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class StateRedis {
this.stop = false;
this.client = null;
this.sub = null;
const ioRegExp = new RegExp('^' + this.namespaceRedis.replace(/\./g, '\\.') + '[_A-Za-z]+'); // io.[_A-Za-z]+
const ioRegExp = new RegExp('^' + this.namespaceRedis.replace(/\./g, '\\.') + '[_A-Za-z0-9]+'); // io.[_A-Za-z0-9]+

this.subscribes = {};

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.js-controller",
"version": "2.0.37",
"version": "2.0.38",
"engines": {
"node": ">=8.0.0"
},
Expand All @@ -20,7 +20,7 @@
"daemonize2": "^0.4.2",
"debug": "^4.1.1",
"event-stream": "^4.0.1",
"iobroker.objects-redis": "^1.1.48",
"iobroker.objects-redis": "^1.1.49",
"ioredis": "^4.14.1",
"jsonwebtoken": "^8.5.1",
"jszip": "^3.2.2",
Expand Down

0 comments on commit 97bfa8d

Please sign in to comment.