isol8 0.1.0-alpha.1 → 0.1.0-alpha.2
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/dist/cli.js
CHANGED
|
@@ -6318,7 +6318,7 @@ var require_bcrypt_pbkdf = __commonJS((exports, module) => {
|
|
|
6318
6318
|
|
|
6319
6319
|
// node_modules/cpu-features/build/Release/cpufeatures.node
|
|
6320
6320
|
var require_cpufeatures = __commonJS((exports, module) => {
|
|
6321
|
-
module.exports = __require("./cpufeatures-
|
|
6321
|
+
module.exports = __require("./cpufeatures-tjjrgpt7.node");
|
|
6322
6322
|
});
|
|
6323
6323
|
|
|
6324
6324
|
// node_modules/cpu-features/lib/index.js
|
|
@@ -6931,12 +6931,12 @@ var require_utils2 = __commonJS((exports, module) => {
|
|
|
6931
6931
|
|
|
6932
6932
|
// node_modules/ssh2/lib/protocol/crypto/build/Release/sshcrypto.node
|
|
6933
6933
|
var require_sshcrypto = __commonJS((exports, module) => {
|
|
6934
|
-
module.exports = __require("./sshcrypto-
|
|
6934
|
+
module.exports = __require("./sshcrypto-0209sx47.node");
|
|
6935
6935
|
});
|
|
6936
6936
|
|
|
6937
6937
|
// node_modules/ssh2/lib/protocol/crypto/poly1305.js
|
|
6938
6938
|
var require_poly1305 = __commonJS((exports, module) => {
|
|
6939
|
-
var __dirname = "/
|
|
6939
|
+
var __dirname = "/home/runner/work/isol8/isol8/node_modules/ssh2/lib/protocol/crypto", __filename = "/home/runner/work/isol8/isol8/node_modules/ssh2/lib/protocol/crypto/poly1305.js";
|
|
6940
6940
|
var createPoly1305 = function() {
|
|
6941
6941
|
var _scriptDir = typeof document !== "undefined" && document.currentScript ? document.currentScript.src : undefined;
|
|
6942
6942
|
if (typeof __filename !== "undefined")
|
|
@@ -8681,7 +8681,7 @@ ${formatted}-----END ${type} KEY-----`;
|
|
|
8681
8681
|
}
|
|
8682
8682
|
return Buffer.from(hex, "hex");
|
|
8683
8683
|
}
|
|
8684
|
-
return function
|
|
8684
|
+
return function genOpenSSLRSAPriv2(n, e, d, iqmp, p, q) {
|
|
8685
8685
|
const bn_d = bigIntFromBuffer(d);
|
|
8686
8686
|
const dmp1 = bigIntToBuffer(bn_d % (bigIntFromBuffer(p) - 1n));
|
|
8687
8687
|
const dmq1 = bigIntToBuffer(bn_d % (bigIntFromBuffer(q) - 1n));
|
|
@@ -9709,7 +9709,7 @@ ${formatted}-----END ${type} KEY-----`;
|
|
|
9709
9709
|
|
|
9710
9710
|
// node_modules/ssh2/lib/agent.js
|
|
9711
9711
|
var require_agent = __commonJS((exports, module) => {
|
|
9712
|
-
var __dirname = "/
|
|
9712
|
+
var __dirname = "/home/runner/work/isol8/isol8/node_modules/ssh2/lib";
|
|
9713
9713
|
var { Socket } = __require("net");
|
|
9714
9714
|
var { Duplex } = __require("stream");
|
|
9715
9715
|
var { resolve } = __require("path");
|
|
@@ -21682,7 +21682,7 @@ var require__stream_writable = __commonJS((exports, module) => {
|
|
|
21682
21682
|
}
|
|
21683
21683
|
});
|
|
21684
21684
|
} else {
|
|
21685
|
-
realHasInstance = function
|
|
21685
|
+
realHasInstance = function realHasInstance2(object) {
|
|
21686
21686
|
return object instanceof this;
|
|
21687
21687
|
};
|
|
21688
21688
|
}
|
|
@@ -22480,28 +22480,28 @@ var require_end_of_stream = __commonJS((exports, module) => {
|
|
|
22480
22480
|
callback = once(callback || noop);
|
|
22481
22481
|
var readable = opts.readable || opts.readable !== false && stream.readable;
|
|
22482
22482
|
var writable = opts.writable || opts.writable !== false && stream.writable;
|
|
22483
|
-
var onlegacyfinish = function
|
|
22483
|
+
var onlegacyfinish = function onlegacyfinish2() {
|
|
22484
22484
|
if (!stream.writable)
|
|
22485
22485
|
onfinish();
|
|
22486
22486
|
};
|
|
22487
22487
|
var writableEnded = stream._writableState && stream._writableState.finished;
|
|
22488
|
-
var onfinish = function
|
|
22488
|
+
var onfinish = function onfinish2() {
|
|
22489
22489
|
writable = false;
|
|
22490
22490
|
writableEnded = true;
|
|
22491
22491
|
if (!readable)
|
|
22492
22492
|
callback.call(stream);
|
|
22493
22493
|
};
|
|
22494
22494
|
var readableEnded = stream._readableState && stream._readableState.endEmitted;
|
|
22495
|
-
var onend = function
|
|
22495
|
+
var onend = function onend2() {
|
|
22496
22496
|
readable = false;
|
|
22497
22497
|
readableEnded = true;
|
|
22498
22498
|
if (!writable)
|
|
22499
22499
|
callback.call(stream);
|
|
22500
22500
|
};
|
|
22501
|
-
var onerror = function
|
|
22501
|
+
var onerror = function onerror2(err) {
|
|
22502
22502
|
callback.call(stream, err);
|
|
22503
22503
|
};
|
|
22504
|
-
var onclose = function
|
|
22504
|
+
var onclose = function onclose2() {
|
|
22505
22505
|
var err;
|
|
22506
22506
|
if (readable && !readableEnded) {
|
|
22507
22507
|
if (!stream._readableState || !stream._readableState.ended)
|
|
@@ -22514,7 +22514,7 @@ var require_end_of_stream = __commonJS((exports, module) => {
|
|
|
22514
22514
|
return callback.call(stream, err);
|
|
22515
22515
|
}
|
|
22516
22516
|
};
|
|
22517
|
-
var onrequest = function
|
|
22517
|
+
var onrequest = function onrequest2() {
|
|
22518
22518
|
stream.req.on("finish", onfinish);
|
|
22519
22519
|
};
|
|
22520
22520
|
if (isRequest(stream)) {
|
|
@@ -22671,7 +22671,7 @@ var require_async_iterator = __commonJS((exports, module) => {
|
|
|
22671
22671
|
});
|
|
22672
22672
|
});
|
|
22673
22673
|
}), _Object$setPrototypeO), AsyncIteratorPrototype);
|
|
22674
|
-
var createReadableStreamAsyncIterator = function
|
|
22674
|
+
var createReadableStreamAsyncIterator = function createReadableStreamAsyncIterator2(stream) {
|
|
22675
22675
|
var _Object$create;
|
|
22676
22676
|
var iterator = Object.create(ReadableStreamAsyncIteratorPrototype, (_Object$create = {}, _defineProperty(_Object$create, kStream, {
|
|
22677
22677
|
value: stream,
|
|
@@ -22860,7 +22860,7 @@ var require__stream_readable = __commonJS((exports, module) => {
|
|
|
22860
22860
|
var Duplex;
|
|
22861
22861
|
Readable.ReadableState = ReadableState;
|
|
22862
22862
|
var EE = __require("events").EventEmitter;
|
|
22863
|
-
var EElistenerCount = function
|
|
22863
|
+
var EElistenerCount = function EElistenerCount2(emitter, type) {
|
|
22864
22864
|
return emitter.listeners(type).length;
|
|
22865
22865
|
};
|
|
22866
22866
|
var Stream = __require("stream");
|
|
@@ -22877,7 +22877,7 @@ var require__stream_readable = __commonJS((exports, module) => {
|
|
|
22877
22877
|
if (debugUtil && debugUtil.debuglog) {
|
|
22878
22878
|
debug = debugUtil.debuglog("stream");
|
|
22879
22879
|
} else {
|
|
22880
|
-
debug = function
|
|
22880
|
+
debug = function debug2() {};
|
|
22881
22881
|
}
|
|
22882
22882
|
var BufferList = require_buffer_list();
|
|
22883
22883
|
var destroyImpl = require_destroy();
|
|
@@ -25426,14 +25426,14 @@ var require_BufferList = __commonJS((exports, module) => {
|
|
|
25426
25426
|
if (srcEnd <= 0) {
|
|
25427
25427
|
return dst || Buffer2.alloc(0);
|
|
25428
25428
|
}
|
|
25429
|
-
const
|
|
25429
|
+
const copy2 = !!dst;
|
|
25430
25430
|
const off = this._offset(srcStart);
|
|
25431
25431
|
const len = srcEnd - srcStart;
|
|
25432
25432
|
let bytes = len;
|
|
25433
|
-
let bufoff =
|
|
25433
|
+
let bufoff = copy2 && dstStart || 0;
|
|
25434
25434
|
let start = off[1];
|
|
25435
25435
|
if (srcStart === 0 && srcEnd === this.length) {
|
|
25436
|
-
if (!
|
|
25436
|
+
if (!copy2) {
|
|
25437
25437
|
return this._bufs.length === 1 ? this._bufs[0] : Buffer2.concat(this._bufs, this.length);
|
|
25438
25438
|
}
|
|
25439
25439
|
for (let i = 0;i < this._bufs.length; i++) {
|
|
@@ -25443,9 +25443,9 @@ var require_BufferList = __commonJS((exports, module) => {
|
|
|
25443
25443
|
return dst;
|
|
25444
25444
|
}
|
|
25445
25445
|
if (bytes <= this._bufs[off[0]].length - start) {
|
|
25446
|
-
return
|
|
25446
|
+
return copy2 ? this._bufs[off[0]].copy(dst, dstStart, start, start + bytes) : this._bufs[off[0]].slice(start, start + bytes);
|
|
25447
25447
|
}
|
|
25448
|
-
if (!
|
|
25448
|
+
if (!copy2) {
|
|
25449
25449
|
dst = Buffer2.allocUnsafe(len);
|
|
25450
25450
|
}
|
|
25451
25451
|
for (let i = off[0];i < this._bufs.length; i++) {
|
|
@@ -25667,7 +25667,7 @@ var require_bl = __commonJS((exports, module) => {
|
|
|
25667
25667
|
}
|
|
25668
25668
|
if (typeof callback === "function") {
|
|
25669
25669
|
this._callback = callback;
|
|
25670
|
-
const piper = function
|
|
25670
|
+
const piper = function piper2(err) {
|
|
25671
25671
|
if (this._callback) {
|
|
25672
25672
|
this._callback(err);
|
|
25673
25673
|
this._callback = null;
|
|
@@ -34730,7 +34730,7 @@ var require_writer2 = __commonJS((exports, module) => {
|
|
|
34730
34730
|
this.tail = this.head;
|
|
34731
34731
|
this.states = null;
|
|
34732
34732
|
}
|
|
34733
|
-
var create = function
|
|
34733
|
+
var create = function create2() {
|
|
34734
34734
|
return util.Buffer ? function create_buffer_setup() {
|
|
34735
34735
|
return (Writer.create = function create_buffer() {
|
|
34736
34736
|
return new BufferWriter;
|
|
@@ -34954,12 +34954,12 @@ var require_reader2 = __commonJS((exports, module) => {
|
|
|
34954
34954
|
if (buffer instanceof Uint8Array || Array.isArray(buffer))
|
|
34955
34955
|
return new Reader(buffer);
|
|
34956
34956
|
throw Error("illegal buffer");
|
|
34957
|
-
} : function
|
|
34957
|
+
} : function create_array2(buffer) {
|
|
34958
34958
|
if (Array.isArray(buffer))
|
|
34959
34959
|
return new Reader(buffer);
|
|
34960
34960
|
throw Error("illegal buffer");
|
|
34961
34961
|
};
|
|
34962
|
-
var create = function
|
|
34962
|
+
var create = function create2() {
|
|
34963
34963
|
return util.Buffer ? function create_buffer_setup(buffer) {
|
|
34964
34964
|
return (Reader.create = function create_buffer(buffer2) {
|
|
34965
34965
|
return util.Buffer.isBuffer(buffer2) ? new BufferReader(buffer2) : create_array(buffer2);
|
|
@@ -35385,10 +35385,10 @@ var require_fetch = __commonJS((exports, module) => {
|
|
|
35385
35385
|
// node_modules/@protobufjs/path/index.js
|
|
35386
35386
|
var require_path = __commonJS((exports) => {
|
|
35387
35387
|
var path = exports;
|
|
35388
|
-
var isAbsolute = path.isAbsolute = function
|
|
35388
|
+
var isAbsolute = path.isAbsolute = function isAbsolute2(path2) {
|
|
35389
35389
|
return /^(?:\/|\w+:)/.test(path2);
|
|
35390
35390
|
};
|
|
35391
|
-
var normalize = path.normalize = function
|
|
35391
|
+
var normalize = path.normalize = function normalize2(path2) {
|
|
35392
35392
|
path2 = path2.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
|
|
35393
35393
|
var parts = path2.split("/"), absolute = isAbsolute(path2), prefix = "";
|
|
35394
35394
|
if (absolute)
|
|
@@ -35553,7 +35553,7 @@ var require_namespace = __commonJS((exports, module) => {
|
|
|
35553
35553
|
object.onRemove(this);
|
|
35554
35554
|
return clearCache(this);
|
|
35555
35555
|
};
|
|
35556
|
-
Namespace.prototype.define = function
|
|
35556
|
+
Namespace.prototype.define = function define2(path, json) {
|
|
35557
35557
|
if (util.isString(path))
|
|
35558
35558
|
path = path.split(".");
|
|
35559
35559
|
else if (!Array.isArray(path))
|
|
@@ -42369,7 +42369,7 @@ var require_src3 = __commonJS((exports) => {
|
|
|
42369
42369
|
|
|
42370
42370
|
// node_modules/@grpc/grpc-js/build/src/channelz.js
|
|
42371
42371
|
var require_channelz = __commonJS((exports) => {
|
|
42372
|
-
var __dirname = "/
|
|
42372
|
+
var __dirname = "/home/runner/work/isol8/isol8/node_modules/@grpc/grpc-js/build/src";
|
|
42373
42373
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
42374
42374
|
exports.registerChannelzSocket = exports.registerChannelzServer = exports.registerChannelzSubchannel = exports.registerChannelzChannel = exports.ChannelzCallTrackerStub = exports.ChannelzCallTracker = exports.ChannelzChildrenTrackerStub = exports.ChannelzChildrenTracker = exports.ChannelzTrace = exports.ChannelzTraceStub = undefined;
|
|
42375
42375
|
exports.unregisterChannelzRef = unregisterChannelzRef;
|
|
@@ -47772,7 +47772,7 @@ var require_duration = __commonJS((exports) => {
|
|
|
47772
47772
|
|
|
47773
47773
|
// node_modules/@grpc/grpc-js/build/src/orca.js
|
|
47774
47774
|
var require_orca = __commonJS((exports) => {
|
|
47775
|
-
var __dirname = "/
|
|
47775
|
+
var __dirname = "/home/runner/work/isol8/isol8/node_modules/@grpc/grpc-js/build/src";
|
|
47776
47776
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
47777
47777
|
exports.OrcaOobMetricsSubchannelWrapper = exports.GRPC_METRICS_HEADER = exports.ServerMetricRecorder = exports.PerRequestMetricRecorder = undefined;
|
|
47778
47778
|
exports.createOrcaClient = createOrcaClient;
|
|
@@ -53161,7 +53161,7 @@ var require_dist = __commonJS((exports) => {
|
|
|
53161
53161
|
|
|
53162
53162
|
// node_modules/dockerode/lib/session.js
|
|
53163
53163
|
var require_session = __commonJS((exports, module) => {
|
|
53164
|
-
var __dirname = "/
|
|
53164
|
+
var __dirname = "/home/runner/work/isol8/isol8/node_modules/dockerode/lib";
|
|
53165
53165
|
var grpc = require_src4();
|
|
53166
53166
|
var protoLoader = require_src5();
|
|
53167
53167
|
var path = __require("path");
|
|
@@ -54387,7 +54387,7 @@ var require_docker = __commonJS((exports, module) => {
|
|
|
54387
54387
|
stream: true,
|
|
54388
54388
|
stdout: true,
|
|
54389
54389
|
stderr: true
|
|
54390
|
-
}, function
|
|
54390
|
+
}, function handler2(err2, stream) {
|
|
54391
54391
|
if (err2)
|
|
54392
54392
|
return callback(err2, null, container);
|
|
54393
54393
|
hub.emit("stream", stream);
|
|
@@ -55734,8 +55734,8 @@ class DockerIsol8 {
|
|
|
55734
55734
|
}
|
|
55735
55735
|
var import_dockerode, SANDBOX_WORKDIR = "/sandbox", MAX_OUTPUT_BYTES, PROXY_PORT = 8118, PROXY_STARTUP_TIMEOUT_MS = 5000, PROXY_POLL_INTERVAL_MS = 100;
|
|
55736
55736
|
var init_docker = __esm(() => {
|
|
55737
|
-
import_dockerode = __toESM(require_docker(), 1);
|
|
55738
55737
|
init_runtime();
|
|
55738
|
+
import_dockerode = __toESM(require_docker(), 1);
|
|
55739
55739
|
MAX_OUTPUT_BYTES = 1024 * 1024;
|
|
55740
55740
|
});
|
|
55741
55741
|
|
|
@@ -61285,4 +61285,4 @@ if (!process.argv.slice(2).length) {
|
|
|
61285
61285
|
}
|
|
61286
61286
|
program2.parse();
|
|
61287
61287
|
|
|
61288
|
-
//# debugId=
|
|
61288
|
+
//# debugId=2D92B31A50EB774E64756E2164756E21
|