From 895e2b31b18083446133a249d348661f246aac90 Mon Sep 17 00:00:00 2001 From: Craig O'Donnell Date: Sun, 29 Oct 2023 14:57:59 -0400 Subject: [PATCH] remove cbodonnell/go-oidc --- README.md | 10 +++++----- example/idtoken/app.go | 2 +- example/userinfo/app.go | 2 +- go.mod | 2 +- test | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index b436f462..2eebd78c 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/example/idtoken/app.go b/example/idtoken/app.go index acc6bbb5..80b0709e 100644 --- a/example/idtoken/app.go +++ b/example/idtoken/app.go @@ -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" ) diff --git a/example/userinfo/app.go b/example/userinfo/app.go index 180e5919..c530cffb 100644 --- a/example/userinfo/app.go +++ b/example/userinfo/app.go @@ -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" ) diff --git a/go.mod b/go.mod index aa5ab0f9..32077772 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/cbodonnell/go-oidc/v3 +module github.com/coreos/go-oidc/v3 go 1.19 diff --git a/test b/test index 52c249d0..c7e7ec6a 100755 --- a/test +++ b/test @@ -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 ./...