codeam-cli 2.26.3 → 2.26.5
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 +12 -0
- package/dist/index.js +5 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.4] — 2026-06-03
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **vsc-plugin:** Route github.copilot-chat through vscode.lm; clipboard-only fallback (#237)
|
|
12
|
+
|
|
13
|
+
## [2.26.3] — 2026-06-03
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- **jetbrains-plugin:** Silent token refresh on 401 — match VSC + CLI behaviour (#236)
|
|
18
|
+
|
|
7
19
|
## [2.26.2] — 2026-06-03
|
|
8
20
|
|
|
9
21
|
### Fixed
|
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.5",
|
|
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.5" : "0.0.0-dev",
|
|
5833
5833
|
nodeVersion: process.version,
|
|
5834
5834
|
platform: process.platform,
|
|
5835
5835
|
arch: process.arch,
|
|
@@ -19924,7 +19924,7 @@ function checkChokidar() {
|
|
|
19924
19924
|
}
|
|
19925
19925
|
async function doctor(args2 = []) {
|
|
19926
19926
|
const json = args2.includes("--json");
|
|
19927
|
-
const cliVersion = true ? "2.26.
|
|
19927
|
+
const cliVersion = true ? "2.26.5" : "0.0.0-dev";
|
|
19928
19928
|
const apiBase = resolveApiBaseUrl();
|
|
19929
19929
|
const diagnosticId = (0, import_node_crypto6.randomUUID)();
|
|
19930
19930
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -20123,7 +20123,7 @@ async function completion(args2) {
|
|
|
20123
20123
|
// src/commands/version.ts
|
|
20124
20124
|
var import_picocolors13 = __toESM(require("picocolors"));
|
|
20125
20125
|
function version2() {
|
|
20126
|
-
const v = true ? "2.26.
|
|
20126
|
+
const v = true ? "2.26.5" : "unknown";
|
|
20127
20127
|
console.log(`${import_picocolors13.default.bold("codeam-cli")} ${import_picocolors13.default.cyan(v)}`);
|
|
20128
20128
|
}
|
|
20129
20129
|
|
|
@@ -20351,7 +20351,7 @@ function checkForUpdates() {
|
|
|
20351
20351
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
20352
20352
|
if (process.env.CI) return;
|
|
20353
20353
|
if (!process.stdout.isTTY) return;
|
|
20354
|
-
const current = true ? "2.26.
|
|
20354
|
+
const current = true ? "2.26.5" : null;
|
|
20355
20355
|
if (!current) return;
|
|
20356
20356
|
const cache = readCache();
|
|
20357
20357
|
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.5",
|
|
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",
|