Skip to content

Commit 9a38945

Browse files
Add changelog for v0.2.2 (#1060)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 3226676 commit 9a38945

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ All notable changes to the Copilot SDK are documented in this file.
55
This changelog is automatically generated by an AI agent when stable releases are published.
66
See [GitHub Releases](https://github.com/github/copilot-sdk/releases) for the full list.
77

8+
## [v0.2.2](https://github.com/github/copilot-sdk/releases/tag/v0.2.2) (2026-04-10)
9+
10+
### Feature: `enableConfigDiscovery` for automatic MCP and skill config loading
11+
12+
Set `enableConfigDiscovery: true` when creating a session to let the runtime automatically discover MCP server configurations (`.mcp.json`, `.vscode/mcp.json`) and skill directories from the working directory. Discovered settings are merged with any explicitly provided values; explicit values take precedence on name collision. ([#1044](https://github.com/github/copilot-sdk/pull/1044))
13+
14+
```ts
15+
const session = await client.createSession({
16+
enableConfigDiscovery: true,
17+
});
18+
```
19+
20+
```cs
21+
var session = await client.CreateSessionAsync(new SessionConfig {
22+
EnableConfigDiscovery = true,
23+
});
24+
```
25+
26+
- Python: `await client.create_session(enable_config_discovery=True)`
27+
- Go: `client.CreateSession(ctx, &copilot.SessionConfig{EnableConfigDiscovery: ptr(true)})`
28+
829
## [v0.2.1](https://github.com/github/copilot-sdk/releases/tag/v0.2.1) (2026-04-03)
930

1031
### Feature: commands and UI elicitation across all four SDKs

0 commit comments

Comments
 (0)