Commit 1ea03e0 1 parent 15b575a commit 1ea03e0 Copy full SHA for 1ea03e0
File tree 14 files changed +15
-15
lines changed
plugins/authn/api-server/tokens/issuer
14 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 5
5
"strings"
6
6
7
7
"github.com/asaskevich/govalidator"
8
- "github.com/golang-jwt/jwt/v4 "
8
+ "github.com/golang-jwt/jwt/v5 "
9
9
"github.com/pkg/errors"
10
10
11
11
util_files "github.com/kumahq/kuma/pkg/util/files"
Original file line number Diff line number Diff line change 7
7
"path/filepath"
8
8
"time"
9
9
10
- "github.com/golang-jwt/jwt/v4 "
10
+ "github.com/golang-jwt/jwt/v5 "
11
11
. "github.com/onsi/ginkgo/v2"
12
12
. "github.com/onsi/gomega"
13
13
"github.com/spf13/cobra"
Original file line number Diff line number Diff line change 6
6
"strings"
7
7
"time"
8
8
9
- "github.com/golang-jwt/jwt/v4 "
9
+ "github.com/golang-jwt/jwt/v5 "
10
10
. "github.com/onsi/ginkgo/v2"
11
11
. "github.com/onsi/gomega"
12
12
Original file line number Diff line number Diff line change 7
7
"path/filepath"
8
8
"time"
9
9
10
- "github.com/golang-jwt/jwt/v4 "
10
+ "github.com/golang-jwt/jwt/v5 "
11
11
. "github.com/onsi/ginkgo/v2"
12
12
. "github.com/onsi/gomega"
13
13
"github.com/spf13/cobra"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ require (
23
23
github.com/go-logr/logr v1.4.2
24
24
github.com/go-logr/zapr v1.3.0
25
25
github.com/goburrow/cache v0.1.4
26
- github.com/golang-jwt/jwt/v4 v4.5 .1
26
+ github.com/golang-jwt/jwt/v5 v5.2 .1
27
27
github.com/golang-migrate/migrate/v4 v4.18.2
28
28
github.com/golang/protobuf v1.5.4
29
29
github.com/google/go-cmp v0.7.0
Original file line number Diff line number Diff line change @@ -216,8 +216,8 @@ github.com/gobwas/glob v0.2.3 h1:A4xDbljILXROh+kObIiy5kIaPYD8e96x1tgBhUI5J+Y=
216
216
github.com/gobwas/glob v0.2.3 /go.mod h1:d3Ez4x06l9bZtSvzIay5+Yzi0fmZzPgnTbPcKjJAkT8 =
217
217
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q =
218
218
github.com/gogo/protobuf v1.3.2 /go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q =
219
- github.com/golang-jwt/jwt/v4 v4.5 .1 h1:JdqV9zKUdtaa9gdPlywC3aeoEsR681PlKC+4F5gQgeo =
220
- github.com/golang-jwt/jwt/v4 v4.5 .1/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0 =
219
+ github.com/golang-jwt/jwt/v5 v5.2 .1 h1:OuVbFODueb089Lh128TAcimifWaLhJwVflnrgM17wHk =
220
+ github.com/golang-jwt/jwt/v5 v5.2 .1/go.mod h1:pqrtFR0X4osieyHYxtmOUWsAWrfe1Q5UVIyoH402zdk =
221
221
github.com/golang-migrate/migrate/v4 v4.18.2 h1:2VSCMz7x7mjyTXx3m2zPokOY82LTRgxK1yQYKo6wWQ8 =
222
222
github.com/golang-migrate/migrate/v4 v4.18.2 /go.mod h1:2CM6tJvn2kqPXwnXO/d3rAQYiyoIm180VsO8PRX6Rpk =
223
223
github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek =
Original file line number Diff line number Diff line change 4
4
"context"
5
5
"time"
6
6
7
- "github.com/golang-jwt/jwt/v4 "
7
+ "github.com/golang-jwt/jwt/v5 "
8
8
"github.com/pkg/errors"
9
9
10
10
"github.com/kumahq/kuma/pkg/core"
Original file line number Diff line number Diff line change 4
4
"context"
5
5
"time"
6
6
7
- "github.com/golang-jwt/jwt/v4 "
7
+ "github.com/golang-jwt/jwt/v5 "
8
8
. "github.com/onsi/ginkgo/v2"
9
9
. "github.com/onsi/gomega"
10
10
"google.golang.org/protobuf/types/known/wrapperspb"
Original file line number Diff line number Diff line change 1
1
package tokens
2
2
3
- import "github.com/golang-jwt/jwt/v4 "
3
+ import "github.com/golang-jwt/jwt/v5 "
4
4
5
5
type Token = string
6
6
Original file line number Diff line number Diff line change 7
7
"fmt"
8
8
9
9
"github.com/go-logr/logr"
10
- "github.com/golang-jwt/jwt/v4 "
10
+ "github.com/golang-jwt/jwt/v5 "
11
11
"github.com/pkg/errors"
12
12
13
13
store_config "github.com/kumahq/kuma/pkg/config/core/resources/store"
Original file line number Diff line number Diff line change 1
1
package issuer
2
2
3
3
import (
4
- "github.com/golang-jwt/jwt/v4 "
4
+ "github.com/golang-jwt/jwt/v5 "
5
5
6
6
"github.com/kumahq/kuma/pkg/core/tokens"
7
7
"github.com/kumahq/kuma/pkg/core/user"
Original file line number Diff line number Diff line change 4
4
"context"
5
5
"time"
6
6
7
- "github.com/golang-jwt/jwt/v4 "
7
+ "github.com/golang-jwt/jwt/v5 "
8
8
9
9
"github.com/kumahq/kuma/pkg/core/tokens"
10
10
)
Original file line number Diff line number Diff line change 1
1
package issuer
2
2
3
3
import (
4
- "github.com/golang-jwt/jwt/v4 "
4
+ "github.com/golang-jwt/jwt/v5 "
5
5
6
6
mesh_proto "github.com/kumahq/kuma/api/mesh/v1alpha1"
7
7
"github.com/kumahq/kuma/pkg/core/tokens"
Original file line number Diff line number Diff line change 1
1
package zone
2
2
3
3
import (
4
- "github.com/golang-jwt/jwt/v4 "
4
+ "github.com/golang-jwt/jwt/v5 "
5
5
6
6
core_tokens "github.com/kumahq/kuma/pkg/core/tokens"
7
7
)
You can’t perform that action at this time.
0 commit comments