diff --git a/pkg/integrations/integrations.go b/pkg/integrations/integrations.go index e59fddd92..085fe60b1 100644 --- a/pkg/integrations/integrations.go +++ b/pkg/integrations/integrations.go @@ -37,7 +37,7 @@ import ( "code.vikunja.io/api/pkg/user" "code.vikunja.io/web" "code.vikunja.io/web/handler" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt/v5" "github.com/labstack/echo/v4" "github.com/stretchr/testify/assert" ) diff --git a/pkg/models/link_sharing.go b/pkg/models/link_sharing.go index ad8ca7480..e58b9945f 100644 --- a/pkg/models/link_sharing.go +++ b/pkg/models/link_sharing.go @@ -26,7 +26,7 @@ import ( "code.vikunja.io/api/pkg/utils" "code.vikunja.io/web" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt/v5" "golang.org/x/crypto/bcrypt" "xorm.io/builder" "xorm.io/xorm" diff --git a/pkg/modules/auth/auth.go b/pkg/modules/auth/auth.go index 2c8a5877c..339aeba78 100644 --- a/pkg/modules/auth/auth.go +++ b/pkg/modules/auth/auth.go @@ -25,7 +25,7 @@ import ( "code.vikunja.io/api/pkg/user" "code.vikunja.io/web" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt/v5" "github.com/labstack/echo/v4" ) diff --git a/pkg/routes/api/v1/login.go b/pkg/routes/api/v1/login.go index 59dd11498..58607be02 100644 --- a/pkg/routes/api/v1/login.go +++ b/pkg/routes/api/v1/login.go @@ -27,7 +27,7 @@ import ( user2 "code.vikunja.io/api/pkg/user" "code.vikunja.io/web/handler" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt/v5" "github.com/labstack/echo/v4" ) diff --git a/pkg/routes/api/v1/token_check.go b/pkg/routes/api/v1/token_check.go index 2c2a3f364..05d10b4df 100644 --- a/pkg/routes/api/v1/token_check.go +++ b/pkg/routes/api/v1/token_check.go @@ -20,7 +20,7 @@ import ( "fmt" "code.vikunja.io/api/pkg/models" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt/v5" "github.com/labstack/echo/v4" ) diff --git a/pkg/user/user.go b/pkg/user/user.go index 667fb2173..2ce6d5e0e 100644 --- a/pkg/user/user.go +++ b/pkg/user/user.go @@ -30,7 +30,7 @@ import ( "code.vikunja.io/api/pkg/notifications" "code.vikunja.io/web" - "github.com/golang-jwt/jwt/v4" + "github.com/golang-jwt/jwt/v5" "github.com/labstack/echo/v4" "golang.org/x/crypto/bcrypt" "xorm.io/xorm"