Skip to content

Commit 4ba29fe

Browse files
committed
## 1.5.7 (2019-02-14) Evolution release (Ann)
* (bluefox) Fix let's encrypt * (bluefox) Fix "iob" script * (Dominic Griesel) Revert the changes to `del[Foreign]State`, so the object is not deleted. * (bluefox) always install the version from repository and not the latest from npm * (Ingo Fischer) Root should always npm install with --unsafe-perm * (bluefox) fix iobroker stop * (bluefox) fix error with formatDate * (bluefox) exit code 11 is not an error
1 parent 079f7c4 commit 4ba29fe

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 1.5.6 (2019-02-12) Evolution release (Ann)
1+
## 1.5.7 (2019-02-14) Evolution release (Ann)
22
* (bluefox) Fix let's encrypt
33
* (bluefox) Fix "iob" script
44
* (Dominic Griesel) Revert the changes to `del[Foreign]State`, so the object is not deleted.

controller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2378,7 +2378,7 @@ function startInstance(id, wakeUp) {
23782378
} else if (code === null) {
23792379
logger.error('host.' + hostname + ' instance ' + id + ' terminated abnormally');
23802380
} else {
2381-
if (code === 0 || code === '0') {
2381+
if (code === 0 || code === '0' || code === DESIRED_TERMINATION) {
23822382
logger.info('host.' + hostname + ' instance ' + id + ' terminated with code ' + code + ' (' + (errorCodes[code] || '') + ')');
23832383
} else {
23842384
logger.error('host.' + hostname + ' instance ' + id + ' terminated with code ' + code + ' (' + (errorCodes[code] || '') + ')');
@@ -2409,7 +2409,7 @@ function startInstance(id, wakeUp) {
24092409
} else if (code === null) {
24102410
logger.error('host.' + hostname + ' instance ' + id + ' terminated abnormally');
24112411
} else {
2412-
if (code === 0 || code === '0') {
2412+
if (code === 0 || code === '0' || code === DESIRED_TERMINATION) {
24132413
logger.info('host.' + hostname + ' instance ' + id + ' terminated with code ' + code + ' (' + (errorCodes[code] || '') + ')');
24142414
} else {
24152415
logger.error('host.' + hostname + ' instance ' + id + ' terminated with code ' + code + ' (' + (errorCodes[code] || '') + ')');

io-package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"common": {
33
"name": "js-controller",
4-
"version": "1.5.6",
4+
"version": "1.5.7",
55
"platform": "Javascript/Node.js",
66
"controller": true,
77
"title": "JS controller",
@@ -18,7 +18,7 @@
1818
"zh-cn": "JS控制器"
1919
},
2020
"news": {
21-
"1.5.6": {
21+
"1.5.7": {
2222
"en": "let's encrypt was fixed\nFix iob script\nAlways install the version from repository and not the latest from npm\nRoot should always npm install with --unsafe-perm\niobroker stop was fixed",
2323
"de": "Lass uns verschlüsseln wurde behoben\nIob -Skript korrigieren\nInstallieren Sie die Version immer aus dem Repository und nicht die neueste aus npm\nRoot sollte npm immer mit --unsafe-perm installieren\nIobroker-Stopp wurde behoben",
2424
"ru": "«давайте шифровать» было исправлено\nИсправить скрипт iob\nВсегда устанавливайте версию из репозитория, а не самую последнюю из npm\nRoot всегда должен устанавливать npm с помощью --unsafe-perm\nостановка iobroker была исправлена",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "iobroker.js-controller",
3-
"version": "1.5.6",
3+
"version": "1.5.7",
44
"engines": {
55
"node": ">=4.8.7"
66
},

0 commit comments

Comments
 (0)