@google/gemini-cli-a2a-server 0.28.0-preview.0 → 0.28.0-preview.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.
@@ -122543,13 +122543,13 @@ var require_path = __commonJS({
122543
122543
  "node_modules/@protobufjs/path/index.js"(exports2) {
122544
122544
  "use strict";
122545
122545
  var path82 = exports2;
122546
- var isAbsolute6 = (
122546
+ var isAbsolute5 = (
122547
122547
  /**
122548
122548
  * Tests if the specified path is absolute.
122549
122549
  * @param {string} path Path to test
122550
122550
  * @returns {boolean} `true` if path is absolute
122551
122551
  */
122552
- path82.isAbsolute = function isAbsolute7(path83) {
122552
+ path82.isAbsolute = function isAbsolute6(path83) {
122553
122553
  return /^(?:\/|\w+:)/.test(path83);
122554
122554
  }
122555
122555
  );
@@ -122561,7 +122561,7 @@ var require_path = __commonJS({
122561
122561
  */
122562
122562
  path82.normalize = function normalize6(path83) {
122563
122563
  path83 = path83.replace(/\\/g, "/").replace(/\/{2,}/g, "/");
122564
- var parts2 = path83.split("/"), absolute = isAbsolute6(path83), prefix = "";
122564
+ var parts2 = path83.split("/"), absolute = isAbsolute5(path83), prefix = "";
122565
122565
  if (absolute)
122566
122566
  prefix = parts2.shift() + "/";
122567
122567
  for (var i4 = 0; i4 < parts2.length; ) {
@@ -122583,7 +122583,7 @@ var require_path = __commonJS({
122583
122583
  path82.resolve = function resolve15(originPath, includePath, alreadyNormalized) {
122584
122584
  if (!alreadyNormalized)
122585
122585
  includePath = normalize5(includePath);
122586
- if (isAbsolute6(includePath))
122586
+ if (isAbsolute5(includePath))
122587
122587
  return includePath;
122588
122588
  if (!alreadyNormalized)
122589
122589
  originPath = normalize5(originPath);
@@ -327581,7 +327581,7 @@ var __filename = fileURLToPath5(import.meta.url);
327581
327581
  var __dirname3 = path20.dirname(__filename);
327582
327582
  async function getVersion() {
327583
327583
  const pkgJson = await getPackageJson(__dirname3);
327584
- return "0.28.0-preview.0";
327584
+ return "0.28.0-preview.2";
327585
327585
  }
327586
327586
 
327587
327587
  // packages/core/dist/src/code_assist/experiments/client_metadata.js
@@ -331005,8 +331005,8 @@ var Float64Vector = import_vector.default.Float64Vector;
331005
331005
  var PointerVector = import_vector.default.PointerVector;
331006
331006
 
331007
331007
  // packages/core/dist/src/generated/git-commit.js
331008
- var GIT_COMMIT_INFO = "71f46f116";
331009
- var CLI_VERSION = "0.28.0-preview.0";
331008
+ var GIT_COMMIT_INFO = "45866d8e0";
331009
+ var CLI_VERSION = "0.28.0-preview.2";
331010
331010
 
331011
331011
  // packages/core/dist/src/ide/detect-ide.js
331012
331012
  var IDE_DEFINITIONS = {
@@ -406681,9 +406681,6 @@ var Config = class {
406681
406681
  * @returns true if the path is allowed, false otherwise.
406682
406682
  */
406683
406683
  isPathAllowed(absolutePath) {
406684
- if (this.interactive && path72.isAbsolute(absolutePath)) {
406685
- return true;
406686
- }
406687
406684
  const realpath3 = (p) => {
406688
406685
  let resolved;
406689
406686
  try {