Skip to content

Commit 98d4f50

Browse files
authored
Bump version of go-github to v68.0.0 (#3397)
1 parent b0a5e60 commit 98d4f50

File tree

35 files changed

+47
-47
lines changed

35 files changed

+47
-47
lines changed

README.md

+9-9
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/v67/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/v68/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)
@@ -25,29 +25,29 @@ If you're interested in using the [GraphQL API v4][], the recommended library is
2525
go-github is compatible with modern Go releases in module mode, with Go installed:
2626

2727
```bash
28-
go get github.com/google/go-github/v67
28+
go get github.com/google/go-github/v68
2929
```
3030

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

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

3535
```go
36-
import "github.com/google/go-github/v67/github"
36+
import "github.com/google/go-github/v68/github"
3737
```
3838

3939
and run `go get` without parameters.
4040

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

4343
```bash
44-
go get github.com/google/go-github/v67@master
44+
go get github.com/google/go-github/v68@master
4545
```
4646

4747
## Usage ##
4848

4949
```go
50-
import "github.com/google/go-github/v67/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
50+
import "github.com/google/go-github/v68/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
5151
import "github.com/google/go-github/github" // with go modules disabled
5252
```
5353

@@ -120,7 +120,7 @@ import (
120120
"net/http"
121121

122122
"github.com/bradleyfalzon/ghinstallation/v2"
123-
"github.com/google/go-github/v67/github"
123+
"github.com/google/go-github/v68/github"
124124
)
125125

126126
func main() {
@@ -154,7 +154,7 @@ import (
154154
"os"
155155
"strconv"
156156

157-
"github.com/google/go-github/v67/github"
157+
"github.com/google/go-github/v68/github"
158158
"github.com/jferrl/go-githubauth"
159159
"golang.org/x/oauth2"
160160
)
@@ -362,7 +362,7 @@ For complete usage of go-github, see the full [package docs][].
362362

363363
[GitHub API v3]: https://docs.github.com/en/rest
364364
[personal access token]: https://github.com/blog/1509-personal-api-tokens
365-
[package docs]: https://pkg.go.dev/github.com/google/go-github/v67/github
365+
[package docs]: https://pkg.go.dev/github.com/google/go-github/v68/github
366366
[GraphQL API v4]: https://developer.github.com/v4/
367367
[shurcooL/githubv4]: https://github.com/shurcooL/githubv4
368368
[GitHub webhook events]: https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads
@@ -436,7 +436,7 @@ Versions prior to 48.2.0 are not listed.
436436

437437
| go-github Version | GitHub v3 API Version |
438438
| ----------------- | --------------------- |
439-
| 67.0.0 | 2022-11-28 |
439+
| 68.0.0 | 2022-11-28 |
440440
| ... | 2022-11-28 |
441441
| 48.2.0 | 2022-11-28 |
442442

example/actionpermissions/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"log"
1515
"os"
1616

17-
"github.com/google/go-github/v67/github"
17+
"github.com/google/go-github/v68/github"
1818
)
1919

2020
var (

example/appengine/app.go

+1-1
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/v67/github"
15+
"github.com/google/go-github/v68/github"
1616
"google.golang.org/appengine"
1717
"google.golang.org/appengine/log"
1818
)

example/basicauth/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"os"
2222
"strings"
2323

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

example/codespaces/newreposecretwithxcrypto/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"log"
3838
"os"
3939

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

example/codespaces/newusersecretwithxcrypto/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
"log"
3939
"os"
4040

41-
"github.com/google/go-github/v67/github"
41+
"github.com/google/go-github/v68/github"
4242
"golang.org/x/crypto/nacl/box"
4343
)
4444

example/commitpr/main.go

+1-1
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/v67/github"
36+
"github.com/google/go-github/v68/github"
3737
)
3838

3939
var (

example/go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/google/go-github/v67/example
1+
module github.com/google/go-github/v68/example
22

33
go 1.22.5
44

@@ -8,7 +8,7 @@ require (
88
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371
99
github.com/bradleyfalzon/ghinstallation/v2 v2.0.4
1010
github.com/gofri/go-github-ratelimit v1.0.3
11-
github.com/google/go-github/v67 v67.0.0
11+
github.com/google/go-github/v68 v68.0.0
1212
github.com/sigstore/sigstore-go v0.6.2
1313
golang.org/x/crypto v0.31.0
1414
golang.org/x/term v0.27.0
@@ -101,4 +101,4 @@ require (
101101
)
102102

103103
// Use version at HEAD, not the latest published.
104-
replace github.com/google/go-github/v67 => ../
104+
replace github.com/google/go-github/v68 => ../

example/listenvironments/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"log"
1919
"os"
2020

21-
"github.com/google/go-github/v67/github"
21+
"github.com/google/go-github/v68/github"
2222
)
2323

2424
func main() {

example/migrations/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"context"
1313
"fmt"
1414

15-
"github.com/google/go-github/v67/github"
15+
"github.com/google/go-github/v68/github"
1616
)
1717

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

example/newfilewithappauth/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"time"
1717

1818
"github.com/bradleyfalzon/ghinstallation/v2"
19-
"github.com/google/go-github/v67/github"
19+
"github.com/google/go-github/v68/github"
2020
)
2121

2222
func main() {

example/newrepo/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"log"
1717
"os"
1818

19-
"github.com/google/go-github/v67/github"
19+
"github.com/google/go-github/v68/github"
2020
)
2121

2222
var (

example/newreposecretwithlibsodium/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ toolchain go1.22.0
66

77
require (
88
github.com/GoKillers/libsodium-go v0.0.0-20171022220152-dd733721c3cb
9-
github.com/google/go-github/v67 v67.0.0
9+
github.com/google/go-github/v68 v68.0.0
1010
)
1111

1212
require github.com/google/go-querystring v1.1.0 // indirect
1313

1414
// Use version at HEAD, not the latest published.
15-
replace github.com/google/go-github/v67 => ../..
15+
replace github.com/google/go-github/v68 => ../..

example/newreposecretwithlibsodium/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"os"
3737

3838
sodium "github.com/GoKillers/libsodium-go/cryptobox"
39-
"github.com/google/go-github/v67/github"
39+
"github.com/google/go-github/v68/github"
4040
)
4141

4242
var (

example/newreposecretwithxcrypto/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import (
3737
"log"
3838
"os"
3939

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

example/ratelimit/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"fmt"
1414

1515
"github.com/gofri/go-github-ratelimit/github_ratelimit"
16-
"github.com/google/go-github/v67/github"
16+
"github.com/google/go-github/v68/github"
1717
)
1818

1919
func main() {

example/simple/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"context"
1313
"fmt"
1414

15-
"github.com/google/go-github/v67/github"
15+
"github.com/google/go-github/v68/github"
1616
)
1717

1818
// Fetch all the public organizations' membership of a user.

example/tokenauth/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"log"
1616
"os"
1717

18-
"github.com/google/go-github/v67/github"
18+
"github.com/google/go-github/v68/github"
1919
"golang.org/x/term"
2020
)
2121

example/topics/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"context"
1313
"fmt"
1414

15-
"github.com/google/go-github/v67/github"
15+
"github.com/google/go-github/v68/github"
1616
)
1717

1818
// Fetch and lists all the public topics associated with the specified GitHub topic.

example/verifyartifact/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"log"
1919
"os"
2020

21-
"github.com/google/go-github/v67/github"
21+
"github.com/google/go-github/v68/github"
2222
"github.com/sigstore/sigstore-go/pkg/bundle"
2323
"github.com/sigstore/sigstore-go/pkg/root"
2424
"github.com/sigstore/sigstore-go/pkg/verify"

github/doc.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Package github provides a client for using the GitHub API.
88
99
Usage:
1010
11-
import "github.com/google/go-github/v67/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
11+
import "github.com/google/go-github/v68/github" // with go modules enabled (GO111MODULE=on or outside GOPATH)
1212
import "github.com/google/go-github/github" // with go modules disabled
1313
1414
Construct a new GitHub client, then use the various services on the client to

github/examples_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"fmt"
1313
"log"
1414

15-
"github.com/google/go-github/v67/github"
15+
"github.com/google/go-github/v68/github"
1616
)
1717

1818
func ExampleMarkdownService_Render() {

github/github.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
)
2929

3030
const (
31-
Version = "v67.0.0"
31+
Version = "v68.0.0"
3232

3333
defaultAPIVersion = "2022-11-28"
3434
defaultBaseURL = "https://api.github.com/"

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/google/go-github/v67
1+
module github.com/google/go-github/v68
22

33
require (
44
github.com/google/go-cmp v0.6.0

test/fields/fields.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"reflect"
2626
"strings"
2727

28-
"github.com/google/go-github/v67/github"
28+
"github.com/google/go-github/v68/github"
2929
)
3030

3131
var (

test/integration/activity_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"context"
1212
"testing"
1313

14-
"github.com/google/go-github/v67/github"
14+
"github.com/google/go-github/v68/github"
1515
)
1616

1717
const (

test/integration/authorizations_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515
"time"
1616

17-
"github.com/google/go-github/v67/github"
17+
"github.com/google/go-github/v68/github"
1818
)
1919

2020
const msgEnvMissing = "Skipping test because the required environment variable (%v) is not present."

test/integration/github_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"net/http"
1515
"os"
1616

17-
"github.com/google/go-github/v67/github"
17+
"github.com/google/go-github/v68/github"
1818
)
1919

2020
var (

test/integration/repos_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515

1616
"github.com/google/go-cmp/cmp"
17-
"github.com/google/go-github/v67/github"
17+
"github.com/google/go-github/v68/github"
1818
)
1919

2020
func TestRepositories_CRUD(t *testing.T) {

test/integration/users_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"math/rand"
1414
"testing"
1515

16-
"github.com/google/go-github/v67/github"
16+
"github.com/google/go-github/v68/github"
1717
)
1818

1919
func TestUsers_Get(t *testing.T) {

tools/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/alecthomas/kong v1.6.0
99
github.com/getkin/kin-openapi v0.128.0
1010
github.com/google/go-cmp v0.6.0
11-
github.com/google/go-github/v67 v67.0.0
11+
github.com/google/go-github/v68 v68.0.0
1212
golang.org/x/sync v0.10.0
1313
gopkg.in/yaml.v3 v3.0.1
1414
)
@@ -25,4 +25,4 @@ require (
2525
)
2626

2727
// Use version at HEAD, not the latest published.
28-
replace github.com/google/go-github/v67 => ../
28+
replace github.com/google/go-github/v68 => ../

tools/metadata/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"path/filepath"
1717

1818
"github.com/alecthomas/kong"
19-
"github.com/google/go-github/v67/github"
19+
"github.com/google/go-github/v68/github"
2020
)
2121

2222
var helpVars = kong.Vars{

tools/metadata/main_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
"github.com/alecthomas/kong"
2424
"github.com/getkin/kin-openapi/openapi3"
2525
"github.com/google/go-cmp/cmp"
26-
"github.com/google/go-github/v67/github"
26+
"github.com/google/go-github/v68/github"
2727
)
2828

2929
func TestUpdateGo(t *testing.T) {

tools/metadata/metadata.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"strings"
2525
"sync"
2626

27-
"github.com/google/go-github/v67/github"
27+
"github.com/google/go-github/v68/github"
2828
"gopkg.in/yaml.v3"
2929
)
3030

0 commit comments

Comments
 (0)