codeam-cli 2.26.0 → 2.26.1
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 +5 -5
- 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.26.0] — 2026-06-03
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **workflow:** Cross-PR review by Claude Code on codex-authored PRs (#231)
|
|
12
|
+
- **cli,vsc-plugin:** Preview lifecycle + branch reporting (Phase 1B for #438) (#232)
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- **workflow:** Use existing CROSS_REPO_PAT for api-v2 dispatch (#230)
|
|
17
|
+
|
|
7
18
|
## [2.25.0] — 2026-06-03
|
|
8
19
|
|
|
9
20
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -472,7 +472,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
472
472
|
// package.json
|
|
473
473
|
var package_default = {
|
|
474
474
|
name: "codeam-cli",
|
|
475
|
-
version: "2.26.
|
|
475
|
+
version: "2.26.1",
|
|
476
476
|
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.",
|
|
477
477
|
type: "commonjs",
|
|
478
478
|
main: "dist/index.js",
|
|
@@ -5829,7 +5829,7 @@ function readAnonId() {
|
|
|
5829
5829
|
}
|
|
5830
5830
|
function superProperties() {
|
|
5831
5831
|
return {
|
|
5832
|
-
cliVersion: true ? "2.26.
|
|
5832
|
+
cliVersion: true ? "2.26.1" : "0.0.0-dev",
|
|
5833
5833
|
nodeVersion: process.version,
|
|
5834
5834
|
platform: process.platform,
|
|
5835
5835
|
arch: process.arch,
|
|
@@ -19876,7 +19876,7 @@ function checkChokidar() {
|
|
|
19876
19876
|
}
|
|
19877
19877
|
async function doctor(args2 = []) {
|
|
19878
19878
|
const json = args2.includes("--json");
|
|
19879
|
-
const cliVersion = true ? "2.26.
|
|
19879
|
+
const cliVersion = true ? "2.26.1" : "0.0.0-dev";
|
|
19880
19880
|
const apiBase = resolveApiBaseUrl();
|
|
19881
19881
|
const diagnosticId = (0, import_node_crypto6.randomUUID)();
|
|
19882
19882
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -20075,7 +20075,7 @@ async function completion(args2) {
|
|
|
20075
20075
|
// src/commands/version.ts
|
|
20076
20076
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
20077
20077
|
function version2() {
|
|
20078
|
-
const v = true ? "2.26.
|
|
20078
|
+
const v = true ? "2.26.1" : "unknown";
|
|
20079
20079
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
20080
20080
|
}
|
|
20081
20081
|
|
|
@@ -20303,7 +20303,7 @@ function checkForUpdates() {
|
|
|
20303
20303
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
20304
20304
|
if (process.env.CI) return;
|
|
20305
20305
|
if (!process.stdout.isTTY) return;
|
|
20306
|
-
const current = true ? "2.26.
|
|
20306
|
+
const current = true ? "2.26.1" : null;
|
|
20307
20307
|
if (!current) return;
|
|
20308
20308
|
const cache = readCache();
|
|
20309
20309
|
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.26.
|
|
3
|
+
"version": "2.26.1",
|
|
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",
|