File tree 3 files changed +4
-3
lines changed
internal/integration/mqtt/auth
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ go 1.16
5
5
require (
6
6
github.com/brocaar/chirpstack-api/go/v3 v3.11.0
7
7
github.com/brocaar/lorawan v0.0.0-20201030140234-f23da2d4a303
8
- github.com/dgrijalva/jwt-go v3.2.0+incompatible
9
8
github.com/eclipse/paho.mqtt.golang v1.3.0
10
9
github.com/go-zeromq/zmq4 v0.7.0
11
10
github.com/gofrs/uuid v3.3.0+incompatible
11
+ github.com/golang-jwt/jwt/v4 v4.0.0
12
12
github.com/golang/protobuf v1.4.3
13
13
github.com/gopherjs/gopherjs v0.0.0-20190430165422-3e4dfb77656c // indirect
14
14
github.com/goreleaser/goreleaser v0.106.0
Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7Do
85
85
github.com/davecgh/go-spew v1.1.0 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
86
86
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c =
87
87
github.com/davecgh/go-spew v1.1.1 /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
88
- github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM =
89
88
github.com/dgrijalva/jwt-go v3.2.0+incompatible /go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ =
90
89
github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954 /go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no =
91
90
github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4 /go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk =
@@ -128,6 +127,8 @@ github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFG
128
127
github.com/gogo/protobuf v1.1.1 /go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ =
129
128
github.com/gogo/protobuf v1.2.0 /go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ =
130
129
github.com/gogo/protobuf v1.2.1 /go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4 =
130
+ github.com/golang-jwt/jwt/v4 v4.0.0 h1:RAqyYixv1p7uEnocuy8P1nru5wprCh/MH2BIlW5z5/o =
131
+ github.com/golang-jwt/jwt/v4 v4.0.0 /go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg =
131
132
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b /go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q =
132
133
github.com/golang/groupcache v0.0.0-20160516000752-02826c3e7903 /go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc =
133
134
github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef /go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc =
Original file line number Diff line number Diff line change 6
6
"io/ioutil"
7
7
"time"
8
8
9
- jwt "github.com/dgrijalva/jwt-go"
10
9
mqtt "github.com/eclipse/paho.mqtt.golang"
10
+ jwt "github.com/golang-jwt/jwt/v4"
11
11
"github.com/pkg/errors"
12
12
13
13
"github.com/brocaar/chirpstack-gateway-bridge/internal/config"
You can’t perform that action at this time.
0 commit comments