Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
b39f0de
Update sessionFs types for structured error contract and add workspac…
SteveSandersonMS Apr 17, 2026
569aa34
Fix codegen: deduplicate $ ef siblings and $defs aliases
SteveSandersonMS Apr 20, 2026
1d46315
Codegen updates and fixes
SteveSandersonMS Apr 20, 2026
c6e97d4
Fix nullable result types in all 4 SDK codegens
SteveSandersonMS Apr 20, 2026
2209a43
More codegen fixes
SteveSandersonMS Apr 20, 2026
507f2da
So many more codegen fixes
SteveSandersonMS Apr 20, 2026
9b8a314
Logging for C# e2e tests
SteveSandersonMS Apr 20, 2026
240ceda
Fix C# SessionFs tests
SteveSandersonMS Apr 20, 2026
24a4b71
Add idiomatic SessionFsProvider abstractions for all 4 SDK languages
SteveSandersonMS Apr 20, 2026
01d231c
fix: Python JSON-RPC dispatch sends null for void results
SteveSandersonMS Apr 20, 2026
2a48182
Simplify per-language codegen now the runtime schema refs all types
SteveSandersonMS Apr 21, 2026
bb01a02
Emit code members in alphabetical order
SteveSandersonMS Apr 21, 2026
060c11d
Regenerate all codegen output from rebased runtime schemas
SteveSandersonMS Apr 21, 2026
554158b
Another Python quicktype fix
SteveSandersonMS Apr 21, 2026
926cd1e
Formatting
SteveSandersonMS Apr 21, 2026
259c080
CR fixes
SteveSandersonMS Apr 21, 2026
cb89f1b
Update runtime package
SteveSandersonMS Apr 21, 2026
a02535a
Fix Python: use timezone.utc for ty compatibility, remove unused import
SteveSandersonMS Apr 21, 2026
be157a9
fix: update grep snapshot for relative path output in @github/copilot…
SteveSandersonMS Apr 21, 2026
3e47292
fix: regenerate compaction snapshot and unskip test
SteveSandersonMS Apr 21, 2026
721a436
fix: propagate schema defaults through $ ef in Python codegen
SteveSandersonMS Apr 21, 2026
b5f91e2
fix: add mode parameter to Go and .NET mkdir interfaces
SteveSandersonMS Apr 21, 2026
0544e31
fix: add mode parameter to writeFile and appendFile across all SDKs
SteveSandersonMS Apr 21, 2026
1935f7d
fix: revert compaction snapshot and skip compaction tests for all lan…
SteveSandersonMS Apr 21, 2026
abf6a32
style: fix ruff formatting for test_compaction.py
SteveSandersonMS Apr 21, 2026
2e48572
fix: move createSessionFsAdapter to value export block
SteveSandersonMS Apr 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dotnet/src/Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Logging.Abstractions;
using StreamJsonRpc;
using StreamJsonRpc.Protocol;
using System.Collections.Concurrent;
using System.Data;
using System.Diagnostics;
Expand Down Expand Up @@ -1104,7 +1105,7 @@ await Rpc.SessionFs.SetProviderAsync(
cancellationToken);
}

private void ConfigureSessionFsHandlers(CopilotSession session, Func<CopilotSession, ISessionFsHandler>? createSessionFsHandler)
private void ConfigureSessionFsHandlers(CopilotSession session, Func<CopilotSession, SessionFsProvider>? createSessionFsHandler)
{
if (_options.SessionFs is null)
{
Expand Down Expand Up @@ -1836,6 +1837,7 @@ private static LogLevel MapLevel(TraceEventType eventType)
AllowOutOfOrderMetadataProperties = true,
NumberHandling = JsonNumberHandling.AllowReadingFromString,
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull)]
[JsonSerializable(typeof(CommonErrorData))]
[JsonSerializable(typeof(CreateSessionRequest))]
[JsonSerializable(typeof(CreateSessionResponse))]
[JsonSerializable(typeof(CustomAgentConfig))]
Expand Down
Loading
Loading