add pipeline
Tests / test (push) Failing after 34s
Tests / build-and-push-image (push) Has been skipped

This commit is contained in:
root
2026-07-31 13:51:39 -04:00
parent f3863f760c
commit 843fa559bb
135 changed files with 791 additions and 4796 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
node-version: [14.x, 16.x, 18.x, 20.x, 22.x]
node-version: [16.x, 18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v3
+2 -2
View File
@@ -1,10 +1,10 @@
var grpc = require("@grpc/grpc-js"),
protoLoader = require("@grpc/proto-loader"),
path = require("path"),
uuid = require("uuid").v4;
crypto = require("crypto");
function withSession(docker, auth, handler) {
const sessionId = uuid();
const sessionId = crypto.randomUUID();
const opts = {
method: "POST",
+5 -6
View File
@@ -1,7 +1,7 @@
{
"name": "dockerode",
"description": "Docker Remote API module.",
"version": "4.0.12",
"version": "5.0.1",
"author": "Pedro Dias <petermdias@gmail.com>",
"maintainers": [
"apocas <petermdias@gmail.com>"
@@ -20,14 +20,13 @@
"@grpc/proto-loader": "^0.7.13",
"docker-modem": "^5.0.7",
"protobufjs": "^7.3.2",
"tar-fs": "^2.1.4",
"uuid": "^10.0.0"
"tar-fs": "^2.1.4"
},
"devDependencies": {
"bluebird": "^3.7.0",
"chai": "~4.2.0",
"chai": "^4.5.0",
"memorystream": "~0.3.0",
"mocha": "^10.2.0"
"mocha": "^11.7.0"
},
"main": "./lib/docker",
"scripts": {
@@ -35,6 +34,6 @@
},
"license": "Apache-2.0",
"engines": {
"node": ">= 8.0"
"node": ">= 14.17"
}
}