Merged
Conversation
Auto-generated by license-check workflow
…ub' into bump-google-go-github
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the project’s GitHub API client dependency to a newer google/go-github major version and refreshes the related dependency metadata and licensing artifacts used by this MCP server.
Changes:
- Bump
github.com/google/go-githubfromv79tov82(andgo-querystringtov1.2.0) and updatego.mod/go.sum. - Update all Go import paths from
go-github/v79togo-github/v82across packages and tests (including e2e). - Update generated third-party license docs and add the new vendored LICENSE file under
third-party/.
Reviewed changes
Copilot reviewed 51 out of 53 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| third-party/github.com/google/go-github/v82/github/LICENSE | Adds vendored license file for the updated go-github version. |
| third-party-licenses.windows.md | Updates listed dependency versions for go-github/go-querystring. |
| third-party-licenses.linux.md | Updates listed dependency versions for go-github/go-querystring. |
| third-party-licenses.darwin.md | Updates listed dependency versions for go-github/go-querystring. |
| go.mod | Bumps go-github (and related deps) and updates module requirements. |
| go.sum | Updates checksums to match the new dependency graph. |
| pkg/raw/raw.go | Updates go-github import to v82. |
| pkg/raw/raw_test.go | Updates go-github import to v82. |
| pkg/github/tools.go | Updates go-github import to v82. |
| pkg/github/server_test.go | Updates go-github import to v82. |
| pkg/github/security_advisories.go | Updates go-github import to v82. |
| pkg/github/security_advisories_test.go | Updates go-github import to v82. |
| pkg/github/secret_scanning.go | Updates go-github import to v82. |
| pkg/github/secret_scanning_test.go | Updates go-github import to v82. |
| pkg/github/search.go | Updates go-github import to v82. |
| pkg/github/search_test.go | Updates go-github import to v82. |
| pkg/github/search_utils.go | Updates go-github import to v82. |
| pkg/github/repository_resource.go | Updates go-github import to v82. |
| pkg/github/repository_resource_test.go | Updates go-github import to v82. |
| pkg/github/repository_resource_completions.go | Updates go-github import to v82. |
| pkg/github/repository_resource_completions_test.go | Updates go-github import to v82. |
| pkg/github/repositories.go | Updates go-github import to v82. |
| pkg/github/repositories_helper.go | Updates go-github import to v82. |
| pkg/github/repositories_test.go | Updates go-github import to v82. |
| pkg/github/pullrequests.go | Updates go-github import to v82. |
| pkg/github/pullrequests_test.go | Updates go-github import to v82. |
| pkg/github/projects.go | Updates go-github import to v82. |
| pkg/github/projects_test.go | Updates go-github import to v82. |
| pkg/github/params.go | Updates go-github import to v82. |
| pkg/github/params_test.go | Updates go-github import to v82. |
| pkg/github/notifications.go | Updates go-github import to v82. |
| pkg/github/notifications_test.go | Updates go-github import to v82. |
| pkg/github/minimal_types.go | Updates go-github import to v82. |
| pkg/github/issues.go | Updates go-github import to v82. |
| pkg/github/issues_test.go | Updates go-github import to v82. |
| pkg/github/git.go | Updates go-github import to v82. |
| pkg/github/git_test.go | Updates go-github import to v82. |
| pkg/github/gists.go | Updates go-github import to v82. |
| pkg/github/gists_test.go | Updates go-github import to v82. |
| pkg/github/discussions.go | Updates go-github import to v82. |
| pkg/github/discussions_test.go | Updates go-github import to v82. |
| pkg/github/dependencies.go | Updates go-github import to v82. |
| pkg/github/dependabot.go | Updates go-github import to v82. |
| pkg/github/dependabot_test.go | Updates go-github import to v82. |
| pkg/github/context_tools_test.go | Updates go-github import to v82. |
| pkg/github/code_scanning.go | Updates go-github import to v82. |
| pkg/github/code_scanning_test.go | Updates go-github import to v82. |
| pkg/github/actions.go | Updates go-github import to v82. |
| pkg/github/actions_test.go | Updates go-github import to v82. |
| pkg/errors/error.go | Updates go-github import to v82. |
| pkg/errors/error_test.go | Updates go-github import to v82. |
| internal/ghmcp/server.go | Updates go-github import to v82. |
| e2e/e2e_test.go | Updates go-github import to v82. |
go.mod
Outdated
Comment on lines
6
to
10
| github.com/fatih/color v1.18.0 | ||
| github.com/google/go-github/v82 v82.0.0 | ||
| github.com/google/jsonschema-go v0.4.2 | ||
| github.com/josephburnett/jd/v2 v2.4.0 | ||
| github.com/microcosm-cc/bluemonday v1.0.27 |
There was a problem hiding this comment.
github.com/fatih/color is now listed as a direct dependency, but it isn’t imported anywhere in the repo. This will likely cause the CI go mod tidy -diff step to fail (tidy will remove it or mark it // indirect). Please run go mod tidy and commit the resulting go.mod/go.sum changes, or remove this dep if it was added accidentally.
tommaso-moro
previously approved these changes
Feb 12, 2026
* Initial plan * Remove unused github.com/fatih/color dependency The fatih/color package was listed in go.mod but not actually imported or used anywhere in the codebase. This caused the CI "go mod tidy -diff" check to fail. Running go mod tidy removed: - github.com/fatih/color v1.18.0 - github.com/mattn/go-colorable v0.1.13 (transitive) - github.com/mattn/go-isatty v0.0.20 (transitive) Fixes the failing ubuntu-latest workflow build. Co-authored-by: JoannaaKL <67866556+JoannaaKL@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: JoannaaKL <67866556+JoannaaKL@users.noreply.github.com>
omgitsads
approved these changes
Feb 12, 2026
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.
Updated google/go-github to the latest version
MCP impact
Prompts tested (tool changes only)
Security / limits
Tool renaming
deprecated_tool_aliases.goNote: if you're renaming tools, you must add the tool aliases. For more information on how to do so, please refer to the official docs.
Lint & tests
./script/lint./script/testDocs