0.0.340 #293
RyanHecht
announced in
Announcements
0.0.340
#293
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
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 {"message":"messages.78:tool_useids were found withouttool_resultblocks immediately after: toolu_013Ar6KT5dwjTY6oNdZqZ7bJ. Eachtool_useblock must have a correspondingtool_resultblock in the next message.","code":"invalid_request_body"} #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 mcp env gets ignored #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@latestto update!This discussion was created from the release 0.0.340.
Beta Was this translation helpful? Give feedback.
All reactions