Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: github/copilot-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 67ab1d5
Choose a base ref
...
head repository: github/copilot-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 08dfdb0
Choose a head ref
  • 1 commit
  • 3 files changed
  • 2 contributors

Commits on Mar 13, 2026

  1. go: change LogOptions.Ephemeral from bool to *bool

    Previously, LogOptions.Ephemeral was a plain bool, so callers could not
    distinguish between 'not set' (zero value false) and an explicit false.
    This meant the SDK could never send ephemeral=false on the wire, always
    deferring to the server default.
    
    Change the field to *bool so nil means 'not set' (omitted from the
    JSON-RPC payload) and a non-nil value is forwarded as-is. This is
    consistent with how the other SDKs (Node, Python, .NET) handle the
    field.
    
    BREAKING CHANGE: Callers must now use copilot.Bool(true) or
    copilot.Bool(false) instead of a bare bool literal.
    
    Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
    SteveSandersonMS and Copilot committed Mar 13, 2026
    Configuration menu
    Copy the full SHA
    08dfdb0 View commit details
    Browse the repository at this point in the history
Loading