codeam-cli 2.60.58 → 2.60.60

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 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.60.59] — 2026-07-14
8
+
9
+ ### Added
10
+
11
+ - **shared:** Enable Sentry integration (OAuth app registered)
12
+
13
+ ## [2.60.58] — 2026-07-14
14
+
15
+ ### Added
16
+
17
+ - **shared:** Register Sentry integration (dark) + BrokeredIntegrationToken.host
18
+
7
19
  ## [2.60.57] — 2026-07-14
8
20
 
9
21
  ### Fixed
package/dist/index.js CHANGED
@@ -524,10 +524,11 @@ var INTEGRATION_REGISTRY = {
524
524
  id: "sentry",
525
525
  name: "Sentry",
526
526
  icon: "sentry",
527
- // Dark until the Sentry OAuth app is registered + a live end-to-end
528
- // deploy is verified (CLAUDE.md non-negotiable). Flip to true in the
529
- // same change that lands SENTRY_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI.
530
- enabled: false,
527
+ // LIVE the Sentry OAuth Application (Confidential) is registered and
528
+ // SENTRY_OAUTH_CLIENT_ID/SECRET/REDIRECT_URI are in Secret Manager
529
+ // (prod+dev). The backend SentryOAuthProvider is config-gated (503 if
530
+ // env unset) so this is safe even mid-rollout before the secrets mount.
531
+ enabled: true,
531
532
  auth: {
532
533
  kind: "oauth_redirect",
533
534
  // Sentry OAuth scopes for the MCP's read-first surface: read orgs /
@@ -5779,7 +5780,7 @@ function readAnonId() {
5779
5780
  }
5780
5781
  function superProperties() {
5781
5782
  return {
5782
- cliVersion: true ? "2.60.58" : "0.0.0-dev",
5783
+ cliVersion: true ? "2.60.60" : "0.0.0-dev",
5783
5784
  nodeVersion: process.version,
5784
5785
  platform: process.platform,
5785
5786
  arch: process.arch,
@@ -5960,7 +5961,7 @@ var os4 = __toESM(require("os"));
5960
5961
  // package.json
5961
5962
  var package_default = {
5962
5963
  name: "codeam-cli",
5963
- version: "2.60.58",
5964
+ version: "2.60.60",
5964
5965
  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.",
5965
5966
  type: "commonjs",
5966
5967
  main: "dist/index.js",
@@ -7069,7 +7070,7 @@ var CommandRelayService = class {
7069
7070
  // fresh + clear the "CLI update available" banner after a self-update
7070
7071
  // (a codespace that reinstalls @latest reconnects via heartbeat, not
7071
7072
  // pair/reconnect). Older backends ignore the extra field.
7072
- ..."2.60.58" ? { ideVersion: "2.60.58" } : {}
7073
+ ..."2.60.60" ? { ideVersion: "2.60.60" } : {}
7073
7074
  }).then(() => log.trace("relay", `heartbeat ok online=${online}`)).catch((err) => log.trace("relay", `heartbeat failed online=${online}`, err));
7074
7075
  }
7075
7076
  /**
@@ -17646,7 +17647,7 @@ async function autoUpgradeBeforeCriticalCommand() {
17646
17647
  if (process.env.NODE_ENV === "test") return;
17647
17648
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17648
17649
  if (process.env.CI) return;
17649
- const current = true ? "2.60.58" : null;
17650
+ const current = true ? "2.60.60" : null;
17650
17651
  if (!current) return;
17651
17652
  const cache = readCache();
17652
17653
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17663,7 +17664,7 @@ function checkForUpdates() {
17663
17664
  if (process.env.CODEAM_DISABLE_UPDATE_CHECK === "1") return;
17664
17665
  if (process.env.CI) return;
17665
17666
  if (!process.stdout.isTTY) return;
17666
- const current = true ? "2.60.58" : null;
17667
+ const current = true ? "2.60.60" : null;
17667
17668
  if (!current) return;
17668
17669
  const cache = readCache();
17669
17670
  const fresh = cache && Date.now() - cache.fetchedAt < TTL_MS;
@@ -17683,7 +17684,7 @@ var SELF_UPDATE_INTERVAL_MS = 60 * 60 * 1e3;
17683
17684
  var SELF_UPDATE_VIEW_TIMEOUT_MS = 3e4;
17684
17685
  var SELF_UPDATE_INSTALL_TIMEOUT_MS = 18e4;
17685
17686
  function currentCliVersion() {
17686
- return true ? "2.60.58" : null;
17687
+ return true ? "2.60.60" : null;
17687
17688
  }
17688
17689
  function runCmd(cmd, args2, timeoutMs) {
17689
17690
  return new Promise((resolve7) => {
@@ -35112,7 +35113,7 @@ function checkChokidar() {
35112
35113
  }
35113
35114
  async function doctor(args2 = []) {
35114
35115
  const json = args2.includes("--json");
35115
- const cliVersion = true ? "2.60.58" : "0.0.0-dev";
35116
+ const cliVersion = true ? "2.60.60" : "0.0.0-dev";
35116
35117
  const apiBase2 = resolveApiBaseUrl();
35117
35118
  const diagnosticId = (0, import_node_crypto12.randomUUID)();
35118
35119
  log.info("doctor", `run id=${diagnosticId} cli=${cliVersion}`);
@@ -35589,7 +35590,7 @@ async function mcpRun(args2) {
35589
35590
  // src/commands/version.ts
35590
35591
  var import_picocolors15 = __toESM(require("picocolors"));
35591
35592
  function version2() {
35592
- const v = true ? "2.60.58" : "unknown";
35593
+ const v = true ? "2.60.60" : "unknown";
35593
35594
  console.log(`${import_picocolors15.default.bold("codeam-cli")} ${import_picocolors15.default.cyan(v)}`);
35594
35595
  }
35595
35596
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeam-cli",
3
- "version": "2.60.58",
3
+ "version": "2.60.60",
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",