codeam-cli 2.39.18 → 2.39.19
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 +8 -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.39.18] — 2026-06-14
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Send X-Plugin-Auth-Token on conversation-history writes (SEC crit1 #819) — v2.39.18
|
|
12
|
+
|
|
7
13
|
## [2.39.16] — 2026-06-14
|
|
8
14
|
|
|
9
15
|
### Added
|
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.
|
|
501
|
+
version: "2.39.19",
|
|
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",
|
|
@@ -5908,7 +5908,7 @@ function readAnonId() {
|
|
|
5908
5908
|
}
|
|
5909
5909
|
function superProperties() {
|
|
5910
5910
|
return {
|
|
5911
|
-
cliVersion: true ? "2.39.
|
|
5911
|
+
cliVersion: true ? "2.39.19" : "0.0.0-dev",
|
|
5912
5912
|
nodeVersion: process.version,
|
|
5913
5913
|
platform: process.platform,
|
|
5914
5914
|
arch: process.arch,
|
|
@@ -19734,7 +19734,7 @@ var previewStartH = (ctx, _cmd, parsed) => {
|
|
|
19734
19734
|
const outcome = await waitForDevServerReady(devServer, readyRe, {
|
|
19735
19735
|
timeoutMs: 12e4,
|
|
19736
19736
|
onChunk: (s) => {
|
|
19737
|
-
outputTail = (outputTail + s).slice(-
|
|
19737
|
+
outputTail = (outputTail + s).slice(-16e3);
|
|
19738
19738
|
if (!expoUrl && detection.framework === "Expo") {
|
|
19739
19739
|
expoUrl = parseExpoUrl(s);
|
|
19740
19740
|
}
|
|
@@ -19750,7 +19750,7 @@ var previewStartH = (ctx, _cmd, parsed) => {
|
|
|
19750
19750
|
payload: {
|
|
19751
19751
|
stage: "spawn",
|
|
19752
19752
|
message: `The dev server exited (code ${outcome.code}) before it was ready. It may need a database or other services.`,
|
|
19753
|
-
stderrTail: outputTail.slice(-
|
|
19753
|
+
stderrTail: outputTail.slice(-8e3)
|
|
19754
19754
|
}
|
|
19755
19755
|
});
|
|
19756
19756
|
return;
|
|
@@ -19768,7 +19768,7 @@ var previewStartH = (ctx, _cmd, parsed) => {
|
|
|
19768
19768
|
payload: {
|
|
19769
19769
|
stage: "ready_timeout",
|
|
19770
19770
|
message: "The dev server didn't become ready in time. It may be stuck waiting on a database or other service.",
|
|
19771
|
-
stderrTail: outputTail.slice(-
|
|
19771
|
+
stderrTail: outputTail.slice(-8e3)
|
|
19772
19772
|
}
|
|
19773
19773
|
});
|
|
19774
19774
|
return;
|
|
@@ -27056,7 +27056,7 @@ function checkChokidar() {
|
|
|
27056
27056
|
}
|
|
27057
27057
|
async function doctor(args2 = []) {
|
|
27058
27058
|
const json = args2.includes("--json");
|
|
27059
|
-
const cliVersion = true ? "2.39.
|
|
27059
|
+
const cliVersion = true ? "2.39.19" : "0.0.0-dev";
|
|
27060
27060
|
const apiBase = resolveApiBaseUrl();
|
|
27061
27061
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
27062
27062
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -27255,7 +27255,7 @@ async function completion(args2) {
|
|
|
27255
27255
|
// src/commands/version.ts
|
|
27256
27256
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
27257
27257
|
function version2() {
|
|
27258
|
-
const v = true ? "2.39.
|
|
27258
|
+
const v = true ? "2.39.19" : "unknown";
|
|
27259
27259
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
27260
27260
|
}
|
|
27261
27261
|
|
|
@@ -27541,7 +27541,7 @@ function checkForUpdates() {
|
|
|
27541
27541
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
27542
27542
|
if (process.env.CI) return;
|
|
27543
27543
|
if (!process.stdout.isTTY) return;
|
|
27544
|
-
const current = true ? "2.39.
|
|
27544
|
+
const current = true ? "2.39.19" : null;
|
|
27545
27545
|
if (!current) return;
|
|
27546
27546
|
const cache = readCache();
|
|
27547
27547
|
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.
|
|
3
|
+
"version": "2.39.19",
|
|
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",
|