Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
4829772e
Commit
4829772e
authored
Aug 27, 2021
by
feistel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: Replace jwt-go with maintained fork
parent
a19ecc2f
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
13 additions
and
12 deletions
+13
-12
workhorse/authorization_test.go
workhorse/authorization_test.go
+1
-1
workhorse/go.mod
workhorse/go.mod
+1
-1
workhorse/go.sum
workhorse/go.sum
+2
-1
workhorse/internal/artifacts/artifacts_upload_test.go
workhorse/internal/artifacts/artifacts_upload_test.go
+1
-1
workhorse/internal/filestore/file_handler.go
workhorse/internal/filestore/file_handler.go
+1
-1
workhorse/internal/filestore/file_handler_test.go
workhorse/internal/filestore/file_handler_test.go
+1
-1
workhorse/internal/secret/jwt.go
workhorse/internal/secret/jwt.go
+1
-1
workhorse/internal/testhelper/testhelper.go
workhorse/internal/testhelper/testhelper.go
+1
-1
workhorse/internal/upload/accelerate.go
workhorse/internal/upload/accelerate.go
+1
-1
workhorse/internal/upload/body_uploader_test.go
workhorse/internal/upload/body_uploader_test.go
+1
-1
workhorse/internal/upload/saved_file_tracker_test.go
workhorse/internal/upload/saved_file_tracker_test.go
+1
-1
workhorse/upload_test.go
workhorse/upload_test.go
+1
-1
No files found.
workhorse/authorization_test.go
View file @
4829772e
...
...
@@ -10,7 +10,7 @@ import (
"gitlab.com/gitlab-org/labkit/correlation"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"github.com/stretchr/testify/require"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/api"
...
...
workhorse/go.mod
View file @
4829772e
...
...
@@ -9,9 +9,9 @@ require (
github.com/alecthomas/chroma v0.7.3
github.com/aws/aws-sdk-go v1.37.0
github.com/certifi/gocertifi v0.0.0-20200922220541-2c3bb06c6054 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/disintegration/imaging v1.6.2
github.com/getsentry/raven-go v0.2.0
github.com/golang-jwt/jwt/v4 v4.0.0
github.com/golang/gddo v0.0.0-20190419222130-af0f2af80721
github.com/golang/protobuf v1.5.2
github.com/gomodule/redigo v2.0.0+incompatible
...
...
workhorse/go.sum
View file @
4829772e
...
...
@@ -207,7 +207,6 @@ github.com/denisenkom/go-mssqldb v0.0.0-20191001013358-cfbb681360f0/go.mod h1:xb
github.com/denisenkom/go-mssqldb v0.9.0/go.mod h1:xbL0rPBG9cCiLr28tMa8zpbdarY27NDyej4t/EjAShU=
github.com/devigned/tab v0.1.1/go.mod h1:XG9mPq0dFghrYvoBF3xdRrJzSTX1b7IQrvaL9mzjeJY=
github.com/dgraph-io/badger v1.6.0/go.mod h1:zwt7syl517jmP8s94KqSxTlM6IMsdhYy6psNgSztDR4=
github.com/dgrijalva/jwt-go v3.2.0+incompatible h1:7qlOGliEKZXTDg6OTjfoBKDXWrumCAMpl/TFQ4/5kLM=
github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw=
github.com/dimchansky/utfbom v1.1.0/go.mod h1:rO41eb7gLfo8SF1jd9F8HplJm1Fewwi4mQvIirEdv+8=
...
...
@@ -306,6 +305,8 @@ github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zV
github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXPKa29o=
github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
github.com/golang-jwt/jwt/v4 v4.0.0 h1:RAqyYixv1p7uEnocuy8P1nru5wprCh/MH2BIlW5z5/o=
github.com/golang-jwt/jwt/v4 v4.0.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg=
github.com/golang-sql/civil v0.0.0-20190719163853-cb61b32ac6fe/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0=
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k=
github.com/golang/gddo v0.0.0-20190419222130-af0f2af80721 h1:KRMr9A3qfbVM7iV/WcLY/rL5LICqwMHLhwRXKu99fXw=
...
...
workhorse/internal/artifacts/artifacts_upload_test.go
View file @
4829772e
...
...
@@ -14,7 +14,7 @@ import (
"os"
"testing"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/filestore"
...
...
workhorse/internal/filestore/file_handler.go
View file @
4829772e
...
...
@@ -10,7 +10,7 @@ import (
"strconv"
"time"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"gitlab.com/gitlab-org/labkit/log"
...
...
workhorse/internal/filestore/file_handler_test.go
View file @
4829772e
...
...
@@ -12,7 +12,7 @@ import (
"testing"
"time"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"github.com/stretchr/testify/require"
"gocloud.dev/blob"
...
...
workhorse/internal/secret/jwt.go
View file @
4829772e
...
...
@@ -3,7 +3,7 @@ package secret
import
(
"fmt"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
)
var
(
...
...
workhorse/internal/testhelper/testhelper.go
View file @
4829772e
...
...
@@ -14,7 +14,7 @@ import (
"testing"
"time"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"github.com/stretchr/testify/require"
"gitlab.com/gitlab-org/labkit/log"
...
...
workhorse/internal/upload/accelerate.go
View file @
4829772e
...
...
@@ -4,7 +4,7 @@ import (
"fmt"
"net/http"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/api"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/helper"
...
...
workhorse/internal/upload/body_uploader_test.go
View file @
4829772e
...
...
@@ -11,7 +11,7 @@ import (
"strings"
"testing"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"github.com/stretchr/testify/require"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/api"
...
...
workhorse/internal/upload/saved_file_tracker_test.go
View file @
4829772e
...
...
@@ -3,7 +3,7 @@ package upload
import
(
"context"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"net/http"
"testing"
...
...
workhorse/upload_test.go
View file @
4829772e
...
...
@@ -14,7 +14,7 @@ import (
"strings"
"testing"
"github.com/
dgrijalva/jwt-go
"
"github.com/
golang-jwt/jwt/v4
"
"github.com/stretchr/testify/require"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/api"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment