Skip to content

Commit

Permalink
Combined dependabot bumps PR (#274)
Browse files Browse the repository at this point in the history
✅ This PR was created by the Combine PRs action by combining the following PRs:
#273 Bump dockerode and @types/dockerode
#272 Bump lint-staged from 13.1.2 to 14.0.1
#269 Bump @types/dockerode from 3.3.14 to 3.3.20
#268 Bump pino from 8.14.1 to 8.15.6 in /tunnel-server
#267 Bump @types/node-forge from 1.3.1 to 1.3.6
#264 Bump nodemon from 2.0.20 to 2.0.22 in /tunnel-server
#263 Bump jest from 29.4.3 to 29.7.0
#262 Bump jest from 29.6.2 to 29.7.0 in /tunnel-server
#260 Bump yaml from 2.3.1 to 2.3.2
  • Loading branch information
github-actions[bot] authored Oct 5, 2023
1 parent d1f1ee5 commit 5d4f9fc
Show file tree
Hide file tree
Showing 14 changed files with 1,041 additions and 1,146 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"devDependencies": {
"husky": "^8.0.0",
"lerna": "^6.6.2",
"lint-staged": "^13.1.2",
"lint-staged": "^14.0.1",
"lodash": "^4.17.21",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/cli-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@
"lodash": "^4.17.21"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@jest/globals": "29.7.0",
"@types/lodash": "^4.14.192",
"@types/node": "18",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest": "29.7.0",
"shx": "^0.3.3",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
Expand Down
6 changes: 3 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"iter-tools-es": "^7.5.3",
"lodash": "^4.17.21",
"shell-escape": "^0.2.0",
"yaml": "^2.3.1"
"yaml": "^2.3.2"
},
"devDependencies": {
"@oclif/test": "^2.3.4",
Expand All @@ -49,10 +49,10 @@
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest": "29.7.0",
"oclif": "^3",
"pkg": "^5.8.1",
"shx": "^0.3.3",
Expand Down
10 changes: 5 additions & 5 deletions packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"ssh2": "^1.12.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@jest/globals": "29.7.0",
"@types/dockerode": "^3.3.14",
"@types/lodash": "^4.14.192",
"@types/node": "18",
Expand All @@ -29,12 +29,12 @@
"esbuild": "^0.17.14",
"eslint": "^8.36.0",
"husky": "^8.0.0",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"ts-jest": "^29.1.0",
"jest": "29.7.0",
"lint-staged": "^14.0.1",
"ts-jest": "29.1.1",
"tsx": "^3.12.3",
"typescript": "^5.0.4",
"yaml": "^2.3.1"
"yaml": "^2.3.2"
},
"scripts": {
"test": "yarn jest",
Expand Down
6 changes: 3 additions & 3 deletions packages/compose-tunnel-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"zod": "^3.21.4"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@jest/globals": "29.7.0",
"@types/dockerode": "^3.3.14",
"@types/http-proxy": "^1.17.9",
"@types/lodash": "^4.14.192",
Expand All @@ -43,8 +43,8 @@
"esbuild": "^0.17.14",
"eslint": "^8.36.0",
"husky": "^8.0.0",
"jest": "^29.4.3",
"lint-staged": "^13.1.2",
"jest": "29.7.0",
"lint-staged": "^14.0.1",
"node-fetch": "2.6.9",
"shx": "^0.3.3",
"strip-ansi": "6.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ export const containers: FastifyPluginAsync<{
params: containerIdActionSchema,
},
preValidation: async ({ params: { containerId } }) => await inspectFilteredContainer(dockerFilter, containerId),
}, async ({ params: { containerId, action } }) => await docker.getContainer(containerId)[action]())
}, async ({ params: { containerId, action } }) => {
const container = docker.getContainer(containerId)
await (container[action] as () => Promise<void>)()
})

await app.register(fastifyWebsocket)
await app.register(exec, { docker, dockerFilter })
Expand Down
10 changes: 5 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@
"sshpk": "^1.17.0",
"tar": "^6.1.15",
"tar-stream": "3.0.0",
"yaml": "^2.3.1",
"yaml": "^2.3.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@jest/globals": "29.7.0",
"@types/inquirer": "^8.0.0",
"@types/is-stream": "^2.0.0",
"@types/lodash": "^4.14.192",
Expand All @@ -57,12 +57,12 @@
"eslint": "^8.36.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest": "29.7.0",
"shx": "^0.3.3",
"ts-jest": "^29.1.0",
"ts-jest": "29.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/driver-azure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest": "29.7.0",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/driver-gce/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest": "29.7.0",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/driver-kube-pod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
"lodash": "^4.17.21",
"nunjucks": "^3.2.4",
"p-retry": "^4.6.2",
"yaml": "^2.3.1"
"yaml": "^2.3.2"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@jest/globals": "29.7.0",
"@types/lodash": "^4.14.192",
"@types/node": "18",
"@types/stream-buffers": "^3.0.4",
Expand All @@ -35,10 +35,10 @@
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest": "29.7.0",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/driver-lightsail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.4.3",
"jest": "29.7.0",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
Expand Down
6 changes: 3 additions & 3 deletions tunnel-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"node": ">=18.0.0"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@jest/globals": "29.7.0",
"@types/content-type": "^1.1.5",
"@types/cookies": "^0.7.8",
"@types/http-proxy": "^1.17.9",
Expand All @@ -41,9 +41,9 @@
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "^8.36.0",
"jest": "^29.4.3",
"jest": "29.7.0",
"nodemon": "^2.0.20",
"ts-jest": "^29.1.0",
"ts-jest": "29.1.1",
"typescript": "^5.0.4",
"wait-for-expect": "^3.0.2"
},
Expand Down
Loading

0 comments on commit 5d4f9fc

Please sign in to comment.