Skip to content

Commit 1de0c88

Browse files
committed
Revert "upgrade jwt package to v5"
This reverts commit e0fabbf.
1 parent d091dc8 commit 1de0c88

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ require (
2929
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
3030
github.com/dgryski/go-gk v0.0.0-20200319235926-a69029f61654 // indirect
3131
github.com/fsnotify/fsnotify v1.9.0 // indirect
32-
github.com/golang-jwt/jwt/v5 v5.2.3
3332
github.com/gorilla/securecookie v1.1.2 // indirect
3433
github.com/influxdata/tdigest v0.0.1 // indirect
3534
github.com/josharian/intern v1.0.0 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ github.com/go-viper/mapstructure/v2 v2.4.0 h1:EBsztssimR/CONLSZZ04E8qAkxNYq4Qp9L
1414
github.com/go-viper/mapstructure/v2 v2.4.0/go.mod h1:oJDH3BJKyqBA2TXFhDsKDGDTlndYOZ6rGS0BRZIxGhM=
1515
github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY=
1616
github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I=
17-
github.com/golang-jwt/jwt/v5 v5.2.3 h1:kkGXqQOBSDDWRhWNXTFpqGSCMyh/PLnqUvMGJPDJDs0=
18-
github.com/golang-jwt/jwt/v5 v5.2.3/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk=
1917
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
2018
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
2119
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=

pkg/cfg/cfg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"strings"
2828

2929
"github.com/go-viper/mapstructure/v2"
30-
"github.com/golang-jwt/jwt/v5"
30+
"github.com/golang-jwt/jwt"
3131
"github.com/kelseyhightower/envconfig"
3232
"github.com/spf13/viper"
3333
securerandom "github.com/theckman/go-securerandom"

0 commit comments

Comments
 (0)