codeam-cli 2.47.0 → 2.47.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 +16 -0
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ 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.47.0] — 2026-06-26
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **vsc-plugin:** API reachability preflight (checkApiReachable)
|
|
12
|
+
- **vsc-plugin:** DetectRepoSlug from the origin git remote
|
|
13
|
+
- **vsc-plugin:** Cloud-fallback message content builder
|
|
14
|
+
- **vsc-plugin:** Show cloud fallback when the API is unreachable during pairing
|
|
15
|
+
- **jetbrains-plugin:** API reachability + repo slug + cloud-fallback content
|
|
16
|
+
- **jetbrains-plugin:** Show cloud fallback when the API is unreachable during pairing
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- **jetbrains-plugin:** Run repo-context git calls off the EDT in the cloud-fallback branch
|
|
21
|
+
- **jetbrains-plugin:** Show cloud-fallback panel on the tool-window Generate button (parity with VS Code)
|
|
22
|
+
|
|
7
23
|
## [2.46.6] — 2026-06-26
|
|
8
24
|
|
|
9
25
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -5397,7 +5397,7 @@ function readAnonId() {
|
|
|
5397
5397
|
}
|
|
5398
5398
|
function superProperties() {
|
|
5399
5399
|
return {
|
|
5400
|
-
cliVersion: true ? "2.47.
|
|
5400
|
+
cliVersion: true ? "2.47.1" : "0.0.0-dev",
|
|
5401
5401
|
nodeVersion: process.version,
|
|
5402
5402
|
platform: process.platform,
|
|
5403
5403
|
arch: process.arch,
|
|
@@ -5578,7 +5578,7 @@ var os4 = __toESM(require("os"));
|
|
|
5578
5578
|
// package.json
|
|
5579
5579
|
var package_default = {
|
|
5580
5580
|
name: "codeam-cli",
|
|
5581
|
-
version: "2.47.
|
|
5581
|
+
version: "2.47.1",
|
|
5582
5582
|
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.",
|
|
5583
5583
|
type: "commonjs",
|
|
5584
5584
|
main: "dist/index.js",
|
|
@@ -18022,7 +18022,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
18022
18022
|
if (process.env.NODE_ENV === "test") return;
|
|
18023
18023
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18024
18024
|
if (process.env.CI) return;
|
|
18025
|
-
const current = true ? "2.47.
|
|
18025
|
+
const current = true ? "2.47.1" : null;
|
|
18026
18026
|
if (!current) return;
|
|
18027
18027
|
const cache = readCache();
|
|
18028
18028
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18039,7 +18039,7 @@ function checkForUpdates() {
|
|
|
18039
18039
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
18040
18040
|
if (process.env.CI) return;
|
|
18041
18041
|
if (!process.stdout.isTTY) return;
|
|
18042
|
-
const current = true ? "2.47.
|
|
18042
|
+
const current = true ? "2.47.1" : null;
|
|
18043
18043
|
if (!current) return;
|
|
18044
18044
|
const cache = readCache();
|
|
18045
18045
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -18481,7 +18481,7 @@ var defaultSpawner = (env, cwd, args2 = []) => (0, import_node_child_process14.s
|
|
|
18481
18481
|
detached: false
|
|
18482
18482
|
});
|
|
18483
18483
|
function currentCliVersion() {
|
|
18484
|
-
return true ? "2.47.
|
|
18484
|
+
return true ? "2.47.1" : null;
|
|
18485
18485
|
}
|
|
18486
18486
|
function runCmd(cmd, args2, timeoutMs) {
|
|
18487
18487
|
return new Promise((resolve7) => {
|
|
@@ -29849,7 +29849,7 @@ function checkChokidar() {
|
|
|
29849
29849
|
}
|
|
29850
29850
|
async function doctor(args2 = []) {
|
|
29851
29851
|
const json = args2.includes("--json");
|
|
29852
|
-
const cliVersion = true ? "2.47.
|
|
29852
|
+
const cliVersion = true ? "2.47.1" : "0.0.0-dev";
|
|
29853
29853
|
const apiBase2 = resolveApiBaseUrl();
|
|
29854
29854
|
const diagnosticId = (0, import_node_crypto8.randomUUID)();
|
|
29855
29855
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -30048,7 +30048,7 @@ async function completion(args2) {
|
|
|
30048
30048
|
// src/commands/version.ts
|
|
30049
30049
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
30050
30050
|
function version2() {
|
|
30051
|
-
const v = true ? "2.47.
|
|
30051
|
+
const v = true ? "2.47.1" : "unknown";
|
|
30052
30052
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
30053
30053
|
}
|
|
30054
30054
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.47.
|
|
3
|
+
"version": "2.47.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",
|