codeam-cli 2.60.47 → 2.60.48
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 +19 -0
- package/dist/index.js +8 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,25 @@ 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.47] — 2026-07-11
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Integrations manifest store + broker token client
|
|
12
|
+
- **cli:** Codeam mcp-run — token-refreshing stdio shim for integration MCP servers
|
|
13
|
+
- **cli:** Inject integration MCP servers into ACP sessions from the deploy manifest
|
|
14
|
+
- **shared:** StaticEnv on IntegrationMcpDelivery + pin mcp-atlassian==0.22.1 (jira needs ATLASSIAN_OAUTH_ENABLE)
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **cli:** Truncate broker error detail to 200 chars in thrown message
|
|
19
|
+
- **cli:** Mcp-run proxy — stale-child teardown, SIGKILL escalation, sentinel replay id, fail-fast on mid-swap death
|
|
20
|
+
- **cli:** Mcp-run proxy — cancelled-request inflight cleanup, token-fetch-before-teardown, pip output off stdout
|
|
21
|
+
|
|
22
|
+
### Tests
|
|
23
|
+
|
|
24
|
+
- **cli:** Docker integration test — mcp-run shim end-to-end with real mcp-atlassian
|
|
25
|
+
|
|
7
26
|
## [2.60.46] — 2026-07-11
|
|
8
27
|
|
|
9
28
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -5733,7 +5733,7 @@ function readAnonId() {
|
|
|
5733
5733
|
}
|
|
5734
5734
|
function superProperties() {
|
|
5735
5735
|
return {
|
|
5736
|
-
cliVersion: true ? "2.60.
|
|
5736
|
+
cliVersion: true ? "2.60.48" : "0.0.0-dev",
|
|
5737
5737
|
nodeVersion: process.version,
|
|
5738
5738
|
platform: process.platform,
|
|
5739
5739
|
arch: process.arch,
|
|
@@ -5914,7 +5914,7 @@ var os4 = __toESM(require("os"));
|
|
|
5914
5914
|
// package.json
|
|
5915
5915
|
var package_default = {
|
|
5916
5916
|
name: "codeam-cli",
|
|
5917
|
-
version: "2.60.
|
|
5917
|
+
version: "2.60.48",
|
|
5918
5918
|
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.",
|
|
5919
5919
|
type: "commonjs",
|
|
5920
5920
|
main: "dist/index.js",
|
|
@@ -7023,7 +7023,7 @@ var CommandRelayService = class {
|
|
|
7023
7023
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7024
7024
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7025
7025
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7026
|
-
..."2.60.
|
|
7026
|
+
..."2.60.48" ? { ideVersion: "2.60.48" } : {}
|
|
7027
7027
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7028
7028
|
}
|
|
7029
7029
|
/**
|
|
@@ -17575,7 +17575,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17575
17575
|
if (process.env.NODE_ENV === "test") return;
|
|
17576
17576
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17577
17577
|
if (process.env.CI) return;
|
|
17578
|
-
const current = true ? "2.60.
|
|
17578
|
+
const current = true ? "2.60.48" : null;
|
|
17579
17579
|
if (!current) return;
|
|
17580
17580
|
const cache = readCache();
|
|
17581
17581
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17592,7 +17592,7 @@ function checkForUpdates() {
|
|
|
17592
17592
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17593
17593
|
if (process.env.CI) return;
|
|
17594
17594
|
if (!process.stdout.isTTY) return;
|
|
17595
|
-
const current = true ? "2.60.
|
|
17595
|
+
const current = true ? "2.60.48" : null;
|
|
17596
17596
|
if (!current) return;
|
|
17597
17597
|
const cache = readCache();
|
|
17598
17598
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17612,7 +17612,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17612
17612
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17613
17613
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17614
17614
|
function currentCliVersion() {
|
|
17615
|
-
return true ? "2.60.
|
|
17615
|
+
return true ? "2.60.48" : null;
|
|
17616
17616
|
}
|
|
17617
17617
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17618
17618
|
return new Promise((resolve7) => {
|
|
@@ -34829,7 +34829,7 @@ function checkChokidar() {
|
|
|
34829
34829
|
}
|
|
34830
34830
|
async function doctor(args2 = []) {
|
|
34831
34831
|
const json = args2.includes("--json");
|
|
34832
|
-
const cliVersion = true ? "2.60.
|
|
34832
|
+
const cliVersion = true ? "2.60.48" : "0.0.0-dev";
|
|
34833
34833
|
const apiBase2 = resolveApiBaseUrl();
|
|
34834
34834
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
34835
34835
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -35306,7 +35306,7 @@ async function mcpRun(args2) {
|
|
|
35306
35306
|
// src/commands/version.ts
|
|
35307
35307
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
35308
35308
|
function version2() {
|
|
35309
|
-
const v = true ? "2.60.
|
|
35309
|
+
const v = true ? "2.60.48" : "unknown";
|
|
35310
35310
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
35311
35311
|
}
|
|
35312
35312
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.48",
|
|
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",
|