Update @github/copilot to 1.0.44-3#1239
Merged
stephentoub merged 2 commits intomainfrom May 9, 2026
Merged
Conversation
- Updated nodejs and test harness dependencies - Re-ran code generators - Formatted generated code
dmytrostruk
approved these changes
May 9, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR bumps the monorepo’s @github/copilot dependency to 1.0.44-3 and refreshes the generated cross-SDK protocol bindings so the Node, Python, Go, Rust, and .NET SDKs stay aligned with the updated CLI JSON-RPC / session-event schemas.
Changes:
- Updated
@github/copilotto^1.0.44-3across Node packages and the test harness lockfiles. - Regenerated protocol types across languages, including new extension-related permission request/prompt variants and an experimental
session.tasks.sendMessageRPC. - Updated schema fields (notably
ModelBilling.multiplierbecoming optional, and removal of workspacesession_sync_levelfields).
Show a summary per file
| File | Description |
|---|---|
| test/harness/package.json | Bumps @github/copilot to ^1.0.44-3 for the harness. |
| test/harness/package-lock.json | Locks harness dependency graph to @github/copilot@1.0.44-3 and platform artifacts. |
| nodejs/package.json | Bumps @github/copilot to ^1.0.44-3 for the Node SDK. |
| nodejs/package-lock.json | Locks Node SDK dependency graph to @github/copilot@1.0.44-3 and platform artifacts. |
| nodejs/samples/package-lock.json | Updates sample lockfile transitive dependency resolution to ^1.0.44-3. |
| nodejs/src/generated/session-events.ts | Regenerated session-event types (adds extension permission request/prompt variants, detached session field). |
| nodejs/src/generated/rpc.ts | Regenerated RPC types (adds tasks.sendMessage, makes ModelBilling.multiplier optional, etc.). |
| python/copilot/generated/session_events.py | Regenerated session-event dataclasses/enums for new permission kinds + detached session field. |
| python/copilot/generated/rpc.py | Regenerated RPC dataclasses (adds tasks.send_message, optional ModelBilling.multiplier, etc.). |
| go/generated_session_events.go | Regenerated Go session-event types (new permission kinds + detached session field). |
| go/rpc/generated_rpc.go | Regenerated Go RPC client/types (adds TasksApi.SendMessage, optional ModelBilling.Multiplier, removes SessionSyncLevel). |
| rust/src/generated/session_events.rs | Regenerated Rust session-event structs/enums (new permission variants + detached session field). |
| rust/src/generated/api_types.rs | Regenerated Rust RPC schema types (adds session.tasks.sendMessage, optional ModelBilling.multiplier, etc.). |
| rust/src/generated/rpc.rs | Regenerated Rust RPC client (adds SessionRpcTasks::send_message). |
| dotnet/src/Generated/SessionEvents.cs | Regenerated .NET session-event models (new permission variants + detached session field). |
| dotnet/src/Generated/Rpc.cs | Regenerated .NET RPC models/client (adds sendMessage support + optional multiplier). |
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
The regenerated wire types now treat `ModelBilling.multiplier` as optional, matching the upstream schema relaxation. Update the hand-coded public surface mirrors so each language's stable API can represent an absent multiplier instead of silently coercing to zero (Go/.NET) or raising at decode time (Python). - nodejs/src/types.ts: `multiplier?: number` - go/types.go: `*float64` with `omitempty` - dotnet/src/Types.cs: `double?` - python/copilot/client.py: `float | None = None`; from_dict no longer raises on absence; to_dict skips serializing None
Contributor
Author
Cross-SDK Consistency Review ✅This PR ( Changes Reviewed
Notes
No inconsistencies found. The automated codegen pipeline is working correctly. 🎉
|
Collaborator
|
Replaced by #1240 |
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-3.Changes
@github/copilotinnodejs/package.jsonandtest/harness/package.jsonscripts/codegen)Next steps
When ready, click Ready for review to trigger CI checks.