Skip to content

Update @github/copilot to 1.0.44#1240

Closed
github-actions[bot] wants to merge 1 commit intomainfrom
update-copilot-1.0.44
Closed

Update @github/copilot to 1.0.44#1240
github-actions[bot] wants to merge 1 commit intomainfrom
update-copilot-1.0.44

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented May 9, 2026

Automated update of @github/copilot to version 1.0.44.

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 May 9, 2026 02:09
Copilot AI review requested due to automatic review settings May 9, 2026 02:09
@stephentoub stephentoub requested a review from a team as a code owner May 9, 2026 02:09
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

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/copilot from ^1.0.44-2 to ^1.0.44 across 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.multiplier becoming 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 thread go/rpc/generated_rpc.go
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"`
}
@stephentoub stephentoub closed this May 9, 2026
@stephentoub stephentoub deleted the update-copilot-1.0.44 branch May 9, 2026 02:21
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.

2 participants