diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e29cc9..06e1c09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -72,6 +72,7 @@ For major (breaking) changes - **version 4, 3 and 2** - see end of page. | Version | Date | Comment | | -------------- | -------------- | -------- | +| 5.3.3 | 2020-02-15 | `dockerContainerStats()` fixed ID splitting | | 5.3.2 | 2020-02-15 | `inetLatency()` `ineChecksite()` fixed possible security issue (file://) | | 5.3.1 | 2020-02-14 | `inetLatency()` `ineChecksite()` `servcices()` `processes()` fixed possible security issue (arrays) | | 5.3.0 | 2020-02-12 | `osInfo()` added remoteSession (windows) | diff --git a/docs/history.html b/docs/history.html index be9c2b9..84aafea 100644 --- a/docs/history.html +++ b/docs/history.html @@ -56,6 +56,11 @@ + + 5.3.3 + 2020-02-15 + dockerContainerStats() fix correct ID splitting + 5.3.2 2020-02-15 diff --git a/docs/index.html b/docs/index.html index c7b61a5..5471d4f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -170,7 +170,7 @@
systeminformation
 
-
New Version: 5.3.2
+
New Version: 5.3.3
diff --git a/lib/docker.js b/lib/docker.js index 2dd1e2a..1c2854e 100644 --- a/lib/docker.js +++ b/lib/docker.js @@ -362,7 +362,7 @@ function dockerContainerStats(containerIDs, callback) { } containerIDsSanitized = containerIDsSanitized.trim().toLowerCase().replace(/,+/g, '|'); - containerArray = containerIDs.split('|'); + containerArray = containerIDsSanitized.split('|'); } const result = [];