Thanks to visit codestin.com
Credit goes to github.com

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/github-mcp-server
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.1
Choose a base ref
...
head repository: github/github-mcp-server
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.2
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Apr 22, 2026

  1. Fix set_issue_fields mutation: use correct inline fragments for Issue…

    …FieldValue union (#2366)
    
    * Fix set_issue_fields mutation: use correct inline fragments for IssueFieldValue union
    
    The mutation response struct used a single inline fragment
    '... on IssueFieldDateValue' with a 'Name' field that doesn't exist
    on that type (only IssueFieldSingleSelectValue has 'name'). This
    caused GraphQL validation to fail with:
    
      Field 'name' doesn't exist on type 'IssueFieldDateValue'
    
    Since GraphQL validates the entire document (including response
    selection sets) before executing any operation, the mutation never
    fired at all — no fields were ever set regardless of input.
    
    Fix by adding correct inline fragments for all four union types:
    - IssueFieldTextValue (value)
    - IssueFieldSingleSelectValue (name)
    - IssueFieldDateValue (value)
    - IssueFieldNumberValue (value)
    
    * Update test mock to match corrected inline fragments
    
    * Update handler_test.go formatting
    iulia-b authored Apr 22, 2026
    Configuration menu
    Copy the full SHA
    3a6a6f6 View commit details
    Browse the repository at this point in the history
Loading