Update @github/copilot to 1.0.44#1240
Closed
github-actions[bot] wants to merge 1 commit intomainfrom
Closed
Conversation
- Updated nodejs and test harness dependencies - Re-ran code generators - Formatted generated code
stephentoub
approved these changes
May 9, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the monorepo’s @github/copilot dependency to 1.0.44 (stable) and re-runs the cross-language code generators so the SDKs stay aligned with the updated CLI JSON-RPC schema.
Changes:
- Bumped
@github/copilotfrom^1.0.44-2to^1.0.44across Node + test harness lockfiles. - Regenerated RPC/session-event types across Rust, Python, Node, Go, and .NET (including new permission variants and
session.tasks.sendMessage). - Updated model/workspace schema surfaces (notably
ModelBilling.multiplierbecoming optional; workspace fields removed in generated RPC types).
Show a summary per file
| File | Description |
|---|---|
| test/harness/package.json | Updates devDependency to @github/copilot@^1.0.44. |
| test/harness/package-lock.json | Locks @github/copilot and platform packages to 1.0.44. |
| nodejs/package.json | Updates @github/copilot dependency range to ^1.0.44. |
| nodejs/package-lock.json | Locks @github/copilot and platform packages to 1.0.44. |
| nodejs/samples/package-lock.json | Updates sample lockfile to @github/copilot@^1.0.44. |
| nodejs/src/generated/rpc.ts | Regenerated RPC types/surface (incl. ModelBilling.multiplier?: number, tasks sendMessage). |
| nodejs/src/generated/session-events.ts | Regenerated session events (incl. detached session field + extension permission kinds). |
| python/copilot/generated/rpc.py | Regenerated RPC types (incl. optional multiplier, tasks send_message). |
| python/copilot/generated/session_events.py | Regenerated session events for new permission kinds + detached session field. |
| go/rpc/generated_rpc.go | Regenerated typed Go RPC client/types (incl. ModelBilling.Multiplier *float64, tasks SendMessage). |
| go/generated_session_events.go | Regenerated Go session event types for new fields/kinds. |
| rust/src/generated/api_types.rs | Regenerated Rust API types (incl. optional billing multiplier; new tasks sendMessage types). |
| rust/src/generated/rpc.rs | Adds generated session.tasks.sendMessage RPC wrapper. |
| rust/src/generated/session_events.rs | Regenerated Rust session events with new permission variants + detached session field. |
| dotnet/src/Generated/Rpc.cs | Regenerated .NET RPC types (incl. double? Multiplier, tasks SendMessageAsync). |
| dotnet/src/Generated/SessionEvents.cs | Regenerated .NET session events (incl. detached session field + extension permission variants). |
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/16 changed files
- Comments generated: 2
Comment on lines
75
to
81
| /// <summary>Billing information.</summary> | ||
| public sealed class ModelBilling | ||
| { | ||
| /// <summary>Billing cost multiplier relative to the base rate.</summary> | ||
| [JsonPropertyName("multiplier")] | ||
| public double Multiplier { get; set; } | ||
| public double? Multiplier { get; set; } | ||
| } |
Comment on lines
924
to
928
| // Billing information | ||
| type ModelBilling struct { | ||
| // Billing cost multiplier relative to the base rate | ||
| Multiplier float64 `json:"multiplier"` | ||
| Multiplier *float64 `json:"multiplier,omitempty"` | ||
| } |
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.Changes
@github/copilotinnodejs/package.jsonandtest/harness/package.jsonscripts/codegen)Next steps
When ready, click Ready for review to trigger CI checks.