update jwt version to dodge attack
Showing
+135 -562
... | ... | @@ -11,6 +11,7 @@ require ( |
github.com/go-openapi/swag v0.19.15 // indirect | ||
github.com/go-playground/validator/v10 v10.5.0 // indirect | ||
github.com/gogf/gf/v2 v2.0.0-beta | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/google/uuid v1.1.2 | ||
github.com/json-iterator/go v1.1.11 | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
... | ... | @@ -56,6 +57,7 @@ require ( |
) | ||
replace ( | ||
github.com/dgrijalva/jwt-go => github.com/golang-jwt/jwt v3.2.1+incompatible | ||
// we must controll pkg version manually see issues: https://github.com/kubernetes/client-go/issues/874 | ||
k8s.io/api => k8s.io/api v0.20.5 | ||
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.20.4 | ||
... | ... |
Please register or sign in to comment