@minhspark/codex-mcp-bridge 1.12.4 → 1.12.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
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and [SemVer](https://semver.org/).
|
|
4
4
|
|
|
5
|
+
## [1.12.5] - 2026-09-05
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Preserve the configured environment when the Claude diagnostic starts its MCP child, including sender permission mode and native-relay settings. The MCP SDK's default environment whitelist otherwise drops these settings and can make the diagnostic exercise a different receiver policy than the installed bridge.
|
|
10
|
+
|
|
11
|
+
### Verification
|
|
12
|
+
|
|
13
|
+
- The live Codex MCP bridge returned a real Claude Desktop answer through the UUID-correlated transcript path with the expected workspace. The native Codex relay also delivered its marker into the existing Desktop task. No receiver permission settings or Desktop tool restrictions were changed.
|
|
14
|
+
- The live `check:claude` command reported bridge 1.12.5, received the correlated Desktop response, and exited with code 0.
|
|
15
|
+
|
|
5
16
|
## [1.12.4] - 2026-09-05
|
|
6
17
|
|
|
7
18
|
### Fixed
|
package/package.json
CHANGED
|
@@ -7,6 +7,7 @@ const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");
|
|
|
7
7
|
const transport = new StdioClientTransport({
|
|
8
8
|
command: process.execPath,
|
|
9
9
|
args: [path.join(root, "src", "claude-bridge.mjs")],
|
|
10
|
+
env: { ...process.env },
|
|
10
11
|
stderr: "inherit",
|
|
11
12
|
});
|
|
12
13
|
const client = new Client({ name: "claude-bridge-check", version: "1.0.0" });
|
|
@@ -8,7 +8,7 @@ import { CodexAppServerClient } from "../src/app-server-client.mjs";
|
|
|
8
8
|
import { bootstrapRelayThread, readRelayConfig, relayConfigPath, relaySocketPath } from "../src/native-relay.mjs";
|
|
9
9
|
import { IS_MACOS, IS_WINDOWS, PLATFORM_LABEL, homeDir, resolveCodexBin, spawnEnv } from "../src/platform.mjs";
|
|
10
10
|
|
|
11
|
-
const VERSION = "1.12.
|
|
11
|
+
const VERSION = "1.12.5";
|
|
12
12
|
const root = path.resolve(path.dirname(fileURLToPath(import.meta.url)), "..");
|
|
13
13
|
const entry = path.join(root, "src", "native-relay-companion.mjs");
|
|
14
14
|
const serverName = process.env.CODEX_NATIVE_RELAY_NAME ?? "codex-native-relay";
|
package/src/claude-bridge.mjs
CHANGED
|
@@ -8,7 +8,7 @@ import { PLATFORM_LABEL } from "./platform.mjs";
|
|
|
8
8
|
import { PeerEndpoint, findClaudeSession, listClaudeSessions, readTranscript } from "./peer-protocol.mjs";
|
|
9
9
|
import { createThreadDelivery } from "./thread-delivery.mjs";
|
|
10
10
|
|
|
11
|
-
const VERSION = "1.12.
|
|
11
|
+
const VERSION = "1.12.5";
|
|
12
12
|
const FORWARD_MIN_INTERVAL_MS = 5000;
|
|
13
13
|
const FORWARD_MAX_PER_SESSION = 50;
|
|
14
14
|
|
package/src/index.mjs
CHANGED
|
@@ -23,7 +23,7 @@ import {
|
|
|
23
23
|
import { runTurn } from "./turn.mjs";
|
|
24
24
|
import { BridgeSecurityPolicy } from "./security-policy.mjs";
|
|
25
25
|
|
|
26
|
-
const VERSION = "1.12.
|
|
26
|
+
const VERSION = "1.12.5";
|
|
27
27
|
const log = (msg) => process.stderr.write(`[codex-mcp-bridge] ${msg}\n`);
|
|
28
28
|
|
|
29
29
|
/**
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
} from "./native-relay.mjs";
|
|
18
18
|
import { IS_WINDOWS, PLATFORM_LABEL } from "./platform.mjs";
|
|
19
19
|
|
|
20
|
-
const VERSION = "1.12.
|
|
20
|
+
const VERSION = "1.12.5";
|
|
21
21
|
const log = (msg) => process.stderr.write(`[native-relay] ${msg}\n`);
|
|
22
22
|
|
|
23
23
|
function errorResponse(code, message) {
|