codeam-cli 2.60.38 → 2.60.39
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 +7 -0
- package/dist/index.js +9 -8
- package/package.json +1 -1
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.60.38] — 2026-07-10
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** Time-bound CodeRabbit one-shot so a hung review can't wedge the relay
|
|
12
|
+
- **cli:** Parse real CodeRabbit --agent findings; never dump raw NDJSON
|
|
13
|
+
|
|
7
14
|
## [2.60.37] — 2026-07-10
|
|
8
15
|
|
|
9
16
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -5689,7 +5689,7 @@ function readAnonId() {
|
|
|
5689
5689
|
}
|
|
5690
5690
|
function superProperties() {
|
|
5691
5691
|
return {
|
|
5692
|
-
cliVersion: true ? "2.60.
|
|
5692
|
+
cliVersion: true ? "2.60.39" : "0.0.0-dev",
|
|
5693
5693
|
nodeVersion: process.version,
|
|
5694
5694
|
platform: process.platform,
|
|
5695
5695
|
arch: process.arch,
|
|
@@ -5870,7 +5870,7 @@ var os4 = __toESM(require("os"));
|
|
|
5870
5870
|
// package.json
|
|
5871
5871
|
var package_default = {
|
|
5872
5872
|
name: "codeam-cli",
|
|
5873
|
-
version: "2.60.
|
|
5873
|
+
version: "2.60.39",
|
|
5874
5874
|
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.",
|
|
5875
5875
|
type: "commonjs",
|
|
5876
5876
|
main: "dist/index.js",
|
|
@@ -6963,7 +6963,7 @@ var CommandRelayService = class {
|
|
|
6963
6963
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
6964
6964
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
6965
6965
|
// pair/reconnect). Older backends ignore the extra field.
|
|
6966
|
-
..."2.60.
|
|
6966
|
+
..."2.60.39" ? { ideVersion: "2.60.39" } : {}
|
|
6967
6967
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
6968
6968
|
}
|
|
6969
6969
|
/**
|
|
@@ -15774,6 +15774,7 @@ async function configureCoderabbit(input, deps = {}) {
|
|
|
15774
15774
|
if (input.action === "link_oauth") {
|
|
15775
15775
|
const res2 = base();
|
|
15776
15776
|
if (!installed) {
|
|
15777
|
+
deps.onEvent?.({ kind: "installing" });
|
|
15777
15778
|
const ok = await ensureInstalled(os50);
|
|
15778
15779
|
res2.installed = ok;
|
|
15779
15780
|
if (!ok) return { ...res2, error: "CodeRabbit CLI could not be installed" };
|
|
@@ -17368,7 +17369,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17368
17369
|
if (process.env.NODE_ENV === "test") return;
|
|
17369
17370
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17370
17371
|
if (process.env.CI) return;
|
|
17371
|
-
const current = true ? "2.60.
|
|
17372
|
+
const current = true ? "2.60.39" : null;
|
|
17372
17373
|
if (!current) return;
|
|
17373
17374
|
const cache = readCache();
|
|
17374
17375
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17385,7 +17386,7 @@ function checkForUpdates() {
|
|
|
17385
17386
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17386
17387
|
if (process.env.CI) return;
|
|
17387
17388
|
if (!process.stdout.isTTY) return;
|
|
17388
|
-
const current = true ? "2.60.
|
|
17389
|
+
const current = true ? "2.60.39" : null;
|
|
17389
17390
|
if (!current) return;
|
|
17390
17391
|
const cache = readCache();
|
|
17391
17392
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17405,7 +17406,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17405
17406
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17406
17407
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17407
17408
|
function currentCliVersion() {
|
|
17408
|
-
return true ? "2.60.
|
|
17409
|
+
return true ? "2.60.39" : null;
|
|
17409
17410
|
}
|
|
17410
17411
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17411
17412
|
return new Promise((resolve7) => {
|
|
@@ -34465,7 +34466,7 @@ function checkChokidar() {
|
|
|
34465
34466
|
}
|
|
34466
34467
|
async function doctor(args2 = []) {
|
|
34467
34468
|
const json = args2.includes("--json");
|
|
34468
|
-
const cliVersion = true ? "2.60.
|
|
34469
|
+
const cliVersion = true ? "2.60.39" : "0.0.0-dev";
|
|
34469
34470
|
const apiBase2 = resolveApiBaseUrl();
|
|
34470
34471
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
34471
34472
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -34664,7 +34665,7 @@ async function completion(args2) {
|
|
|
34664
34665
|
// src/commands/version.ts
|
|
34665
34666
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
34666
34667
|
function version2() {
|
|
34667
|
-
const v = true ? "2.60.
|
|
34668
|
+
const v = true ? "2.60.39" : "unknown";
|
|
34668
34669
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
34669
34670
|
}
|
|
34670
34671
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.39",
|
|
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",
|