@google/gemini-cli-a2a-server 0.33.0-preview.6 → 0.33.0-preview.8

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.
@@ -106758,7 +106758,12 @@ function resolveToRealPath(pathStr) {
106758
106758
  }
106759
106759
  return robustRealpath(path11.resolve(resolvedPath));
106760
106760
  }
106761
- function robustRealpath(p) {
106761
+ function robustRealpath(p, visited = /* @__PURE__ */ new Set()) {
106762
+ const key = process.platform === "win32" ? p.toLowerCase() : p;
106763
+ if (visited.has(key)) {
106764
+ throw new Error(`Infinite recursion detected in robustRealpath: ${p}`);
106765
+ }
106766
+ visited.add(key);
106762
106767
  try {
106763
106768
  return fs20.realpathSync(p);
106764
106769
  } catch (e3) {
@@ -106768,14 +106773,17 @@ function robustRealpath(p) {
106768
106773
  if (stat4.isSymbolicLink()) {
106769
106774
  const target = fs20.readlinkSync(p);
106770
106775
  const resolvedTarget = path11.resolve(path11.dirname(p), target);
106771
- return robustRealpath(resolvedTarget);
106776
+ return robustRealpath(resolvedTarget, visited);
106777
+ }
106778
+ } catch (lstatError) {
106779
+ if (!(lstatError && typeof lstatError === "object" && "code" in lstatError && lstatError.code === "ENOENT")) {
106780
+ throw lstatError;
106772
106781
  }
106773
- } catch {
106774
106782
  }
106775
106783
  const parent = path11.dirname(p);
106776
106784
  if (parent === p)
106777
106785
  return p;
106778
- return path11.join(robustRealpath(parent), path11.basename(p));
106786
+ return path11.join(robustRealpath(parent, visited), path11.basename(p));
106779
106787
  }
106780
106788
  throw e3;
106781
106789
  }
@@ -214228,8 +214236,8 @@ var GIT_COMMIT_INFO, CLI_VERSION;
214228
214236
  var init_git_commit = __esm({
214229
214237
  "packages/core/dist/src/generated/git-commit.js"() {
214230
214238
  "use strict";
214231
- GIT_COMMIT_INFO = "9912ea868";
214232
- CLI_VERSION = "0.33.0-preview.6";
214239
+ GIT_COMMIT_INFO = "302b48a0b";
214240
+ CLI_VERSION = "0.33.0-preview.8";
214233
214241
  }
214234
214242
  });
214235
214243
 
@@ -291487,7 +291495,7 @@ function getVersion() {
291487
291495
  }
291488
291496
  versionPromise = (async () => {
291489
291497
  const pkgJson = await getPackageJson(__dirname3);
291490
- return "0.33.0-preview.6";
291498
+ return "0.33.0-preview.8";
291491
291499
  })();
291492
291500
  return versionPromise;
291493
291501
  }