Skip to content

Commit 1e463e0

Browse files
committed
Switch to openshift/osincli
This is identical to RangelReale/osincli; the latter has been archived. Signed-off-by: Stephen Kitt <[email protected]>
1 parent 14a789e commit 1e463e0

File tree

17 files changed

+9
-9
lines changed

17 files changed

+9
-9
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ module github.com/openshift/library-go
33
go 1.24.0
44

55
require (
6-
github.com/RangelReale/osincli v0.0.0-20160924135400-fababb0555f2
76
github.com/blang/semver/v4 v4.0.0
87
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
98
github.com/distribution/distribution/v3 v3.0.0-20230511163743-f7717b7855ca
@@ -20,6 +19,7 @@ require (
2019
github.com/openshift/api v0.0.0-20251111013132-5c461e21bdb7
2120
github.com/openshift/build-machinery-go v0.0.0-20250530140348-dc5b2804eeee
2221
github.com/openshift/client-go v0.0.0-20251015124057-db0dee36e235
22+
github.com/openshift/osincli v0.0.0-20160924135400-fababb0555f2
2323
github.com/pkg/errors v0.9.1
2424
github.com/pkg/profile v1.7.0
2525
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.74.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 h1:mFRzDkZVAjdal+
44
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358/go.mod h1:chxPXzSsl7ZWRAuOIE23GDNzjWuZquvFlgA8xmpunjU=
55
github.com/NYTimes/gziphandler v1.1.1 h1:ZUDjpQae29j0ryrS0u/B8HZfJBtBQHjqw2rQ2cqUQ3I=
66
github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c=
7-
github.com/RangelReale/osincli v0.0.0-20160924135400-fababb0555f2 h1:x8Brv0YNEe6jY3V/hQglIG2nd8g5E2Zj5ubGKkPQctQ=
8-
github.com/RangelReale/osincli v0.0.0-20160924135400-fababb0555f2/go.mod h1:XyjUkMA8GN+tOOPXvnbi3XuRxWFvTJntqvTFnjmhzbk=
97
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
108
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
119
github.com/alexbrainman/sspi v0.0.0-20231016080023-1a75b4708caa h1:LHTHcTQiSGT7VVbI0o4wBRNQIgn917usHWOd6VAffYI=
@@ -225,6 +223,8 @@ github.com/openshift/build-machinery-go v0.0.0-20250530140348-dc5b2804eeee h1:+S
225223
github.com/openshift/build-machinery-go v0.0.0-20250530140348-dc5b2804eeee/go.mod h1:8jcm8UPtg2mCAsxfqKil1xrmRMI3a+XU2TZ9fF8A7TE=
226224
github.com/openshift/client-go v0.0.0-20251015124057-db0dee36e235 h1:9JBeIXmnHlpXTQPi7LPmu1jdxznBhAE7bb1K+3D8gxY=
227225
github.com/openshift/client-go v0.0.0-20251015124057-db0dee36e235/go.mod h1:L49W6pfrZkfOE5iC1PqEkuLkXG4W0BX4w8b+L2Bv7fM=
226+
github.com/openshift/osincli v0.0.0-20160924135400-fababb0555f2 h1:9oADVMmPa4G60MQtoSjD26aD/vZreqbIAfiUiO220eY=
227+
github.com/openshift/osincli v0.0.0-20160924135400-fababb0555f2/go.mod h1:Riv9DbfKiX3y9ebcS4PHU4zLhVXu971+4jCVwKIue5M=
228228
github.com/orisano/pixelmatch v0.0.0-20220722002657-fb0b55479cde/go.mod h1:nZgzbfBr3hhjoZnS66nKrHmduYNpc34ny7RK4z5/HM0=
229229
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
230230
github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=

pkg/oauth/tokenrequest/request_token.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"slices"
1414
"strings"
1515

16-
"github.com/RangelReale/osincli"
16+
"github.com/openshift/osincli"
1717

1818
apierrs "k8s.io/apimachinery/pkg/api/errors"
1919
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -43,7 +43,7 @@ const (
4343
// openShiftCLIBrowserClientID the name of the CLI client for logging in through a browser
4444
openShiftCLIBrowserClientID = "openshift-cli-client"
4545

46-
// pkce_s256 is sha256 hash per RFC7636, copied from github.com/RangelReale/osincli/pkce.go
46+
// pkce_s256 is sha256 hash per RFC7636, copied from github.com/openshift/osincli/pkce.go
4747
pkce_s256 = "S256"
4848

4949
// token fakes the missing osin.TOKEN const

pkg/oauth/tokenrequest/request_token_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515
"testing"
1616
"time"
1717

18-
"github.com/RangelReale/osincli"
1918
"github.com/google/go-cmp/cmp"
19+
"github.com/openshift/osincli"
2020

2121
"k8s.io/apimachinery/pkg/util/diff"
2222
restclient "k8s.io/client-go/rest"
File renamed without changes.

0 commit comments

Comments
 (0)