Skip to content

Commit 08b486d

Browse files
github-actions[bot]stephentoubCopilot
authored
Update @github/copilot to 1.0.41-1 (#1202)
* Update @github/copilot to 1.0.41-1 - Updated nodejs and test harness dependencies - Re-ran code generators - Formatted generated code * Fix .NET pending work resume test Avoid waiting for an assistant continuation after resuming with continuePendingWork=false. The runtime can interrupt pending work before a manual completion drives another model turn, so the test now only verifies the pending tool call remains handleable. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Stephen Toub <stoub@microsoft.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent c9433c4 commit 08b486d

10 files changed

Lines changed: 69 additions & 70 deletions

File tree

dotnet/src/Generated/SessionEvents.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dotnet/test/E2E/PendingWorkResumeE2ETests.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,9 @@ await session1.SendAsync(new MessageOptions
213213
result: "EXTERNAL_RESUMED_BETA");
214214
Assert.True(resumedResult.Success);
215215

216-
var answer = await TestHelper.GetFinalAssistantMessageAsync(session2, PendingWorkTimeout);
217-
216+
// continuePendingWork=false may interrupt agent continuation before this response,
217+
// but the pending call should still accept an explicit completion.
218218
Assert.Equal(1, invocationCount);
219-
Assert.Contains("EXTERNAL_RESUMED_BETA", answer?.Data.Content ?? string.Empty);
220219

221220
await session2.DisposeAsync();
222221
await resumedClient.ForceStopAsync();

go/generated_session_events.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/package-lock.json

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"author": "GitHub",
5757
"license": "MIT",
5858
"dependencies": {
59-
"@github/copilot": "^1.0.41-0",
59+
"@github/copilot": "^1.0.41-1",
6060
"vscode-jsonrpc": "^8.2.1",
6161
"zod": "^4.3.6"
6262
},

nodejs/samples/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/src/generated/session-events.ts

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/copilot/generated/session_events.py

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/harness/package-lock.json

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/harness/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"test": "vitest run"
1212
},
1313
"devDependencies": {
14-
"@github/copilot": "^1.0.41-0",
14+
"@github/copilot": "^1.0.41-1",
1515
"@modelcontextprotocol/sdk": "^1.26.0",
1616
"@types/node": "^25.3.3",
1717
"@types/node-forge": "^1.3.14",

0 commit comments

Comments
 (0)