codeam-cli 2.39.11 → 2.39.12

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,17 @@ 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.39.11] — 2026-06-13
8
+
9
+ ### Fixed
10
+
11
+ - **cli:** Never let PostHog telemetry crash or spam the CLI session
12
+
13
+ ### Tests
14
+
15
+ - **cli:** Fix Windows-only watcher path assertion (cross-platform path.join)
16
+ - **cli:** Import only join from path in the watcher test
17
+
7
18
  ## [2.39.10] — 2026-06-13
8
19
 
9
20
  ### 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.39.11",
501
+ version: "2.39.12",
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",
@@ -5900,7 +5900,7 @@ function readAnonId() {
5900
5900
  }
5901
5901
  function superProperties() {
5902
5902
  return {
5903
- cliVersion: true ? "2.39.11" : "0.0.0-dev",
5903
+ cliVersion: true ? "2.39.12" : "0.0.0-dev",
5904
5904
  nodeVersion: process.version,
5905
5905
  platform: process.platform,
5906
5906
  arch: process.arch,
@@ -26992,7 +26992,7 @@ function checkChokidar() {
26992
26992
  }
26993
26993
  async function doctor(args2 = []) {
26994
26994
  const json = args2.includes("--json");
26995
- const cliVersion = true ? "2.39.11" : "0.0.0-dev";
26995
+ const cliVersion = true ? "2.39.12" : "0.0.0-dev";
26996
26996
  const apiBase = resolveApiBaseUrl();
26997
26997
  const diagnosticId = (0, import_node_crypto8.randomUUID)();
26998
26998
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -27191,7 +27191,7 @@ async function completion(args2) {
27191
27191
  // src/commands/version.ts
27192
27192
  var import_picocolors13 = __toESM(require("picocolors"));
27193
27193
  function version2() {
27194
- const v = true ? "2.39.11" : "unknown";
27194
+ const v = true ? "2.39.12" : "unknown";
27195
27195
  console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
27196
27196
  }
27197
27197
 
@@ -27477,7 +27477,7 @@ function checkForUpdates() {
27477
27477
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
27478
27478
  if (process.env.CI) return;
27479
27479
  if (!process.stdout.isTTY) return;
27480
- const current = true ? "2.39.11" : null;
27480
+ const current = true ? "2.39.12" : null;
27481
27481
  if (!current) return;
27482
27482
  const cache = readCache();
27483
27483
  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.39.11",
3
+ "version": "2.39.12",
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",