-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
move to upstream-maintained golang-jwt v3 [port to master-1.x] #21926
Comments
jdstrand
changed the title
upgrade to golang-jwt 3.2.1 to fix CVE-2020-26160 [port to master-1.x]
move to upstream maintained golang-jwt v3 [port to master-1.x]
Jul 22, 2021
jdstrand
changed the title
move to upstream maintained golang-jwt v3 [port to master-1.x]
move to upstream-maintained golang-jwt v3 [port to master-1.x]
Jul 22, 2021
jdstrand
added a commit
to jdstrand/influxdb
that referenced
this issue
Jul 22, 2021
The dgrijalva/jwt-go project is no longer maintained[1] and they have transferred ownership to golang-jwt/jwt[2][3][4]. We should move to the supported golang-jwt/jwt. The following was performed: 1. update services/httpd/handler*.go to import golang-jwt/jwt 2. revert testcase string comparison changes from 225bcec (back to v3) 2. go mod edit -require github.com/golang-jwt/jwt@v3.2.1+incompatible 3. go mod edit -droprequire github.com/dgrijalva/jwt-go 4. go mod tidy 5. go clean ./... && go build ./... 6. go test ./... References: [1] dgrijalva/jwt-go#462 [2] dgrijalva/jwt-go#463 [3] https://github.com/dgrijalva/jwt-go/blob/master/README.md [4] https://github.com/golang-jwt/jwt [5] influxdata#21926
jdstrand
added a commit
to jdstrand/influxdb
that referenced
this issue
Jul 22, 2021
The dgrijalva/jwt-go project is no longer maintained[1] and they have transferred ownership to golang-jwt/jwt[2][3][4]. We should move to the supported golang-jwt/jwt. The following was performed: 1. update services/httpd/handler*.go to import golang-jwt/jwt 2. revert testcase string comparison changes from 225bcec (back to v3) 2. go mod edit -require github.com/golang-jwt/jwt@v3.2.1+incompatible 3. go mod edit -droprequire github.com/dgrijalva/jwt-go 4. go mod tidy 5. go clean ./... && go build ./... 6. go test ./... References: [1] dgrijalva/jwt-go#462 [2] dgrijalva/jwt-go#463 [3] https://github.com/dgrijalva/jwt-go/blob/master/README.md [4] https://github.com/golang-jwt/jwt [5] influxdata#21926
4 tasks
jdstrand
added a commit
to jdstrand/influxdb
that referenced
this issue
Jul 22, 2021
The dgrijalva/jwt-go project is no longer maintained[1] and they have transferred ownership to golang-jwt/jwt[2][3][4]. We should move to the supported golang-jwt/jwt. The following was performed: 1. update services/httpd/handler*.go to import golang-jwt/jwt 2. revert testcase string comparison changes from 225bcec (back to v3) 2. go mod edit -require github.com/golang-jwt/jwt@v3.2.1+incompatible 3. go mod edit -droprequire github.com/dgrijalva/jwt-go 4. go mod tidy 5. go clean ./... && go build ./... 6. go test ./... References: [1] dgrijalva/jwt-go#462 [2] dgrijalva/jwt-go#463 [3] https://github.com/dgrijalva/jwt-go/blob/master/README.md [4] https://github.com/golang-jwt/jwt [5] influxdata#21926
jdstrand
added a commit
to jdstrand/influxdb
that referenced
this issue
Jul 23, 2021
The dgrijalva/jwt-go project is no longer maintained[1] and they have transferred ownership to golang-jwt/jwt[2][3][4]. We should move to the supported golang-jwt/jwt. The following was performed: 1. update services/httpd/handler*.go to import golang-jwt/jwt 2. revert testcase string comparison changes from 225bcec (back to v3) 2. go mod edit -require github.com/golang-jwt/jwt@v3.2.1+incompatible 3. go mod edit -droprequire github.com/dgrijalva/jwt-go 4. go mod tidy # see note 5. go clean ./... && go build ./... 6. go test ./... Note: 'go mod tidy' had unrelated changes (perhaps it wasn't run in recent commits) so I removed the unrelated delta to keep this PR focused on the dgrijalva/jwt-go to golang-jwt/jwt changes. References: [1] dgrijalva/jwt-go#462 [2] dgrijalva/jwt-go#463 [3] https://github.com/dgrijalva/jwt-go/blob/master/README.md [4] https://github.com/golang-jwt/jwt [5] influxdata#21926
4 tasks
jdstrand
added a commit
to jdstrand/influxdb
that referenced
this issue
Jul 23, 2021
The dgrijalva/jwt-go project is no longer maintained[1] and they have transferred ownership to golang-jwt/jwt[2][3][4]. We should move to the supported golang-jwt/jwt. The following was performed: 1. update services/httpd/handler*.go to import golang-jwt/jwt 2. revert testcase string comparison changes from 225bcec (back to v3) 2. go mod edit -require github.com/golang-jwt/jwt@v3.2.1+incompatible 3. go mod edit -droprequire github.com/dgrijalva/jwt-go 4. go mod tidy # see note 5. go clean ./... && go build ./... 6. go test ./... Note: 'go mod tidy' had unrelated changes (perhaps it wasn't run in recent commits) so I removed the unrelated delta to keep this PR focused on the dgrijalva/jwt-go to golang-jwt/jwt changes. References: [1] dgrijalva/jwt-go#462 [2] dgrijalva/jwt-go#463 [3] https://github.com/dgrijalva/jwt-go/blob/master/README.md [4] https://github.com/golang-jwt/jwt [5] influxdata#21926
4 tasks
jdstrand
added a commit
that referenced
this issue
Jul 23, 2021
The dgrijalva/jwt-go project is no longer maintained[1] and they have transferred ownership to golang-jwt/jwt[2][3][4]. We should move to the supported golang-jwt/jwt. The following was performed: 1. update services/httpd/handler*.go to import golang-jwt/jwt 2. revert testcase string comparison changes from 225bcec (back to v3) 2. go mod edit -require github.com/golang-jwt/jwt@v3.2.1+incompatible 3. go mod edit -droprequire github.com/dgrijalva/jwt-go 4. go mod tidy # see note 5. go clean ./... && go build ./... 6. go test ./... Note: 'go mod tidy' had unrelated changes (perhaps it wasn't run in recent commits) so I removed the unrelated delta to keep this PR focused on the dgrijalva/jwt-go to golang-jwt/jwt changes. References: [1] dgrijalva/jwt-go#462 [2] dgrijalva/jwt-go#463 [3] https://github.com/dgrijalva/jwt-go/blob/master/README.md [4] https://github.com/golang-jwt/jwt [5] #21926
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Port #21925 from master to master-1.x
The text was updated successfully, but these errors were encountered: