docker-storage-gc 3.5.5 → 3.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.versionbot/CHANGELOG.yml +12 -1
- package/CHANGELOG.md +5 -0
- package/build/docker.js +1 -7
- package/lib/docker.coffee +0 -3
- package/package.json +3 -4
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Remove unused `mz` dependency
|
|
3
|
+
hash: b39c411f82f69b7aa980364bce04e8b398a343da
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
author: Pagan Gazzard
|
|
9
|
+
version: 3.5.6
|
|
10
|
+
title: ""
|
|
11
|
+
date: 2023-11-28T20:43:10.957Z
|
|
1
12
|
- commits:
|
|
2
13
|
- subject: add support for arm32 architecture
|
|
3
14
|
hash: d308f7ad8e13c0d34960328c58e18715acb70aaf
|
|
@@ -7,7 +18,7 @@
|
|
|
7
18
|
author: Anton Belodedenko
|
|
8
19
|
version: 3.5.5
|
|
9
20
|
title: ""
|
|
10
|
-
date: 2023-10-
|
|
21
|
+
date: 2023-10-16T18:55:08.049Z
|
|
11
22
|
- commits:
|
|
12
23
|
- subject: Run tests using dind to avoid interactions with existing images
|
|
13
24
|
hash: ee161f87df98729d935c47c7c2a9f20d72a39e46
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v3.5.6
|
|
8
|
+
## (2023-11-28)
|
|
9
|
+
|
|
10
|
+
* Remove unused `mz` dependency [Pagan Gazzard]
|
|
11
|
+
|
|
7
12
|
# v3.5.5
|
|
8
13
|
## (2023-10-16)
|
|
9
14
|
|
package/build/docker.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Generated by CoffeeScript 1.12.7
|
|
2
2
|
(function() {
|
|
3
|
-
var Docker, Promise, _,
|
|
3
|
+
var Docker, Promise, _, getDockerConnectOpts;
|
|
4
4
|
|
|
5
5
|
Docker = require('dockerode');
|
|
6
6
|
|
|
@@ -8,12 +8,6 @@
|
|
|
8
8
|
|
|
9
9
|
_ = require('lodash');
|
|
10
10
|
|
|
11
|
-
path = require('path');
|
|
12
|
-
|
|
13
|
-
fs = require('mz/fs');
|
|
14
|
-
|
|
15
|
-
url = require('url');
|
|
16
|
-
|
|
17
11
|
getDockerConnectOpts = function(hostObj) {
|
|
18
12
|
if (!_.isEmpty(hostObj)) {
|
|
19
13
|
return Promise.resolve(hostObj);
|
package/lib/docker.coffee
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "docker-storage-gc",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.6",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"types": "index.d.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
"event-stream": "^3.3.2",
|
|
23
23
|
"eventemitter3": "^4.0.4",
|
|
24
24
|
"JSONStream": "^1.0.7",
|
|
25
|
-
"lodash": "^4.17.5"
|
|
26
|
-
"mz": "^2.6.0"
|
|
25
|
+
"lodash": "^4.17.5"
|
|
27
26
|
},
|
|
28
27
|
"devDependencies": {
|
|
29
28
|
"chai": "^3.4.1",
|
|
@@ -33,6 +32,6 @@
|
|
|
33
32
|
"timekeeper": "0.0.5"
|
|
34
33
|
},
|
|
35
34
|
"versionist": {
|
|
36
|
-
"publishedAt": "2023-
|
|
35
|
+
"publishedAt": "2023-11-28T20:43:11.069Z"
|
|
37
36
|
}
|
|
38
37
|
}
|