codeam-cli 2.12.8 → 2.12.10
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 +3 -3
- 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.12.7] — 2026-05-14
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- **cli:** File logging guard order — info+ lines now actually reach the file
|
|
12
|
+
|
|
7
13
|
## [2.12.6] — 2026-05-14
|
|
8
14
|
|
|
9
15
|
### Fixed
|
package/dist/index.js
CHANGED
|
@@ -1682,7 +1682,7 @@ var import_qrcode_terminal = __toESM(require("qrcode-terminal"));
|
|
|
1682
1682
|
// package.json
|
|
1683
1683
|
var package_default = {
|
|
1684
1684
|
name: "codeam-cli",
|
|
1685
|
-
version: "2.12.
|
|
1685
|
+
version: "2.12.10",
|
|
1686
1686
|
description: "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands \u2014 from anywhere.",
|
|
1687
1687
|
type: "commonjs",
|
|
1688
1688
|
main: "dist/index.js",
|
|
@@ -10142,7 +10142,7 @@ async function stopWorkspaceFromLocal(target) {
|
|
|
10142
10142
|
// src/commands/version.ts
|
|
10143
10143
|
var import_picocolors11 = __toESM(require("picocolors"));
|
|
10144
10144
|
function version() {
|
|
10145
|
-
const v = true ? "2.12.
|
|
10145
|
+
const v = true ? "2.12.10" : "unknown";
|
|
10146
10146
|
console.log(`${import_picocolors11.default.bold("codeam-cli")} ${import_picocolors11.default.cyan(v)}`);
|
|
10147
10147
|
}
|
|
10148
10148
|
|
|
@@ -10277,7 +10277,7 @@ function checkForUpdates() {
|
|
|
10277
10277
|
if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
|
|
10278
10278
|
if (process.env.CI) return;
|
|
10279
10279
|
if (!process.stdout.isTTY) return;
|
|
10280
|
-
const current = true ? "2.12.
|
|
10280
|
+
const current = true ? "2.12.10" : null;
|
|
10281
10281
|
if (!current) return;
|
|
10282
10282
|
const cache = readCache();
|
|
10283
10283
|
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.12.
|
|
3
|
+
"version": "2.12.10",
|
|
4
4
|
"description": "Remote control Claude Code (and other AI coding agents) from your mobile phone. Pair your device, send prompts, stream responses in real-time, and approve commands — from anywhere.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|