diff --git a/go.mod b/go.mod index 1a1697d1..f8cf6ead 100644 --- a/go.mod +++ b/go.mod @@ -15,7 +15,7 @@ require ( github.com/go-redis/redis v6.15.7+incompatible github.com/go-sql-driver/mysql v1.5.0 github.com/go-xorm/builder v0.3.4 - github.com/golang-jwt/jwt/v4 v4.0.0 + github.com/golang-jwt/jwt v3.2.1+incompatible github.com/golang/mock v1.4.3 github.com/google/uuid v1.1.2 github.com/iancoleman/strcase v0.1.2 diff --git a/go.sum b/go.sum index 8e563f8a..d8c43687 100644 --- a/go.sum +++ b/go.sum @@ -146,8 +146,10 @@ github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5x github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q= github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q= -github.com/golang-jwt/jwt/v4 v4.0.0 h1:RAqyYixv1p7uEnocuy8P1nru5wprCh/MH2BIlW5z5/o= -github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= +github.com/golang-jwt/jwt v3.2.1+incompatible h1:73Z+4BJcrTC+KczS6WvTPvRGOp1WmfEP4Q1lOd9Z/+c= +github.com/golang-jwt/jwt v3.2.1+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= +github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY= +github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= diff --git a/rest/handler/authhandler.go b/rest/handler/authhandler.go index 67de18e9..cf740e5e 100644 --- a/rest/handler/authhandler.go +++ b/rest/handler/authhandler.go @@ -8,7 +8,7 @@ import ( "net/http" "net/http/httputil" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt" "github.com/tal-tech/go-zero/core/logx" "github.com/tal-tech/go-zero/rest/token" ) diff --git a/rest/handler/authhandler_test.go b/rest/handler/authhandler_test.go index 1ef83112..b0985e7e 100644 --- a/rest/handler/authhandler_test.go +++ b/rest/handler/authhandler_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt" "github.com/stretchr/testify/assert" ) diff --git a/rest/token/tokenparser.go b/rest/token/tokenparser.go index 675894c4..0500bb0f 100644 --- a/rest/token/tokenparser.go +++ b/rest/token/tokenparser.go @@ -6,8 +6,8 @@ import ( "sync/atomic" "time" - "github.com/golang-jwt/jwt/v4" - "github.com/golang-jwt/jwt/v4/request" + "github.com/golang-jwt/jwt" + "github.com/golang-jwt/jwt/request" "github.com/tal-tech/go-zero/core/timex" ) diff --git a/rest/token/tokenparser_test.go b/rest/token/tokenparser_test.go index 2e240f3b..31929e91 100644 --- a/rest/token/tokenparser_test.go +++ b/rest/token/tokenparser_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt" "github.com/stretchr/testify/assert" "github.com/tal-tech/go-zero/core/timex" )