Skip to content

Commit

Permalink
remove cbodonnell/go-oidc
Browse files Browse the repository at this point in the history
  • Loading branch information
cbodonnell committed Oct 29, 2023
1 parent 015c4bf commit 895e2b3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# go-oidc

[![Go Reference](https://pkg.go.dev/badge/github.com/cbodonnell/go-oidc/v3/oidc.svg)](https://pkg.go.dev/github.com/cbodonnell/go-oidc/v3/oidc)
![github.com/cbodonnell/go-oidc/v3](https://github.com/cbodonnell/go-oidc/workflows/test/badge.svg?branch=v3)
[![Go Reference](https://pkg.go.dev/badge/github.com/coreos/go-oidc/v3/oidc.svg)](https://pkg.go.dev/github.com/coreos/go-oidc/v3/oidc)
![github.com/coreos/go-oidc/v3](https://github.com/coreos/go-oidc/workflows/test/badge.svg?branch=v3)

## Updates from v2 to v3

There were two breaking changes made to the v3 branch. The import path has changed from:

```
github.com/cbodonnell/go-oidc
github.com/coreos/go-oidc
```

to:

```
github.com/cbodonnell/go-oidc/v3/oidc
github.com/coreos/go-oidc/v3/oidc
```

And the return type of `NewRemoteKeySet()` is now `*RemoteKeySet` instead of an interface ([#262](https://github.com/cbodonnell/go-oidc/pull/262)).
And the return type of `NewRemoteKeySet()` is now `*RemoteKeySet` instead of an interface ([#262](https://github.com/coreos/go-oidc/pull/262)).

## OpenID Connect support for Go

Expand Down
2 changes: 1 addition & 1 deletion example/idtoken/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"os"
"time"

"github.com/cbodonnell/go-oidc/v3/oidc"
"github.com/coreos/go-oidc/v3/oidc"
"golang.org/x/net/context"
"golang.org/x/oauth2"
)
Expand Down
2 changes: 1 addition & 1 deletion example/userinfo/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"os"
"time"

"github.com/cbodonnell/go-oidc/v3/oidc"
"github.com/coreos/go-oidc/v3/oidc"
"golang.org/x/net/context"
"golang.org/x/oauth2"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/cbodonnell/go-oidc/v3
module github.com/coreos/go-oidc/v3

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion test
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
set -e

go test -v -race ./...
go vet github.com/cbodonnell/go-oidc/...
go vet github.com/coreos/go-oidc/...
go build -v ./...

0 comments on commit 895e2b3

Please sign in to comment.