codeam-cli 2.60.52 → 2.60.53
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 +11 -0
- package/dist/index.js +8 -8
- package/package.json +1 -1
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.60.52] — 2026-07-12
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Rebrand Jira integration to Atlassian (Jira + Confluence) — display + Confluence scopes, id kept
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **cli:** Swallow session/load history replay during kimi Session-closed recovery (no prior-turn text prepended)
|
|
16
|
+
- **cli:** Wire load-replay swallow into the baton AcpClient too (kimi recovery)
|
|
17
|
+
|
|
7
18
|
## [2.60.51] — 2026-07-12
|
|
8
19
|
|
|
9
20
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -5747,7 +5747,7 @@ function readAnonId() {
|
|
|
5747
5747
|
}
|
|
5748
5748
|
function superProperties() {
|
|
5749
5749
|
return {
|
|
5750
|
-
cliVersion: true ? "2.60.
|
|
5750
|
+
cliVersion: true ? "2.60.53" : "0.0.0-dev",
|
|
5751
5751
|
nodeVersion: process.version,
|
|
5752
5752
|
platform: process.platform,
|
|
5753
5753
|
arch: process.arch,
|
|
@@ -5928,7 +5928,7 @@ var os4 = __toESM(require("os"));
|
|
|
5928
5928
|
// package.json
|
|
5929
5929
|
var package_default = {
|
|
5930
5930
|
name: "codeam-cli",
|
|
5931
|
-
version: "2.60.
|
|
5931
|
+
version: "2.60.53",
|
|
5932
5932
|
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.",
|
|
5933
5933
|
type: "commonjs",
|
|
5934
5934
|
main: "dist/index.js",
|
|
@@ -7037,7 +7037,7 @@ var CommandRelayService = class {
|
|
|
7037
7037
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7038
7038
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7039
7039
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7040
|
-
..."2.60.
|
|
7040
|
+
..."2.60.53" ? { ideVersion: "2.60.53" } : {}
|
|
7041
7041
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7042
7042
|
}
|
|
7043
7043
|
/**
|
|
@@ -17606,7 +17606,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17606
17606
|
if (process.env.NODE_ENV === "test") return;
|
|
17607
17607
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17608
17608
|
if (process.env.CI) return;
|
|
17609
|
-
const current = true ? "2.60.
|
|
17609
|
+
const current = true ? "2.60.53" : null;
|
|
17610
17610
|
if (!current) return;
|
|
17611
17611
|
const cache = readCache();
|
|
17612
17612
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17623,7 +17623,7 @@ function checkForUpdates() {
|
|
|
17623
17623
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17624
17624
|
if (process.env.CI) return;
|
|
17625
17625
|
if (!process.stdout.isTTY) return;
|
|
17626
|
-
const current = true ? "2.60.
|
|
17626
|
+
const current = true ? "2.60.53" : null;
|
|
17627
17627
|
if (!current) return;
|
|
17628
17628
|
const cache = readCache();
|
|
17629
17629
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17643,7 +17643,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17643
17643
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17644
17644
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17645
17645
|
function currentCliVersion() {
|
|
17646
|
-
return true ? "2.60.
|
|
17646
|
+
return true ? "2.60.53" : null;
|
|
17647
17647
|
}
|
|
17648
17648
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17649
17649
|
return new Promise((resolve7) => {
|
|
@@ -34971,7 +34971,7 @@ function checkChokidar() {
|
|
|
34971
34971
|
}
|
|
34972
34972
|
async function doctor(args2 = []) {
|
|
34973
34973
|
const json = args2.includes("--json");
|
|
34974
|
-
const cliVersion = true ? "2.60.
|
|
34974
|
+
const cliVersion = true ? "2.60.53" : "0.0.0-dev";
|
|
34975
34975
|
const apiBase2 = resolveApiBaseUrl();
|
|
34976
34976
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
34977
34977
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -35448,7 +35448,7 @@ async function mcpRun(args2) {
|
|
|
35448
35448
|
// src/commands/version.ts
|
|
35449
35449
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
35450
35450
|
function version2() {
|
|
35451
|
-
const v = true ? "2.60.
|
|
35451
|
+
const v = true ? "2.60.53" : "unknown";
|
|
35452
35452
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
35453
35453
|
}
|
|
35454
35454
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.53",
|
|
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",
|