Releases: github/copilot-cli
0.0.349
0.0.349 - 2025-10-22
- The model can now call multiple tools in parallel. Each tool must be confirmed in advance. This behavior can be disabled with the
--disable-parallel-tools-executionflag - Added
/quitas an alias of/exit(fixes #357) - Fixed a bug where every streamed output chunk was sent back to the model as part of the conversation (fixes #379)
- Ensure that environment variables are expanded before running path permission checks
- Fixed a bug where Ctrl+K deleted to the end of the visual line in the input box rather than the logical line
- Added the temp directory to the paths that the model has access to by default. This can be disabled with the
--disallow-temp-dirflag (fixes #306)
Run npm install -g @github/copilot@latest to update!
0.0.348
0.0.348 - 2025-10-21
- Copilot's output now streams in token-by-token! This can be disabled with
--stream off - Made improvements to the memory footprint of Copilot CLI, especially when dealing with shell commands that produce very large outputs
- Ensured we preserve comments in VSCode config files when using
/terminal-setup(fixes #325) - Bundled
node-ptyinto the CLI package -- we're one step closer to implementing #16 - Fixed an issue where local tool calling broke sessions (fixes #365, #364, #366)
- Added our LICENSE.md to our Node package (fixes #371)
- Added debug logging to authentication status changes to get to the bottom of #346
Run npm install -g @github/copilot@latest to update!
0.0.347
0.0.347 - 2025-10-20
- Fixed more bugs where incorrect PRU consumption stats were displayed on the frontend
For more information, see #351 (comment) - Fixed a bug where pasted input content that was backspaced away was still sent to the model
- Improved line wrapping and alignment when rendering file diffs
0.0.346
0.0.346 - 2025-10-19
- Fixed a bug where model sourced from configuration file was not accounted for correctly in estimating premium request usage
For more information, see #351 (comment)
0.0.345
0.0.344
0.0.344 - 2025-10-17
- Enabled GitHub MCP server in prompt mode
- Added support to the bash tool for executing detached processes
- Added list of supported models as part of
copilot help configtext - Fixed session abort handling to properly clean up orphaned tool call when pressing Esc or force-quitting
- Enforced minimum Node version requirement at launch
- Simplified messaging for
/terminal-setup
0.0.343
0.0.343 - 2025-10-16
-
Added new model: Run slash model to equip Haiku 4.5. - Added a flag to augment MCP server configuration to temporarily add or override server configuration per session:
--additional-mcp-config(fixes #288)- You can pass MCP server configuration in two ways:
- Inline JSON:
copilot --additional-mcp-config '{"mcpServers": {"my-tool": {...}}}' - From a file (prefix with @):
copilot --additional-mcp-config @/path/to/config.json
- Inline JSON:
- You can also pass the flag multiple times (later values override earlier ones):
copilot --additional-mcp-config @base.json --additional-mcp-config @overrides.json
- You can pass MCP server configuration in two ways:
- Improved our prompts to ensure the agent uses Windows-style paths on Windows (fixes #261)
- Added a prompt for users to run
/terminal-setupif needed to enable multi-line input - Various visual improvements:
- Added a shimmer effect to the "Thinking..." indicator
- Removed the box around user messages in the timeline
- Increased the contrast of removed intraline highlights in diffs
- Allow cycling through slash commands (from the bottom of the list back to the top)
- Aligned permission/confirmation prompts to ensure all use the same visual style
Run npm install -g @github/copilot@latest to update!
0.0.342
0.0.342 - 2025-10-15
- Overhauled our session logging format:
- Introduced a new session logging format that decouples how we store sessions from how we display them in the timeline. The new format is cleaner, more concise, and scalable, and will allow us to more easily implement new features down the line.
- New sessions are stored in
~/.copilot/session-state - Legacy sessions are stored in
~/.copilot/history-session-state-- these will be migrated to the new format & location as you resume them fromcopilot --resume
- Enabled the Kitty protocol by default. Multi-line input is now supported via Shift+Ctrl on terminal that support the Kitty protocol. Multi-line input is also supported in VSCode and its forks by running the
/terminal-setupcommand (fixes #14) - Enabled non-interactive GHE logins by respecting the
GH_HOSTenvironment variable for PAT andghauthentication modes (fixes #296) - Improved debug log collection convenience by adding a persistent
log_leveloption in~/.copilot/config. Possible values:["none", "error", "warning", "info", "debug", "all", "default"] - Added debug logging when calls to
/modelresult in Copilot API errors. This should help us diagnose some policy/model access edge cases like #268 and #116 - Added
gradlewto the list of commands whose subcommands can be whitelisted (fixes #217 (comment)) - Fixed a bug where sessions could enter a stuck state after a failed MCP tool call (fixes #312)
- Made the output of
--helptext more concise
Run npm install -g @github/copilot@latest to update!
0.0.341
0.0.341 - 2025-10-14
- Added
/terminal-setupcommand to set up multi-line input on terminals not implementing the kitty protocol - Fixed a bug where rejecting an MCP tool call would reject all future tool calls (fixes #290)
- Fixed a regression where calling
/modelwith an argument did not work properly - Added each model's premium request multiplier to the
/modellist (currently, all our supported models are 1x)
Run npm install -g @github/copilot@latest to update!
0.0.340
-
Removed the "Windows support is experimental" warning -- we've made some big strides in improving Windows support the last two weeks! Please continue to report any issues/feedback
-
Improved debugging by including the Copilot API request ID for model calls errors and stack traces for client errors
-
Fixed an issue where consecutive orphaned tool calls led to a "Each
tool_useblock must have a correspondingtool_resultblock in the next message" message (fixes #102) -
Added a prompt to approve new paths in
-pmode. Also added--allow-all-pathsargument that approves access to all paths. -
Changed parsing of environment variables in MCP server configuration to treat the value of the
envsection as literal values (fixes #26).
Customers who have configured MCP Servers for use with the CLI will need to make a slight modification to their~/.copilot/mcp-config.json. For any servers they have added with anenvsection, they will need to go add a$to the start of the "value" pair of the key value pair of each entry in the env-block, so to have the values treated as references to environment variables.For example: Before:
{ "env": { "GITHUB_ACCESS_TOKEN": "GITHUB_TOKEN" } }Before this change, the CLI would read the value of
GITHUB_TOKENfrom the environment of the CLI and set the environment varaible namedGITHUB_ACCESS_TOKENin the MCP process to that value. With this change,GITHUB_ACCESS_TOKENwould now be set to the literal valueGITHUB_TOKEN. To get the old behavior, change to this:{ "env": { "GITHUB_ACCESS_TOKEN": "${GITHUB_TOKEN}" } }
Run npm install -g @github/copilot@latest to update!