docker-storage-gc 3.5.8 → 3.5.9

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,14 @@
1
+ - commits:
2
+ - subject: Fix exported typings
3
+ hash: f3e088e5853025e80baaf58bbdc965074020a95f
4
+ body: ""
5
+ footer:
6
+ Change-type: patch
7
+ change-type: patch
8
+ author: Pagan Gazzard
9
+ version: 3.5.9
10
+ title: ""
11
+ date: 2023-11-29T16:47:54.508Z
1
12
  - commits:
2
13
  - subject: Update to eventemitter3 v5
3
14
  hash: 6d40753d7643460e8736d8b5f0672d8dd9f84f4f
@@ -8,7 +19,7 @@
8
19
  author: Pagan Gazzard
9
20
  version: 3.5.8
10
21
  title: ""
11
- date: 2023-11-29T13:30:06.482Z
22
+ date: 2023-11-29T14:46:22.453Z
12
23
  - commits:
13
24
  - subject: Import bluebird as `Bluebird` instead of `Promise`
14
25
  hash: f97bfe4be10415ff3a74709d1c158eb847a280d1
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.9
8
+ ## (2023-11-29)
9
+
10
+ * Fix exported typings [Pagan Gazzard]
11
+
7
12
  # v3.5.8
8
13
  ## (2023-11-29)
9
14
 
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import type Dockerode = require('dockerode');
2
- import type EventEmitter = require('eventemitter3');
1
+ import type * as Dockerode from 'dockerode';
2
+ import type EventEmitter from 'eventemitter3';
3
3
 
4
4
  interface Events {
5
5
  numberImagesToRemove(n: number): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "docker-storage-gc",
3
- "version": "3.5.8",
3
+ "version": "3.5.9",
4
4
  "main": "build/index.js",
5
5
  "types": "index.d.ts",
6
6
  "scripts": {
@@ -32,6 +32,6 @@
32
32
  "timekeeper": "0.0.5"
33
33
  },
34
34
  "versionist": {
35
- "publishedAt": "2023-11-29T13:30:06.598Z"
35
+ "publishedAt": "2023-11-29T16:47:54.642Z"
36
36
  }
37
37
  }