@google/gemini-cli-a2a-server 0.29.0-preview.0 → 0.29.0-preview.1

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.
@@ -328948,7 +328948,7 @@ var __filename = fileURLToPath5(import.meta.url);
328948
328948
  var __dirname3 = path22.dirname(__filename);
328949
328949
  async function getVersion() {
328950
328950
  const pkgJson = await getPackageJson(__dirname3);
328951
- return "0.29.0-preview.0";
328951
+ return "0.29.0-preview.1";
328952
328952
  }
328953
328953
 
328954
328954
  // packages/core/dist/src/code_assist/experiments/client_metadata.js
@@ -332493,8 +332493,8 @@ var Float64Vector = import_vector.default.Float64Vector;
332493
332493
  var PointerVector = import_vector.default.PointerVector;
332494
332494
 
332495
332495
  // packages/core/dist/src/generated/git-commit.js
332496
- var GIT_COMMIT_INFO = "a2174751d";
332497
- var CLI_VERSION = "0.29.0-preview.0";
332496
+ var GIT_COMMIT_INFO = "31a7a8187";
332497
+ var CLI_VERSION = "0.29.0-preview.1";
332498
332498
 
332499
332499
  // packages/core/dist/src/ide/detect-ide.js
332500
332500
  var IDE_DEFINITIONS = {
@@ -376453,10 +376453,7 @@ var NEVER_ALLOWED_ENVIRONMENT_VARIABLES = /* @__PURE__ */ new Set([
376453
376453
  "DATABASE_URL",
376454
376454
  "GOOGLE_CLOUD_PROJECT",
376455
376455
  "GOOGLE_CLOUD_ACCOUNT",
376456
- "FIREBASE_PROJECT_ID",
376457
- "GEMINI_API_KEY",
376458
- "GOOGLE_API_KEY",
376459
- "GOOGLE_APPLICATION_CREDENTIALS"
376456
+ "FIREBASE_PROJECT_ID"
376460
376457
  ]);
376461
376458
  var NEVER_ALLOWED_NAME_PATTERNS = [
376462
376459
  /TOKEN/i,
@@ -408295,18 +408292,10 @@ async function createTransport(mcpServerName, mcpServerConfig, debugMode, saniti
408295
408292
  command: mcpServerConfig.command,
408296
408293
  args: mcpServerConfig.args || [],
408297
408294
  // eslint-disable-next-line @typescript-eslint/no-unsafe-type-assertion
408298
- env: sanitizeEnvironment({
408299
- ...process.env,
408300
- ...getExtensionEnvironment(mcpServerConfig.extension),
408295
+ env: {
408296
+ ...sanitizeEnvironment(process.env, sanitizationConfig),
408301
408297
  ...mcpServerConfig.env || {}
408302
- }, {
408303
- ...sanitizationConfig,
408304
- allowedEnvironmentVariables: [
408305
- ...sanitizationConfig.allowedEnvironmentVariables ?? [],
408306
- ...mcpServerConfig.extension?.resolvedSettings?.map((s3) => s3.envVar) ?? []
408307
- ],
408308
- enableEnvironmentVariableRedaction: true
408309
- }),
408298
+ },
408310
408299
  cwd: mcpServerConfig.cwd,
408311
408300
  stderr: "pipe"
408312
408301
  });
@@ -408340,17 +408329,6 @@ function isEnabled(funcDecl, mcpServerName, mcpServerConfig) {
408340
408329
  }
408341
408330
  return !includeTools || includeTools.some((tool) => tool === funcDecl.name || tool.startsWith(`${funcDecl.name}(`));
408342
408331
  }
408343
- function getExtensionEnvironment(extension) {
408344
- const env2 = {};
408345
- if (extension?.resolvedSettings) {
408346
- for (const setting of extension.resolvedSettings) {
408347
- if (setting.value) {
408348
- env2[setting.envVar] = setting.value;
408349
- }
408350
- }
408351
- }
408352
- return env2;
408353
- }
408354
408332
 
408355
408333
  // packages/core/dist/src/tools/mcp-client-manager.js
408356
408334
  init_events();