impel-cli 0.20.60 → 0.20.61
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/RELEASE_NOTES.md +9 -0
- package/package.json +1 -1
- package/src/commands/launch.js +6 -3
package/RELEASE_NOTES.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release notes
|
|
2
2
|
|
|
3
|
+
## 0.20.61 — Silence the Codex apps connector at startup
|
|
4
|
+
|
|
5
|
+
- Passes `features.apps=false` to tenant Codex CLI sessions so Codex no longer
|
|
6
|
+
contributes its hosted `codex_apps` connector, which handshaked against the
|
|
7
|
+
gateway passthrough without a credential and printed an HTTP 401 "MCP startup
|
|
8
|
+
incomplete" warning on every `impel codex` launch. The 0.20.59 mitigation set
|
|
9
|
+
`enable_mcp_apps=false`, which only governs MCP-UI rendering and left the
|
|
10
|
+
connector enabled.
|
|
11
|
+
|
|
3
12
|
## 0.20.60 — Fix managed Codex launch discovery
|
|
4
13
|
|
|
5
14
|
- Fixes `impel codex` failing with "not authenticated and no enrolled managed
|
package/package.json
CHANGED
package/src/commands/launch.js
CHANGED
|
@@ -85,9 +85,12 @@ const IMPEL_CODEX_RUNTIME_OVERRIDES = [
|
|
|
85
85
|
// launcher path for tenant CLI sessions so a missing helper cannot abort
|
|
86
86
|
// startup. Desktop bundles that include the helper enable it explicitly.
|
|
87
87
|
"features.code_mode_host=false",
|
|
88
|
-
//
|
|
89
|
-
//
|
|
90
|
-
//
|
|
88
|
+
// Codex contributes the hosted codex_apps connector whenever the stable
|
|
89
|
+
// `apps` feature is on. It handshakes against chatgpt_base_url with no
|
|
90
|
+
// gateway credential, so headless tenant sessions get an HTTP 401 at
|
|
91
|
+
// startup. `enable_mcp_apps` only governs MCP-UI rendering and does not
|
|
92
|
+
// gate the connector; keep it off as well since the CLI never renders apps.
|
|
93
|
+
"features.apps=false",
|
|
91
94
|
"features.enable_mcp_apps=false",
|
|
92
95
|
// CLI profiles do not load desktop/plugin lifecycle bundles. Plugin hooks
|
|
93
96
|
// are user-layer code and newer Codex versions review every one at startup.
|