Skip to content

Commit 14962ea

Browse files
committed
chore(repo): use new repo under redis org
1 parent e159e0e commit 14962ea

36 files changed

+76
-77
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ import (
4444
"os"
4545
"strings"
4646

47-
"github.com/redis-developer/go-redis-entraid/entraid"
47+
"github.com/redis/go-redis-entraid/entraid"
4848
"github.com/redis/go-redis/v9"
4949
)
5050

@@ -97,7 +97,7 @@ export AZURE_AUTHORITY_HOST="https://login.microsoftonline.com" # For custom au
9797
### Running the Example
9898
```bash
9999
go mod init your-app
100-
go get github.com/redis-developer/go-redis-entraid
100+
go get github.com/redis/go-redis-entraid
101101
go run main.go
102102
```
103103

@@ -498,10 +498,10 @@ import (
498498
"strings"
499499
"time"
500500

501-
"github.com/redis-developer/go-redis-entraid/entraid"
502-
"github.com/redis-developer/go-redis-entraid/entraid/identity"
503-
"github.com/redis-developer/go-redis-entraid/entraid/manager"
504-
"github.com/redis-developer/go-redis-entraid/entraid/shared"
501+
"github.com/redis/go-redis-entraid/entraid"
502+
"github.com/redis/go-redis-entraid/entraid/identity"
503+
"github.com/redis/go-redis-entraid/entraid/manager"
504+
"github.com/redis/go-redis-entraid/entraid/shared"
505505
"github.com/redis/go-redis/v9"
506506
)
507507

@@ -870,7 +870,7 @@ The library provides several error types that you can check against:
870870

871871
```go
872872
// Import the shared package to access error types
873-
import "github.com/redis-developer/go-redis-entraid/shared"
873+
import "github.com/redis/go-redis-entraid/shared"
874874

875875
// Available error types:
876876
var (

credentials_provider.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"fmt"
88
"sync"
99

10-
"github.com/redis-developer/go-redis-entraid/manager"
11-
"github.com/redis-developer/go-redis-entraid/token"
10+
"github.com/redis/go-redis-entraid/manager"
11+
"github.com/redis/go-redis-entraid/token"
1212
"github.com/redis/go-redis/v9/auth"
1313
)
1414

credentials_provider_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/redis-developer/go-redis-entraid/identity"
9-
"github.com/redis-developer/go-redis-entraid/manager"
10-
"github.com/redis-developer/go-redis-entraid/shared"
11-
"github.com/redis-developer/go-redis-entraid/token"
8+
"github.com/redis/go-redis-entraid/identity"
9+
"github.com/redis/go-redis-entraid/manager"
10+
"github.com/redis/go-redis-entraid/shared"
11+
"github.com/redis/go-redis-entraid/token"
1212
"github.com/redis/go-redis/v9/auth"
1313
"github.com/stretchr/testify/assert"
1414
"github.com/stretchr/testify/mock"

entraid.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package entraid
22

3-
import "github.com/redis-developer/go-redis-entraid/shared"
3+
import "github.com/redis/go-redis-entraid/shared"
44

55
// IdentityProvider is an alias for the shared.IdentityProvider interface.
66
type IdentityProvider = shared.IdentityProvider

entraid_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"testing"
88
"time"
99

10-
"github.com/redis-developer/go-redis-entraid/manager"
11-
"github.com/redis-developer/go-redis-entraid/shared"
12-
"github.com/redis-developer/go-redis-entraid/token"
10+
"github.com/redis/go-redis-entraid/manager"
11+
"github.com/redis/go-redis-entraid/shared"
12+
"github.com/redis/go-redis-entraid/token"
1313
"github.com/redis/go-redis/v9/auth"
1414
"github.com/stretchr/testify/mock"
1515
)

examples/custom_idp/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module custom_example
33
go 1.23.4
44

55
require (
6-
github.com/redis-developer/go-redis-entraid v0.0.0-20250415111332-9d087bc29c12
6+
github.com/redis/go-redis-entraid v0.0.0-20250415111332-9d087bc29c12
77
github.com/redis/go-redis/v9 v9.5.3-0.20250415103233-40a89c56cc52
88
)
99

examples/custom_idp/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c h1:+mdjkGKdHQG3305AYmd
3232
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c/go.mod h1:7rwL4CYBLnjLxUqIJNnCWiEdr3bn6IUYi15bNlnbCCU=
3333
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
3434
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
35-
github.com/redis-developer/go-redis-entraid v0.0.0-20250415111332-9d087bc29c12 h1:H5ZfgueBAxs2eAvXtCMEbT2/fLQz/wxW5Ds4c0uzl50=
36-
github.com/redis-developer/go-redis-entraid v0.0.0-20250415111332-9d087bc29c12/go.mod h1:uXKLxCMUAu1VKgWdt8gWc4PWCygiL2pAI5XpnRSVc0w=
35+
github.com/redis/go-redis-entraid v0.0.0-20250415111332-9d087bc29c12 h1:H5ZfgueBAxs2eAvXtCMEbT2/fLQz/wxW5Ds4c0uzl50=
36+
github.com/redis/go-redis-entraid v0.0.0-20250415111332-9d087bc29c12/go.mod h1:uXKLxCMUAu1VKgWdt8gWc4PWCygiL2pAI5XpnRSVc0w=
3737
github.com/redis/go-redis/v9 v9.5.3-0.20250415103233-40a89c56cc52 h1:jRx2gINoJsGKxi/RYXCq1VneAAYes9JxUp13xH2oU2g=
3838
github.com/redis/go-redis/v9 v9.5.3-0.20250415103233-40a89c56cc52/go.mod h1:huWgSWd8mW6+m0VPhJjSSQ+d6Nh1VICQ6Q5lHuCH/Iw=
3939
github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY=

examples/custom_idp/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
"strings"
88
"time"
99

10-
entraid "github.com/redis-developer/go-redis-entraid"
11-
"github.com/redis-developer/go-redis-entraid/manager"
12-
"github.com/redis-developer/go-redis-entraid/shared"
13-
"github.com/redis-developer/go-redis-entraid/token"
10+
entraid "github.com/redis/go-redis-entraid"
11+
"github.com/redis/go-redis-entraid/manager"
12+
"github.com/redis/go-redis-entraid/shared"
13+
"github.com/redis/go-redis-entraid/token"
1414
redis "github.com/redis/go-redis/v9"
1515
)
1616

examples/default_azure_identity/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"fmt"
66

7-
entraid "github.com/redis-developer/go-redis-entraid"
8-
"github.com/redis-developer/go-redis-entraid/identity"
7+
entraid "github.com/redis/go-redis-entraid"
8+
"github.com/redis/go-redis-entraid/identity"
99
redis "github.com/redis/go-redis/v9"
1010
)
1111

examples/entraid/clientcert/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.23.4
44

55
require (
66
config v0.0.0
7-
github.com/redis-developer/go-redis-entraid v0.0.0-20250519132904-1e25b29e9a07
7+
github.com/redis/go-redis-entraid v0.0.0-20250519132904-1e25b29e9a07
88
github.com/redis/go-redis/v9 v9.5.3-0.20250519143649-1628b87c162b
99
)
1010

@@ -27,6 +27,6 @@ require (
2727

2828
replace (
2929
config => ../config
30-
github.com/redis-developer/go-redis-entraid => ../../../
30+
github.com/redis/go-redis-entraid => ../../../
3131
github.com/redis/go-redis/v9 => github.com/redis/go-redis/v9 v9.5.3-0.20250519143649-1628b87c162b
3232
)

0 commit comments

Comments
 (0)