Skip to content

Bump GitHub.Copilot.SDK from 0.1.30 to 0.1.32#104

Merged
dariuszparys merged 3 commits intomainfrom
dependabot/nuget/src/Coralph/GitHub.Copilot.SDK-0.1.32
Mar 10, 2026
Merged

Bump GitHub.Copilot.SDK from 0.1.30 to 0.1.32#104
dariuszparys merged 3 commits intomainfrom
dependabot/nuget/src/Coralph/GitHub.Copilot.SDK-0.1.32

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 9, 2026

Updated GitHub.Copilot.SDK from 0.1.30 to 0.1.32.

Release notes

Sourced from GitHub.Copilot.SDK's releases.

0.1.32

Feature: backward compatibility with v2 CLI servers

SDK applications written against the v3 API now also work when connected to a v2 CLI server, with no code changes required.

Generated by Release Changelog Generator

Generated by Release Changelog Generator

0.1.31

Feature: strongly-typed PermissionRequestResultKind for .NET and Go

Rather than comparing result.Kind against undiscoverable magic strings like "approved" or "denied-interactively-by-user", .NET and Go now provide typed constants. Node and Python already had typed unions for this; this brings full parity. (#​631)

session.OnPermissionCompleted += (e) => {
    if (e.Result.Kind == PermissionRequestResultKind.Approved) { /* ... */ }
    if (e.Result.Kind == PermissionRequestResultKind.DeniedInteractivelyByUser) { /* ... */ }
};
// Go: PermissionKindApproved, PermissionKindDeniedByRules,
//     PermissionKindDeniedCouldNotRequestFromUser, PermissionKindDeniedInteractivelyByUser
if result.Kind == copilot.PermissionKindApproved { /* ... */ }

Other changes

  • feature: [Python] [Go] add get_last_session_id() / GetLastSessionID() for SDK-wide parity (was already available in Node and .NET) (#​671)
  • improvement: [Python] add timeout parameter to generated RPC methods, allowing callers to override the default 30s timeout for long-running operations (#​681)
  • bugfix: [Go] PermissionRequest fields are now properly typed (ToolName, Diff, Path, etc.) instead of a generic Extra map[string]any catch-all (#​685)

Generated by Release Changelog Generator

Commits viewable in compare view.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

---
updated-dependencies:
- dependency-name: GitHub.Copilot.SDK
  dependency-version: 0.1.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Mar 9, 2026
@dependabot dependabot Bot requested a review from dariuszparys as a code owner March 9, 2026 20:41
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels Mar 9, 2026
@dariuszparys dariuszparys requested a review from Copilot March 10, 2026 06:09
Copy link
Copy Markdown

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 is a Dependabot PR that bumps the GitHub.Copilot.SDK NuGet package from version 0.1.30 to 0.1.32. The new versions add backward compatibility with v2 CLI servers and strongly-typed PermissionRequestResultKind constants for .NET. The changes are limited to the version reference in the .csproj and the lock file for the main project.

Changes:

  • Bumps GitHub.Copilot.SDK from 0.1.30 to 0.1.32 in Coralph.csproj
  • Updates packages.lock.json for the main project with the new version hash and metadata

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.

File Description
src/Coralph/Coralph.csproj Updates PackageReference version for GitHub.Copilot.SDK from 0.1.30 to 0.1.32
src/Coralph/packages.lock.json Reflects resolved version and content hash for the updated SDK package

You can also share your feedback on Copilot code review. Take the survey.


<ItemGroup>
<PackageReference Include="GitHub.Copilot.SDK" Version="0.1.30" />
<PackageReference Include="GitHub.Copilot.SDK" Version="0.1.32" />
Copy link

Copilot AI Mar 10, 2026

Choose a reason for hiding this comment

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

The test project's packages.lock.json was not updated — it still references GitHub.Copilot.SDK version 0.1.29 in two places (transitive dependency at line 44 and project reference at line 380 of src/Coralph.Tests/packages.lock.json), while the main project now uses 0.1.32. Since RestorePackagesWithLockFile is enabled in Directory.Build.props, the committed lock file will be stale and inconsistent with the actual resolved dependency graph. Run dotnet restore to regenerate src/Coralph.Tests/packages.lock.json and include it in this PR.

Suggested change
<PackageReference Include="GitHub.Copilot.SDK" Version="0.1.32" />
<PackageReference Include="GitHub.Copilot.SDK" Version="0.1.29" />

Copilot uses AI. Check for mistakes.
dariuszparys and others added 2 commits March 10, 2026 07:39
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@dariuszparys dariuszparys merged commit 13b1b7c into main Mar 10, 2026
3 checks passed
@dariuszparys dariuszparys deleted the dependabot/nuget/src/Coralph/GitHub.Copilot.SDK-0.1.32 branch March 10, 2026 07:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants