@flowfuse/driver-docker 2.33.2 → 3.0.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ #### 3.0.1: Release
2
+
3
+ - Disable got retries (#241)
4
+
5
+ #### 3.0.0: Release
6
+
7
+
1
8
  #### 2.33.2: Release
2
9
 
3
10
 
package/docker.js CHANGED
@@ -1,4 +1,4 @@
1
- const got = require('got')
1
+ const got = require('got').extend({ retry: { limit: 0 } })
2
2
  const FormData = require('form-data')
3
3
  const Docker = require('dockerode')
4
4
  const { WebSocket } = require('ws')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowfuse/driver-docker",
3
- "version": "2.33.2",
3
+ "version": "3.0.1",
4
4
  "description": "Docker driver for FlowFuse",
5
5
  "main": "docker.js",
6
6
  "scripts": {
@@ -21,7 +21,7 @@
21
21
  },
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "dockerode": "^5.0.0",
24
+ "dockerode": "^5.0.1",
25
25
  "form-data": "^4.0.0",
26
26
  "got": "^11.8.0"
27
27
  },