docker-storage-gc 3.5.4 → 3.5.5

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.
@@ -1,3 +1,13 @@
1
+ - commits:
2
+ - subject: add support for arm32 architecture
3
+ hash: d308f7ad8e13c0d34960328c58e18715acb70aaf
4
+ body: ""
5
+ footer:
6
+ change-type: patch
7
+ author: Anton Belodedenko
8
+ version: 3.5.5
9
+ title: ""
10
+ date: 2023-10-16T17:40:56.444Z
1
11
  - commits:
2
12
  - subject: Run tests using dind to avoid interactions with existing images
3
13
  hash: ee161f87df98729d935c47c7c2a9f20d72a39e46
@@ -21,7 +31,7 @@
21
31
  author: Pagan Gazzard
22
32
  version: 3.5.4
23
33
  title: ""
24
- date: 2023-08-01T13:38:01.904Z
34
+ date: 2023-08-01T13:43:27.228Z
25
35
  - commits:
26
36
  - subject: Add typings
27
37
  hash: 15a645990da1f763088a843c9a8876b4b5cddff8
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.5
8
+ ## (2023-10-16)
9
+
10
+ * add support for arm32 architecture [Anton Belodedenko]
11
+
7
12
  # v3.5.4
8
13
  ## (2023-08-01)
9
14
 
package/build/index.js CHANGED
@@ -104,6 +104,8 @@
104
104
  _this.docker = docker;
105
105
  return _this.baseImagePromise = _this.getDaemonArchitecture().then(function(arch) {
106
106
  switch (arch) {
107
+ case 'arm':
108
+ return 'arm32v6/alpine:3.6';
107
109
  case 'arm64':
108
110
  return 'arm64v8/alpine:3.6';
109
111
  case 'amd64':
package/lib/index.coffee CHANGED
@@ -81,6 +81,7 @@ class DockerGC
81
81
  @baseImagePromise = @getDaemonArchitecture()
82
82
  .then (arch) ->
83
83
  return switch arch
84
+ when 'arm' then 'arm32v6/alpine:3.6'
84
85
  when 'arm64' then 'arm64v8/alpine:3.6'
85
86
  when 'amd64' then 'alpine:3.6'
86
87
  else
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docker-storage-gc",
3
- "version": "3.5.4",
3
+ "version": "3.5.5",
4
4
  "main": "build/index.js",
5
5
  "types": "index.d.ts",
6
6
  "scripts": {
@@ -33,6 +33,6 @@
33
33
  "timekeeper": "0.0.5"
34
34
  },
35
35
  "versionist": {
36
- "publishedAt": "2023-08-01T13:38:02.081Z"
36
+ "publishedAt": "2023-10-16T17:40:56.602Z"
37
37
  }
38
38
  }