@vm0/runner 3.15.0 → 3.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.
Files changed (2) hide show
  1. package/index.js +3 -3
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -2195,7 +2195,7 @@ var VsockClient = class {
2195
2195
  *
2196
2196
  * Flow:
2197
2197
  * 1. Host creates UDS server at "{vsockPath}_{port}"
2198
- * 2. Guest boots and vsock-agent connects to CID=2, port
2198
+ * 2. Guest boots and vsock-guest connects to CID=2, port
2199
2199
  * 3. Firecracker forwards connection to Host's UDS
2200
2200
  * 4. Host accepts, receives "ready", sends ping/pong
2201
2201
  */
@@ -2443,7 +2443,7 @@ var VsockClient = class {
2443
2443
 
2444
2444
  // src/lib/scripts/index.ts
2445
2445
  var VM_BINARY_PATHS = {
2446
- /** PID 1 init process - sets up overlayfs and spawns vsock-agent */
2446
+ /** PID 1 init process - sets up overlayfs and spawns vsock-guest */
2447
2447
  vmInit: "/sbin/vm-init",
2448
2448
  /** Storage download - parallel downloads with streaming extraction */
2449
2449
  vmDownload: "/usr/local/bin/vm-download"
@@ -4646,7 +4646,7 @@ var snapshotCommand = new Command5("snapshot").description("Generate a Firecrack
4646
4646
  );
4647
4647
 
4648
4648
  // src/index.ts
4649
- var version = true ? "3.15.0" : "0.1.0";
4649
+ var version = true ? "3.16.0" : "0.1.0";
4650
4650
  program.name("vm0-runner").version(version).description("Self-hosted runner for VM0 agents");
4651
4651
  program.addCommand(startCommand);
4652
4652
  program.addCommand(doctorCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/runner",
3
- "version": "3.15.0",
3
+ "version": "3.16.0",
4
4
  "description": "Self-hosted runner for VM0 agents",
5
5
  "repository": {
6
6
  "type": "git",