@flowfuse/driver-docker 2.15.0 → 2.16.0
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.
|
@@ -13,9 +13,9 @@ jobs:
|
|
|
13
13
|
matrix:
|
|
14
14
|
node-version: [16.x]
|
|
15
15
|
steps:
|
|
16
|
-
- uses: actions/checkout@v4
|
|
16
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
17
17
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
18
|
-
uses: actions/setup-node@v4
|
|
18
|
+
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
|
|
19
19
|
with:
|
|
20
20
|
node-version: ${{ matrix.node-version }}
|
|
21
21
|
- name: Install Dependencies
|
|
@@ -8,11 +8,11 @@ jobs:
|
|
|
8
8
|
publish:
|
|
9
9
|
runs-on: ubuntu-latest
|
|
10
10
|
steps:
|
|
11
|
-
- uses: actions/checkout@v4
|
|
12
|
-
- uses: actions/setup-node@v4
|
|
11
|
+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
12
|
+
- uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
|
|
13
13
|
with:
|
|
14
14
|
node-version: 18
|
|
15
15
|
- run: npm ci --omit dev
|
|
16
|
-
- uses: JS-DevTools/npm-publish@v3
|
|
16
|
+
- uses: JS-DevTools/npm-publish@19c28f1ef146469e409470805ea4279d47c3d35c # v3.1.1
|
|
17
17
|
with:
|
|
18
18
|
token: ${{ secrets.NPM_PUBLISH_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
#### 2.16.0: Release
|
|
2
|
+
|
|
3
|
+
- chore: fix lint script (#128) @ppawlowski
|
|
4
|
+
- Bump tar-fs and dockerode (#127) @app/dependabot
|
|
5
|
+
- chore: Pin external actions to commit hash (#126) @ppawlowski
|
|
6
|
+
|
|
1
7
|
#### 2.15.0: Release
|
|
2
8
|
|
|
3
9
|
- docs: Remove unused configuration keyfrom README.md (#124) @ppawlowski
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowfuse/driver-docker",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.16.0",
|
|
4
4
|
"description": "Docker driver for FlowFuse",
|
|
5
5
|
"main": "docker.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
-
"lint": "eslint -c .eslintrc *.js",
|
|
9
|
-
"lint:fix": "eslint -c .eslintrc *.js --fix"
|
|
8
|
+
"lint": "eslint -c .eslintrc \"*.js\"",
|
|
9
|
+
"lint:fix": "eslint -c .eslintrc \"*.js\" --fix"
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"dockerode": "^
|
|
24
|
+
"dockerode": "^4.0.5",
|
|
25
25
|
"form-data": "^4.0.0",
|
|
26
26
|
"got": "^11.8.0"
|
|
27
27
|
},
|