Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitcf0e05e

Browse files
Update togoogle/go-github@v77 (#1357)
* update to google/go-github@v77* licences update from required CI build* fixes licences* fixes possible nil reference* refresh licences due to recent conflicts---------Co-authored-by: Roberto Nacu <kerobbi@github.com>
1 parent1090290 commitcf0e05e

File tree

48 files changed

+58
-74
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+58
-74
lines changed

‎cmd/github-mcp-server/generate_docs.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/github/github-mcp-server/pkg/raw"
1414
"github.com/github/github-mcp-server/pkg/toolsets"
1515
"github.com/github/github-mcp-server/pkg/translations"
16-
gogithub"github.com/google/go-github/v76/github"
16+
gogithub"github.com/google/go-github/v77/github"
1717
"github.com/mark3labs/mcp-go/mcp"
1818
"github.com/shurcooL/githubv4"
1919
"github.com/spf13/cobra"

‎e2e/e2e_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/github/github-mcp-server/internal/ghmcp"
1919
"github.com/github/github-mcp-server/pkg/github"
2020
"github.com/github/github-mcp-server/pkg/translations"
21-
gogithub"github.com/google/go-github/v76/github"
21+
gogithub"github.com/google/go-github/v77/github"
2222
mcpClient"github.com/mark3labs/mcp-go/client"
2323
"github.com/mark3labs/mcp-go/mcp"
2424
"github.com/stretchr/testify/require"

‎go.mod‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/github/github-mcp-server
33
go1.24.0
44

55
require (
6-
github.com/google/go-github/v76v76.0.0
6+
github.com/google/go-github/v77v77.0.0
77
github.com/josephburnett/jdv1.9.2
88
github.com/mark3labs/mcp-gov0.36.0
99
github.com/microcosm-cc/bluemondayv1.0.27

‎go.sum‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
2626
github.com/google/go-cmpv0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
2727
github.com/google/go-github/v71v71.0.0 h1:Zi16OymGKZZMm8ZliffVVJ/Q9YZreDKONCr+WUd0Z30=
2828
github.com/google/go-github/v71v71.0.0/go.mod h1:URZXObp2BLlMjwu0O8g4y6VBneUj2bCHgnI8FfgZ51M=
29-
github.com/google/go-github/v76v76.0.0 h1:MCa9VQn+VG5GG7Y7BAkBvSRUN3o+QpaEOuZwFPJmdFA=
30-
github.com/google/go-github/v76v76.0.0/go.mod h1:38+d/8pYDO4fBLYfBhXF5EKO0wA3UkXBjfmQapFsNCQ=
29+
github.com/google/go-github/v77v77.0.0 h1:9DsKKbZqil5y/4Z9mNpZDQnpli6PJbqipSuuNdcbjwI=
30+
github.com/google/go-github/v77v77.0.0/go.mod h1:c8VmGXRUmaZUqbctUcGEDWYnMrtzZfJhDSylEf1wfmA=
3131
github.com/google/go-querystringv1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
3232
github.com/google/go-querystringv1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
3333
github.com/google/uuidv1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=

‎internal/ghmcp/server.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
mcplog"github.com/github/github-mcp-server/pkg/log"
2020
"github.com/github/github-mcp-server/pkg/raw"
2121
"github.com/github/github-mcp-server/pkg/translations"
22-
gogithub"github.com/google/go-github/v76/github"
22+
gogithub"github.com/google/go-github/v77/github"
2323
"github.com/mark3labs/mcp-go/mcp"
2424
"github.com/mark3labs/mcp-go/server"
2525
"github.com/shurcooL/githubv4"

‎pkg/errors/error.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/google/go-github/v76/github"
7+
"github.com/google/go-github/v77/github"
88
"github.com/mark3labs/mcp-go/mcp"
99
)
1010

‎pkg/errors/error_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"testing"
88

9-
"github.com/google/go-github/v76/github"
9+
"github.com/google/go-github/v77/github"
1010
"github.com/stretchr/testify/assert"
1111
"github.com/stretchr/testify/require"
1212
)

‎pkg/github/actions.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
buffer"github.com/github/github-mcp-server/pkg/buffer"
1313
ghErrors"github.com/github/github-mcp-server/pkg/errors"
1414
"github.com/github/github-mcp-server/pkg/translations"
15-
"github.com/google/go-github/v76/github"
15+
"github.com/google/go-github/v77/github"
1616
"github.com/mark3labs/mcp-go/mcp"
1717
"github.com/mark3labs/mcp-go/server"
1818
)

‎pkg/github/actions_test.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"github.com/github/github-mcp-server/internal/profiler"
1616
buffer"github.com/github/github-mcp-server/pkg/buffer"
1717
"github.com/github/github-mcp-server/pkg/translations"
18-
"github.com/google/go-github/v76/github"
18+
"github.com/google/go-github/v77/github"
1919
"github.com/migueleliasweb/go-github-mock/src/mock"
2020
"github.com/stretchr/testify/assert"
2121
"github.com/stretchr/testify/require"

‎pkg/github/code_scanning.go‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99

1010
ghErrors"github.com/github/github-mcp-server/pkg/errors"
1111
"github.com/github/github-mcp-server/pkg/translations"
12-
"github.com/google/go-github/v76/github"
12+
"github.com/google/go-github/v77/github"
1313
"github.com/mark3labs/mcp-go/mcp"
1414
"github.com/mark3labs/mcp-go/server"
1515
)

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp