1
0
mirror of https://github.com/interviewstreet/go-jira.git synced 2025-08-06 22:13:02 +02:00

Upgrade jwt library

https://github.com/andygrunwald/go-jira/issues/343

 https://github.com/dgrijalva/jwt-go has been abondoned (see https://github.com/dgrijalva/jwt-go/issues/462). In order to fix the vulnarability we have to switch to a community driven fork https://github.com/golang-jwt/jwt . The issue has been fixed in https://github.com/golang-jwt/jwt/pull/12
This commit is contained in:
Yar Krvtsov
2021-07-19 10:19:35 +03:00
parent a1f44bdb69
commit fff481af48
3 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ import (
"strings"
"time"
"github.com/dgrijalva/jwt-go"
"github.com/golang-jwt/jwt"
"github.com/google/go-querystring/query"
"github.com/pkg/errors"
)