codeam-cli 2.21.1 → 2.21.2
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 +10 -0
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ 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.21.1] — 2026-05-25
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **cli:** Apply_file_review handler — git add / git restore on the worktree
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- **cli+vsc-plugin:** CI failures — stop-aware retries + VSC git-root seam
|
|
16
|
+
|
|
7
17
|
## [2.21.0] — 2026-05-25
|
|
8
18
|
|
|
9
19
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -441,7 +441,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
441
441
|
// package.json
|
|
442
442
|
var package_default = {
|
|
443
443
|
name: "codeam-cli",
|
|
444
|
-
version: "2.21.
|
|
444
|
+
version: "2.21.2",
|
|
445
445
|
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.",
|
|
446
446
|
type: "commonjs",
|
|
447
447
|
main: "dist/index.js",
|
|
@@ -5740,7 +5740,7 @@ function readAnonId() {
|
|
|
5740
5740
|
}
|
|
5741
5741
|
function superProperties() {
|
|
5742
5742
|
return {
|
|
5743
|
-
cliVersion: true ? "2.21.
|
|
5743
|
+
cliVersion: true ? "2.21.2" : "0.0.0-dev",
|
|
5744
5744
|
nodeVersion: process.version,
|
|
5745
5745
|
platform: process.platform,
|
|
5746
5746
|
arch: process.arch,
|
|
@@ -18048,7 +18048,7 @@ function checkChokidar() {
|
|
|
18048
18048
|
}
|
|
18049
18049
|
async function doctor(args2 = []) {
|
|
18050
18050
|
const json = args2.includes("--json");
|
|
18051
|
-
const cliVersion = true ? "2.21.
|
|
18051
|
+
const cliVersion = true ? "2.21.2" : "0.0.0-dev";
|
|
18052
18052
|
const apiBase = resolveApiBaseUrl();
|
|
18053
18053
|
const diagnosticId = (0, import_node_crypto5.randomUUID)();
|
|
18054
18054
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -18247,7 +18247,7 @@ async function completion(args2) {
|
|
|
18247
18247
|
// src/commands/version.ts
|
|
18248
18248
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
18249
18249
|
function version2() {
|
|
18250
|
-
const v = true ? "2.21.
|
|
18250
|
+
const v = true ? "2.21.2" : "unknown";
|
|
18251
18251
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
18252
18252
|
}
|
|
18253
18253
|
|
|
@@ -18475,7 +18475,7 @@ function checkForUpdates() {
|
|
|
18475
18475
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18476
18476
|
if (process.env.CI) return;
|
|
18477
18477
|
if (!process.stdout.isTTY) return;
|
|
18478
|
-
const current = true ? "2.21.
|
|
18478
|
+
const current = true ? "2.21.2" : null;
|
|
18479
18479
|
if (!current) return;
|
|
18480
18480
|
const cache = readCache();
|
|
18481
18481
|
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.21.
|
|
3
|
+
"version": "2.21.2",
|
|
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",
|