Skip to content

Update @github/copilot to 1.0.32-1#1105

Merged
stephentoub merged 8 commits intomainfrom
update-copilot-1.0.32-1
Apr 18, 2026
Merged

Update @github/copilot to 1.0.32-1#1105
stephentoub merged 8 commits intomainfrom
update-copilot-1.0.32-1

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

Automated update of @github/copilot to version 1.0.32-1.

Changes

  • Updated @github/copilot in nodejs/package.json and test/harness/package.json
  • Re-ran all code generators (scripts/codegen)
  • Formatted generated output

Next steps

When ready, click Ready for review to trigger CI checks.

Created by the Update @github/copilot Dependency workflow.

- Updated nodejs and test harness dependencies
- Re-ran code generators
- Formatted generated code
@stephentoub stephentoub marked this pull request as ready for review April 17, 2026 20:07
@stephentoub stephentoub requested a review from a team as a code owner April 17, 2026 20:07
Copilot AI review requested due to automatic review settings April 17, 2026 20:07
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Automated dependency bump of @github/copilot to 1.0.32-1 across the monorepo, with regenerated protocol/SDK bindings to match the updated schemas.

Changes:

  • Updated @github/copilot version in Node packages (SDK, harness, samples) and lockfiles.
  • Regenerated Node/Go/Python/.NET generated protocol and session-event types from the updated schemas.
  • Added newly generated protocol surface (e.g., session.instructions.getSources) and updated generated models/events.
Show a summary per file
File Description
test/harness/package.json Bumps @github/copilot devDependency for the test harness.
test/harness/package-lock.json Updates resolved @github/copilot artifacts for harness.
nodejs/package.json Bumps @github/copilot dependency for Node SDK.
nodejs/package-lock.json Updates resolved @github/copilot artifacts for Node SDK.
nodejs/samples/package-lock.json Updates resolved @github/copilot artifacts for samples.
nodejs/src/generated/session-events.ts Regenerated session-event union/types; adds agentId and refactors working-directory context types.
nodejs/src/generated/rpc.ts Regenerated RPC schema bindings; adds instructions API and refactors various schema types.
python/copilot/generated/session_events.py Regenerated Python session-event dataclasses/enums for updated schema.
go/rpc/generated_rpc.go Regenerated Go RPC bindings; adds instructions API and refactors schema types.
go/generated_session_events.go Regenerated Go session-event structs/enums for updated schema.
dotnet/src/Generated/SessionEvents.cs Regenerated .NET session-event models (context refactor, deprecations).
dotnet/src/Generated/Rpc.cs Regenerated .NET RPC models/APIs (instructions API, agent info refactor).

Copilot's findings

Files not reviewed (3)
  • nodejs/package-lock.json: Language not supported
  • nodejs/samples/package-lock.json: Language not supported
  • test/harness/package-lock.json: Language not supported
  • Files reviewed: 4/13 changed files
  • Comments generated: 4

Comment thread go/rpc/generated_rpc.go Outdated
Comment thread dotnet/src/Generated/SessionEvents.cs
Comment thread go/generated_session_events.go
Comment thread dotnet/src/Generated/Rpc.cs Outdated
@stephentoub
Copy link
Copy Markdown
Collaborator

@copilot add a message to the obsolete attributes emitted by the C# generator about the types being deprecated and being removed in a future version

Copilot AI and others added 2 commits April 17, 2026 22:15
Copy link
Copy Markdown
Contributor

Copilot AI commented Apr 17, 2026

@copilot add a message to the obsolete attributes emitted by the C# generator about the types being deprecated and being removed in a future version

Done in 793eb03. All [Obsolete] attributes emitted by the C# generator now include the message "This member is deprecated and will be removed in a future version.". Updated all 15 emission sites in scripts/codegen/csharp.ts and re-ran the generator to update dotnet/src/Generated/SessionEvents.cs.

Warning

Firewall rules blocked me from connecting to one or more addresses (expand for details)

I tried to connect to the following addresses, but was blocked by firewall rules:

  • https://api.github.com/copilot_internal/user
    • Triggering command: /home/REDACTED/work/copilot-sdk/copilot-sdk/dotnet/test/bin/Debug/net8.0/runtimes/linux-x64/native/copilot /home/REDACTED/work/copilot-sdk/copilot-sdk/dotnet/test/bin/Debug/net8.0/runtimes/linux-x64/native/copilot --headless --no-auto-update --log-level info --stdio (http block)
    • Triggering command: /home/REDACTED/work/copilot-sdk/copilot-sdk/dotnet/test/bin/Debug/net8.0/runtimes/linux-x64/native/copilot /home/REDACTED/work/copilot-sdk/copilot-sdk/dotnet/test/bin/Debug/net8.0/runtimes/linux-x64/native/copilot --headless --no-auto-update --log-level info --stdio start cal/bin/which get --local time/copilot-dev--show-toplevel sh -c tsx server.ts git ndor/bin/git .0.32-1^{commit}which --local ache/node/22.22.2/x64/bin/bash git (http block)
    • Triggering command: /home/REDACTED/work/copilot-sdk/copilot-sdk/dotnet/test/bin/Debug/net8.0/runtimes/linux-x64/native/copilot /home/REDACTED/work/copilot-sdk/copilot-sdk/dotnet/test/bin/Debug/net8.0/runtimes/linux-x64/native/copilot --headless --no-auto-update --log-level info --stdio git ich get --local otnet which git (http block)

If you need me to access, download, or install something from one of these locations, you can either:

stephentoub and others added 5 commits April 17, 2026 20:28
- Add shared nullable-required schema normalization in codegen utils
  (converts required \ properties with null descriptions to anyOf pattern)
- Add Python forward-reference topological sort in codegen
- Update Go type alias for renamed PurpleModelCapabilitiesOverrideLimitsVision
- Add Go type conversion helper for duplicate quicktype-generated types
- Add Node.js model capabilities normalization (backfill supports/limits)
- Regenerate all language bindings with fixes applied

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Use 'any' cast instead of 'Record<string, unknown>' to avoid
TS2352 errors with strict interface types.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Import ModelCapabilitiesClass (used by generated ModelSwitchToRequest)
instead of ModelCapabilitiesOverride which is now a separate duplicate type.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Client 2's event handler receives events asynchronously, so checking
immediately after SendAndWait may miss them. Replace instant checks
with polling (waitForEventsByType) that retries for up to 5 seconds.
Applied to both 'approves' and 'rejects' subtests for consistency.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@stephentoub stephentoub enabled auto-merge April 18, 2026 00:58
@stephentoub stephentoub disabled auto-merge April 18, 2026 00:58
@stephentoub stephentoub merged commit cf5694c into main Apr 18, 2026
35 of 36 checks passed
@stephentoub stephentoub deleted the update-copilot-1.0.32-1 branch April 18, 2026 00:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants