@google/gemini-cli 0.33.0-preview.13 → 0.33.0-preview.14

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/bundle/gemini.js CHANGED
@@ -196358,8 +196358,8 @@ var GIT_COMMIT_INFO, CLI_VERSION;
196358
196358
  var init_git_commit = __esm({
196359
196359
  "packages/core/dist/src/generated/git-commit.js"() {
196360
196360
  "use strict";
196361
- GIT_COMMIT_INFO = "ca0db7ec4";
196362
- CLI_VERSION = "0.33.0-preview.13";
196361
+ GIT_COMMIT_INFO = "0d27afcc7";
196362
+ CLI_VERSION = "0.33.0-preview.14";
196363
196363
  }
196364
196364
  });
196365
196365
 
@@ -292827,7 +292827,7 @@ function getVersion() {
292827
292827
  }
292828
292828
  versionPromise = (async () => {
292829
292829
  const pkgJson = await getPackageJson(__dirname3);
292830
- return "0.33.0-preview.13";
292830
+ return "0.33.0-preview.14";
292831
292831
  })();
292832
292832
  return versionPromise;
292833
292833
  }
@@ -412253,6 +412253,12 @@ var init_policy_engine = __esm({
412253
412253
  }
412254
412254
  }
412255
412255
  if (decision === void 0) {
412256
+ if (this.approvalMode === ApprovalMode.YOLO) {
412257
+ debugLogger.debug(`[PolicyEngine.check] NO MATCH in YOLO mode - using ALLOW`);
412258
+ return {
412259
+ decision: PolicyDecision.ALLOW
412260
+ };
412261
+ }
412256
412262
  debugLogger.debug(`[PolicyEngine.check] NO MATCH - using default decision: ${this.defaultDecision}`);
412257
412263
  if (toolName && SHELL_TOOL_NAMES.includes(toolName)) {
412258
412264
  const shellResult = await this.checkShellCommand(toolName, command2, this.defaultDecision, serverName, shellDirPath, void 0, void 0, toolAnnotations);
@@ -515121,7 +515127,7 @@ var WarningMessage = ({ text }) => {
515121
515127
  };
515122
515128
 
515123
515129
  // packages/cli/src/generated/git-commit.ts
515124
- var GIT_COMMIT_INFO2 = "8948a9075";
515130
+ var GIT_COMMIT_INFO2 = "0d4d80eb5";
515125
515131
 
515126
515132
  // packages/cli/src/ui/components/AboutBox.tsx
515127
515133
  init_dist8();
@@ -563533,7 +563539,7 @@ async function loadSandboxConfig(settings, argv) {
563533
563539
  const sandboxOption = argv.sandbox ?? settings.tools?.sandbox;
563534
563540
  const command2 = getSandboxCommand(sandboxOption);
563535
563541
  const packageJson2 = await getPackageJson(__dirname13);
563536
- const image2 = process.env["GEMINI_SANDBOX_IMAGE"] ?? "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.33.0-preview.13" ?? packageJson2?.config?.sandboxImageUri;
563542
+ const image2 = process.env["GEMINI_SANDBOX_IMAGE"] ?? "us-docker.pkg.dev/gemini-code-dev/gemini-cli/sandbox:0.33.0-preview.14" ?? packageJson2?.config?.sandboxImageUri;
563537
563543
  return command2 && image2 ? { command: command2, image: image2 } : void 0;
563538
563544
  }
563539
563545
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/gemini-cli-devtools",
3
- "version": "0.33.0-preview.13",
3
+ "version": "0.33.0-preview.14",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@google/gemini-cli",
3
- "version": "0.33.0-preview.13",
3
+ "version": "0.33.0-preview.14",
4
4
  "description": "Gemini CLI",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {