codeam-cli 2.60.40 → 2.60.41
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 +6 -0
- package/dist/index.js +15 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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.40] — 2026-07-10
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Include changed files (git numstat) in the CodeRabbit review result
|
|
12
|
+
|
|
7
13
|
## [2.60.39] — 2026-07-10
|
|
8
14
|
|
|
9
15
|
### 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.41" : "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.41",
|
|
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.41" ? { ideVersion: "2.60.41" } : {}
|
|
6967
6967
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
6968
6968
|
}
|
|
6969
6969
|
/**
|
|
@@ -15857,6 +15857,13 @@ async function configureCoderabbit(input, deps = {}) {
|
|
|
15857
15857
|
}
|
|
15858
15858
|
if (!deps.runReview) return { ...res, error: "No reviewer available" };
|
|
15859
15859
|
const out2 = await deps.runReview(input.review ?? {});
|
|
15860
|
+
if (out2.exitCode === 124) {
|
|
15861
|
+
return {
|
|
15862
|
+
...res,
|
|
15863
|
+
loggedIn: true,
|
|
15864
|
+
error: "CodeRabbit's review service didn't respond in time \u2014 this is usually a temporary CodeRabbit outage. Please try again."
|
|
15865
|
+
};
|
|
15866
|
+
}
|
|
15860
15867
|
const files = collectChangedFiles(process.cwd());
|
|
15861
15868
|
return {
|
|
15862
15869
|
...res,
|
|
@@ -17414,7 +17421,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17414
17421
|
if (process.env.NODE_ENV === "test") return;
|
|
17415
17422
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17416
17423
|
if (process.env.CI) return;
|
|
17417
|
-
const current = true ? "2.60.
|
|
17424
|
+
const current = true ? "2.60.41" : null;
|
|
17418
17425
|
if (!current) return;
|
|
17419
17426
|
const cache = readCache();
|
|
17420
17427
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17431,7 +17438,7 @@ function checkForUpdates() {
|
|
|
17431
17438
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17432
17439
|
if (process.env.CI) return;
|
|
17433
17440
|
if (!process.stdout.isTTY) return;
|
|
17434
|
-
const current = true ? "2.60.
|
|
17441
|
+
const current = true ? "2.60.41" : null;
|
|
17435
17442
|
if (!current) return;
|
|
17436
17443
|
const cache = readCache();
|
|
17437
17444
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17451,7 +17458,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17451
17458
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17452
17459
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17453
17460
|
function currentCliVersion() {
|
|
17454
|
-
return true ? "2.60.
|
|
17461
|
+
return true ? "2.60.41" : null;
|
|
17455
17462
|
}
|
|
17456
17463
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17457
17464
|
return new Promise((resolve7) => {
|
|
@@ -34511,7 +34518,7 @@ function checkChokidar() {
|
|
|
34511
34518
|
}
|
|
34512
34519
|
async function doctor(args2 = []) {
|
|
34513
34520
|
const json = args2.includes("--json");
|
|
34514
|
-
const cliVersion = true ? "2.60.
|
|
34521
|
+
const cliVersion = true ? "2.60.41" : "0.0.0-dev";
|
|
34515
34522
|
const apiBase2 = resolveApiBaseUrl();
|
|
34516
34523
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
34517
34524
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -34710,7 +34717,7 @@ async function completion(args2) {
|
|
|
34710
34717
|
// src/commands/version.ts
|
|
34711
34718
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
34712
34719
|
function version2() {
|
|
34713
|
-
const v = true ? "2.60.
|
|
34720
|
+
const v = true ? "2.60.41" : "unknown";
|
|
34714
34721
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
34715
34722
|
}
|
|
34716
34723
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.41",
|
|
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",
|