codeam-cli 2.60.67 → 2.60.68
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.60.67] — 2026-07-15
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **shared:** Add Azure DevOps — first api_key (PAT) integration
|
|
12
|
+
|
|
7
13
|
## [2.60.66] — 2026-07-15
|
|
8
14
|
|
|
9
15
|
### Added
|
package/dist/index.js
CHANGED
|
@@ -5970,7 +5970,7 @@ function readAnonId() {
|
|
|
5970
5970
|
}
|
|
5971
5971
|
function superProperties() {
|
|
5972
5972
|
return {
|
|
5973
|
-
cliVersion: true ? "2.60.
|
|
5973
|
+
cliVersion: true ? "2.60.68" : "0.0.0-dev",
|
|
5974
5974
|
nodeVersion: process.version,
|
|
5975
5975
|
platform: process.platform,
|
|
5976
5976
|
arch: process.arch,
|
|
@@ -6151,7 +6151,7 @@ var os4 = __toESM(require("os"));
|
|
|
6151
6151
|
// package.json
|
|
6152
6152
|
var package_default = {
|
|
6153
6153
|
name: "codeam-cli",
|
|
6154
|
-
version: "2.60.
|
|
6154
|
+
version: "2.60.68",
|
|
6155
6155
|
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.",
|
|
6156
6156
|
type: "commonjs",
|
|
6157
6157
|
main: "dist/index.js",
|
|
@@ -7294,7 +7294,7 @@ var CommandRelayService = class _CommandRelayService {
|
|
|
7294
7294
|
// fresh + clear the "CLI update available" banner after a self-update
|
|
7295
7295
|
// (a codespace that reinstalls @latest reconnects via heartbeat, not
|
|
7296
7296
|
// pair/reconnect). Older backends ignore the extra field.
|
|
7297
|
-
..."2.60.
|
|
7297
|
+
..."2.60.68" ? { ideVersion: "2.60.68" } : {}
|
|
7298
7298
|
}).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
|
|
7299
7299
|
}
|
|
7300
7300
|
/**
|
|
@@ -17871,7 +17871,7 @@ async function autoUpgradeBeforeCriticalCommand() {
|
|
|
17871
17871
|
if (process.env.NODE_ENV === "test") return;
|
|
17872
17872
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17873
17873
|
if (process.env.CI) return;
|
|
17874
|
-
const current = true ? "2.60.
|
|
17874
|
+
const current = true ? "2.60.68" : null;
|
|
17875
17875
|
if (!current) return;
|
|
17876
17876
|
const cache = readCache();
|
|
17877
17877
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17888,7 +17888,7 @@ function checkForUpdates() {
|
|
|
17888
17888
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
17889
17889
|
if (process.env.CI) return;
|
|
17890
17890
|
if (!process.stdout.isTTY) return;
|
|
17891
|
-
const current = true ? "2.60.
|
|
17891
|
+
const current = true ? "2.60.68" : null;
|
|
17892
17892
|
if (!current) return;
|
|
17893
17893
|
const cache = readCache();
|
|
17894
17894
|
const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
|
|
@@ -17908,7 +17908,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
|
|
|
17908
17908
|
var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
|
|
17909
17909
|
var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
|
|
17910
17910
|
function currentCliVersion() {
|
|
17911
|
-
return true ? "2.60.
|
|
17911
|
+
return true ? "2.60.68" : null;
|
|
17912
17912
|
}
|
|
17913
17913
|
function runCmd(cmd, args2, timeoutMs) {
|
|
17914
17914
|
return new Promise((resolve7) => {
|
|
@@ -35337,7 +35337,7 @@ function checkChokidar() {
|
|
|
35337
35337
|
}
|
|
35338
35338
|
async function doctor(args2 = []) {
|
|
35339
35339
|
const json = args2.includes("--json");
|
|
35340
|
-
const cliVersion = true ? "2.60.
|
|
35340
|
+
const cliVersion = true ? "2.60.68" : "0.0.0-dev";
|
|
35341
35341
|
const apiBase2 = resolveApiBaseUrl();
|
|
35342
35342
|
const diagnosticId = (0, import_node_crypto12.randomUUID)();
|
|
35343
35343
|
log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
|
|
@@ -35814,7 +35814,7 @@ async function mcpRun(args2) {
|
|
|
35814
35814
|
// src/commands/version.ts
|
|
35815
35815
|
var import_picocolors15 = __toESM(require("picocolors"));
|
|
35816
35816
|
function version2() {
|
|
35817
|
-
const v = true ? "2.60.
|
|
35817
|
+
const v = true ? "2.60.68" : "unknown";
|
|
35818
35818
|
console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
|
|
35819
35819
|
}
|
|
35820
35820
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codeam-cli",
|
|
3
|
-
"version": "2.60.
|
|
3
|
+
"version": "2.60.68",
|
|
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",
|