Skip to content

Commit 057b1d7

Browse files
authored
Bump version of go-github to v66.0.0 (#3310)
1 parent 29b756d commit 057b1d7

File tree

35 files changed

+47
-46
lines changed

35 files changed

+47
-46
lines changed

README.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# go-github #
22

33
[![go-github release (latest SemVer)](https://img.shields.io/github/v/release/google/go-github?sort=semver)](https://github.com/google/go-github/releases)
4-
[![Go Reference](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v65/github)
4+
[![Go Reference](https://img.shields.io/static/v1?label=godoc&message=reference&color=blue)](https://pkg.go.dev/github.com/google/go-github/v66/github)
55
[![Test Status](https://github.com/google/go-github/workflows/tests/badge.svg)](https://github.com/google/go-github/actions?query=workflow%3Atests)
66
[![Test Coverage](https://codecov.io/gh/google/go-github/branch/master/graph/badge.svg)](https://codecov.io/gh/google/go-github)
77
[![Discuss at [email protected]](https://img.shields.io/badge/discuss-go--github%40googlegroups.com-blue.svg)](https://groups.google.com/group/go-github)
@@ -24,29 +24,29 @@ If you're interested in using the [GraphQL API v4][], the recommended library is
2424
go-github is compatible with modern Go releases in module mode, with Go installed:
2525

2626
```bash
27-
go get github.com/google/go-github/v65
27+
go get github.com/google/go-github/v66
2828
```
2929

3030
will resolve and add the package to the current development module, along with its dependencies.
3131

3232
Alternatively the same can be achieved if you use import in a package:
3333

3434
```go
35-
import "github.com/google/go-github/v65/github"
35+
import "github.com/google/go-github/v66/github"
3636
```
3737

3838
and run `go get` without parameters.
3939

4040
Finally, to use the top-of-trunk version of this repo, use the following command:
4141

4242
```bash
43-
go get github.com/google/go-github/v65@master
43+
go get github.com/google/go-github/v66@master
4444
```
4545

4646
## Usage ##
4747

4848
```go
49-
import "github.com/google/go-github/v65/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
49+
import "github.com/google/go-github/v66/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
5050
import "github.com/google/go-github/github" // with go modules disabled
5151
```
5252

@@ -119,7 +119,7 @@ import (
119119
"net/http"
120120

121121
"github.com/bradleyfalzon/ghinstallation/v2"
122-
"github.com/google/go-github/v65/github"
122+
"github.com/google/go-github/v66/github"
123123
)
124124

125125
func main() {
@@ -153,7 +153,7 @@ import (
153153
"os"
154154
"strconv"
155155

156-
"github.com/google/go-github/v65/github"
156+
"github.com/google/go-github/v66/github"
157157
"github.com/jferrl/go-githubauth"
158158
"golang.org/x/oauth2"
159159
)
@@ -361,7 +361,7 @@ For complete usage of go-github, see the full [package docs][].
361361

362362
[GitHub API v3]: https://docs.github.com/en/rest
363363
[personal access token]: https://github.com/blog/1509-personal-api-tokens
364-
[package docs]: https://pkg.go.dev/github.com/google/go-github/v65/github
364+
[package docs]: https://pkg.go.dev/github.com/google/go-github/v66/github
365365
[GraphQL API v4]: https://developer.github.com/v4/
366366
[shurcooL/githubv4]: https://github.com/shurcooL/githubv4
367367
[GitHub webhook events]: https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads
@@ -435,6 +435,7 @@ Versions prior to 48.2.0 are not listed.
435435

436436
| go-github Version | GitHub v3 API Version |
437437
| ----------------- | --------------------- |
438+
| 66.0.0 | 2022-11-28 |
438439
| 65.0.0 | 2022-11-28 |
439440
| 64.0.0 | 2022-11-28 |
440441
| 63.0.0 | 2022-11-28 |

example/actionpermissions/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"log"
1515
"os"
1616

17-
"github.com/google/go-github/v65/github"
17+
"github.com/google/go-github/v66/github"
1818
)
1919

2020
var (

example/appengine/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"net/http"
1313
"os"
1414

15-
"github.com/google/go-github/v65/github"
15+
"github.com/google/go-github/v66/github"
1616
"google.golang.org/appengine"
1717
"google.golang.org/appengine/log"
1818
)

example/basicauth/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"os"
2222
"strings"
2323

24-
"github.com/google/go-github/v65/github"
24+
"github.com/google/go-github/v66/github"
2525
"golang.org/x/term"
2626
)
2727

example/codespaces/newreposecretwithxcrypto/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"log"
3737
"os"
3838

39-
"github.com/google/go-github/v65/github"
39+
"github.com/google/go-github/v66/github"
4040
"golang.org/x/crypto/nacl/box"
4141
)
4242

example/codespaces/newusersecretwithxcrypto/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"log"
3838
"os"
3939

40-
"github.com/google/go-github/v65/github"
40+
"github.com/google/go-github/v66/github"
4141
"golang.org/x/crypto/nacl/box"
4242
)
4343

example/commitpr/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import (
3333
"time"
3434

3535
"github.com/ProtonMail/go-crypto/openpgp"
36-
"github.com/google/go-github/v65/github"
36+
"github.com/google/go-github/v66/github"
3737
)
3838

3939
var (

example/go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
module github.com/google/go-github/v65/example
1+
module github.com/google/go-github/v66/example
22

33
go 1.21
44

55
require (
66
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371
77
github.com/bradleyfalzon/ghinstallation/v2 v2.0.4
88
github.com/gofri/go-github-ratelimit v1.0.3
9-
github.com/google/go-github/v65 v65.0.0
9+
github.com/google/go-github/v66 v66.0.0
1010
golang.org/x/crypto v0.21.0
1111
golang.org/x/term v0.18.0
1212
google.golang.org/appengine v1.6.7
@@ -24,4 +24,4 @@ require (
2424
)
2525

2626
// Use version at HEAD, not the latest published.
27-
replace github.com/google/go-github/v65 => ../
27+
replace github.com/google/go-github/v66 => ../

example/listenvironments/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"log"
1919
"os"
2020

21-
"github.com/google/go-github/v65/github"
21+
"github.com/google/go-github/v66/github"
2222
)
2323

2424
func main() {

example/migrations/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"context"
1313
"fmt"
1414

15-
"github.com/google/go-github/v65/github"
15+
"github.com/google/go-github/v66/github"
1616
)
1717

1818
func fetchAllUserMigrations() ([]*github.UserMigration, error) {

0 commit comments

Comments
 (0)