File tree 7 files changed +8
-5
lines changed
7 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ This release adds an embedded SQLite database for storing metadata required by t
50
50
1 . [ 21849] ( https://github.com/influxdata/influxdb/pull/21849 ) : Specify which fields are missing when rejecting an incomplete onboarding request.
51
51
1 . [ 21839] ( https://github.com/influxdata/influxdb/pull/21839 ) : Fix display and parsing of ` influxd upgrade ` CLI prompts in PowerShell.
52
52
1 . [ 21850] ( https://github.com/influxdata/influxdb/pull/21850 ) : Systemd unit should block on startup until http endpoint is ready
53
+ 1 . [ 21925] ( https://github.com/influxdata/influxdb/pull/21925 ) : Upgrade to golang-jwt 3.2.1.
53
54
54
55
## v2.0.7 [ 2021-06-04]
55
56
Original file line number Diff line number Diff line change 5
5
"net/http"
6
6
"time"
7
7
8
- jwt "github.com/dgrijalva /jwt-go "
8
+ jwt "github.com/golang-jwt /jwt"
9
9
"github.com/influxdata/influxdb/v2/chronograf"
10
10
)
11
11
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"testing"
11
11
"time"
12
12
13
- gojwt "github.com/dgrijalva /jwt-go "
13
+ gojwt "github.com/golang-jwt /jwt"
14
14
"github.com/influxdata/influxdb/v2/chronograf"
15
15
"github.com/influxdata/influxdb/v2/chronograf/influx"
16
16
"github.com/influxdata/influxdb/v2/chronograf/mocks"
Original file line number Diff line number Diff line change @@ -15,7 +15,6 @@ require (
15
15
github.com/buger/jsonparser v0.0.0-20191004114745-ee4c978eae7e
16
16
github.com/cespare/xxhash v1.1.0
17
17
github.com/davecgh/go-spew v1.1.1
18
- github.com/dgrijalva/jwt-go v3.2.0+incompatible
19
18
github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8
20
19
github.com/docker/docker v1.13.1 // indirect
21
20
github.com/dustin/go-humanize v1.0.0
@@ -26,6 +25,7 @@ require (
26
25
github.com/go-chi/chi v4.1.0+incompatible
27
26
github.com/go-stack/stack v1.8.0
28
27
github.com/gogo/protobuf v1.3.2
28
+ github.com/golang-jwt/jwt v3.2.1+incompatible
29
29
github.com/golang/gddo v0.0.0-20181116215533-9bd4a3295021
30
30
github.com/golang/mock v1.5.0
31
31
github.com/golang/protobuf v1.3.3
Original file line number Diff line number Diff line change @@ -212,6 +212,8 @@ github.com/gogo/protobuf v1.2.0/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7a
212
212
github.com/gogo/protobuf v1.2.1 /go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4 =
213
213
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q =
214
214
github.com/gogo/protobuf v1.3.2 /go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q =
215
+ github.com/golang-jwt/jwt v3.2.1+incompatible h1:73Z+4BJcrTC+KczS6WvTPvRGOp1WmfEP4Q1lOd9Z/+c =
216
+ github.com/golang-jwt/jwt v3.2.1+incompatible /go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I =
215
217
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe h1:lXe2qZdvpiX5WZkZR4hgp4KJVfY3nMkvmwbVkpv1rVY =
216
218
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe /go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0 =
217
219
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 /go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k =
Original file line number Diff line number Diff line change 5
5
6
6
"github.com/influxdata/influxdb/v2/kit/platform"
7
7
8
- "github.com/dgrijalva /jwt-go "
8
+ "github.com/golang-jwt /jwt"
9
9
"github.com/influxdata/influxdb/v2"
10
10
)
11
11
Original file line number Diff line number Diff line change 6
6
7
7
"github.com/influxdata/influxdb/v2/kit/platform"
8
8
9
- "github.com/dgrijalva /jwt-go "
9
+ "github.com/golang-jwt /jwt"
10
10
"github.com/google/go-cmp/cmp"
11
11
"github.com/influxdata/influxdb/v2"
12
12
)
You can’t perform that action at this time.
0 commit comments