@vm0/cli 4.36.0 → 4.37.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 +6 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -13598,7 +13598,9 @@ var executionContextSchema = external_exports.object({
13598
13598
  environment: external_exports.record(external_exports.string(), external_exports.string()).nullable(),
13599
13599
  resumeSession: resumeSessionSchema.nullable(),
13600
13600
  secretValues: external_exports.array(external_exports.string()).nullable(),
13601
- cliAgentType: external_exports.string()
13601
+ cliAgentType: external_exports.string(),
13602
+ // Network security mode flag
13603
+ experimentalNetworkSecurity: external_exports.boolean().optional()
13602
13604
  });
13603
13605
  var runnersJobClaimContract = c10.router({
13604
13606
  claim: {
@@ -17692,7 +17694,7 @@ async function autoPullArtifact(runOutput, artifactDir) {
17692
17694
  }
17693
17695
  var cookCmd = new Command17().name("cook").description("One-click agent preparation and execution from vm0.yaml");
17694
17696
  cookCmd.argument("[prompt]", "Prompt for the agent").option("-y, --yes", "Skip confirmation prompts").action(async (prompt, options) => {
17695
- const shouldExit = await checkAndUpgrade("4.36.0", prompt);
17697
+ const shouldExit = await checkAndUpgrade("4.37.0", prompt);
17696
17698
  if (shouldExit) {
17697
17699
  process.exit(0);
17698
17700
  }
@@ -18190,7 +18192,7 @@ async function showNetworkLogs(runId, options) {
18190
18192
  if (response.networkLogs.length === 0) {
18191
18193
  console.log(
18192
18194
  chalk22.yellow(
18193
- "No network logs found for this run. Network logs are only captured when beta_network_security is enabled."
18195
+ "No network logs found for this run. Network logs are only captured when experimental_network_security is enabled on an experimental_runner."
18194
18196
  )
18195
18197
  );
18196
18198
  return;
@@ -18932,7 +18934,7 @@ var setupGithubCommand = new Command23().name("setup-github").description("Initi
18932
18934
 
18933
18935
  // src/index.ts
18934
18936
  var program = new Command24();
18935
- program.name("vm0").description("VM0 CLI - A modern build tool").version("4.36.0");
18937
+ program.name("vm0").description("VM0 CLI - A modern build tool").version("4.37.0");
18936
18938
  program.command("info").description("Display environment information").action(async () => {
18937
18939
  console.log(chalk27.bold("System Information:"));
18938
18940
  console.log(`Node Version: ${process.version}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vm0/cli",
3
- "version": "4.36.0",
3
+ "version": "4.37.0",
4
4
  "description": "CLI application",
5
5
  "repository": {
6
6
  "type": "git",