codeam-cli 2.32.7 → 2.32.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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ All notable changes to `codeam-cli` are documented here.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.32.7] — 2026-06-07
8
+
9
+ ### Fixed
10
+
11
+ - **cli:** Use dns.lookup (OS resolver) as primary probe for cloudflared tunnel readiness
12
+ - **cli:** Keep Gemini snapshot valid as long as refresh_token is present
13
+
7
14
  ## [2.32.6] — 2026-06-07
8
15
 
9
16
  ### Fixed
package/dist/index.js CHANGED
@@ -498,7 +498,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
498
498
  // package.json
499
499
  var package_default = {
500
500
  name: "codeam-cli",
501
- version: "2.32.7",
501
+ version: "2.32.8",
502
502
  description: "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device \u2014 async. The terminal companion for CodeAgent Mobile.",
503
503
  type: "commonjs",
504
504
  main: "dist/index.js",
@@ -5869,7 +5869,7 @@ function readAnonId() {
5869
5869
  }
5870
5870
  function superProperties() {
5871
5871
  return {
5872
- cliVersion: true ? "2.32.7" : "0.0.0-dev",
5872
+ cliVersion: true ? "2.32.8" : "0.0.0-dev",
5873
5873
  nodeVersion: process.version,
5874
5874
  platform: process.platform,
5875
5875
  arch: process.arch,
@@ -17743,6 +17743,9 @@ var requestPreviewDetectH = (ctx) => {
17743
17743
  });
17744
17744
  })();
17745
17745
  };
17746
+ function compileReadyPattern(pattern) {
17747
+ return new RegExp(pattern, "i");
17748
+ }
17746
17749
  function normalizeDetectionForSpawn(detection, cwd) {
17747
17750
  if (detection.command !== "npx") return detection;
17748
17751
  const args2 = detection.args ?? [];
@@ -17849,7 +17852,7 @@ var previewStartH = (ctx, _cmd, parsed) => {
17849
17852
  emitProgress("WAITING_FOR_READY", detection.ready_pattern);
17850
17853
  let readyMatched = false;
17851
17854
  let expoUrl = null;
17852
- const readyRe = new RegExp(detection.ready_pattern);
17855
+ const readyRe = compileReadyPattern(detection.ready_pattern);
17853
17856
  const READY_BUFFER_MAX = 32768;
17854
17857
  let readyBuffer = "";
17855
17858
  const onChunk = (chunk) => {
@@ -24944,7 +24947,7 @@ function checkChokidar() {
24944
24947
  }
24945
24948
  async function doctor(args2 = []) {
24946
24949
  const json = args2.includes("--json");
24947
- const cliVersion = true ? "2.32.7" : "0.0.0-dev";
24950
+ const cliVersion = true ? "2.32.8" : "0.0.0-dev";
24948
24951
  const apiBase = resolveApiBaseUrl();
24949
24952
  const diagnosticId = (0, import_node_crypto8.randomUUID)();
24950
24953
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -25143,7 +25146,7 @@ async function completion(args2) {
25143
25146
  // src/commands/version.ts
25144
25147
  var import_picocolors13 = __toESM(require("picocolors"));
25145
25148
  function version2() {
25146
- const v = true ? "2.32.7" : "unknown";
25149
+ const v = true ? "2.32.8" : "unknown";
25147
25150
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
25148
25151
  }
25149
25152
 
@@ -25429,7 +25432,7 @@ function checkForUpdates() {
25429
25432
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
25430
25433
  if (process.env.CI) return;
25431
25434
  if (!process.stdout.isTTY) return;
25432
- const current = true ? "2.32.7" : null;
25435
+ const current = true ? "2.32.8" : null;
25433
25436
  if (!current) return;
25434
25437
  const cache = readCache();
25435
25438
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.32.7",
3
+ "version": "2.32.8",
4
4
  "description": "Workflow-continuity bridge for AI coding agents. Wrap Claude Code or Codex in a PTY and supervise, approve, and redirect the session from any device — async. The terminal companion for CodeAgent Mobile.",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",