Update @github/copilot to 1.0.44-2#1225
Merged
stephentoub merged 1 commit intomainfrom May 7, 2026
Merged
Conversation
- Updated nodejs and test harness dependencies - Re-ran code generators - Formatted generated code
stephentoub
approved these changes
May 7, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the monorepo’s @github/copilot dependency to 1.0.44-2 and regenerates the SDKs’ session-event types from the updated schema so all language bindings stay in sync with the Copilot CLI JSON-RPC protocol.
Changes:
- Bumped
@github/copilotto^1.0.44-2across Node package manifests/lockfiles (including test harness and samples lockfile). - Regenerated session-event types across Rust/Python/Node/Go/.NET, including a new
AbortReasonand an optionalmodelonSubagentStartedData. - Reformatted generated output.
Show a summary per file
| File | Description |
|---|---|
| test/harness/package.json | Updates harness devDependency on @github/copilot to ^1.0.44-2. |
| test/harness/package-lock.json | Locks harness resolution to @github/copilot@1.0.44-2 and platform optional deps. |
| nodejs/package.json | Updates Node SDK dependency on @github/copilot to ^1.0.44-2. |
| nodejs/package-lock.json | Locks Node SDK resolution to @github/copilot@1.0.44-2 and platform optional deps. |
| nodejs/samples/package-lock.json | Updates sample lockfile to reflect the new transitive @github/copilot version. |
| nodejs/src/generated/session-events.ts | Regenerated TS session event types (adds AbortReason, adds model? to subagent start, narrows abort reason). |
| python/copilot/generated/session_events.py | Regenerated Python session event types (adds AbortReason, adds model, changes abort reason from str to enum). |
| go/generated_session_events.go | Regenerated Go session event types (adds AbortReason constants, model on subagent start). |
| dotnet/src/Generated/SessionEvents.cs | Regenerated .NET session event types (adds AbortReason enum, adds Model on subagent start). |
| rust/src/generated/session_events.rs | Regenerated Rust session event types (adds AbortReason enum with Unknown, adds model on subagent start). |
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: 3/10 changed files
- Comments generated: 1
Comment on lines
2155
to
+2160
| /// <summary>Turn abort information including the reason for termination.</summary> | ||
| public partial class AbortData | ||
| { | ||
| /// <summary>Reason the current turn was aborted (e.g., "user initiated").</summary> | ||
| /// <summary>Finite reason code describing why the current turn was aborted.</summary> | ||
| [JsonPropertyName("reason")] | ||
| public required string Reason { get; set; } | ||
| public required AbortReason Reason { get; set; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated update of
@github/copilotto version1.0.44-2.Changes
@github/copilotinnodejs/package.jsonandtest/harness/package.jsonscripts/codegen)Next steps
When ready, click Ready for review to trigger CI checks.