-
Notifications
You must be signed in to change notification settings - Fork 12
Updating modules to avoid some vulnerable dependencies #110
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,43 +1,69 @@ | ||
| module github.com/ZupIT/horusec-devkit | ||
|
|
||
| go 1.16 | ||
| go 1.17 | ||
|
|
||
| require ( | ||
| github.com/DATA-DOG/go-sqlmock v1.5.0 | ||
| github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
| github.com/auth0/go-jwt-middleware v1.0.1 | ||
| github.com/form3tech-oss/jwt-go v3.2.5+incompatible | ||
| github.com/go-chi/chi v4.1.2+incompatible | ||
| github.com/go-chi/cors v1.2.0 | ||
| github.com/go-openapi/jsonreference v0.19.6 // indirect | ||
| github.com/go-openapi/spec v0.20.3 // indirect | ||
| github.com/go-openapi/swag v0.19.15 // indirect | ||
| github.com/go-ozzo/ozzo-validation/v4 v4.3.0 | ||
| github.com/golang-jwt/jwt v3.2.2+incompatible | ||
| github.com/golang/protobuf v1.5.2 | ||
| github.com/google/go-cmp v0.5.6 // indirect | ||
| github.com/google/uuid v1.3.0 | ||
| github.com/gopherjs/gopherjs v0.0.0-20210420193930-a4630ec28c79 // indirect | ||
| github.com/iancoleman/strcase v0.2.0 | ||
| github.com/mailru/easyjson v0.7.7 // indirect | ||
| github.com/patrickmn/go-cache v2.1.0+incompatible | ||
| github.com/pkg/errors v0.9.1 | ||
| github.com/prometheus/client_golang v1.11.0 | ||
| github.com/prometheus/common v0.30.0 // indirect | ||
| github.com/prometheus/procfs v0.7.3 // indirect | ||
| github.com/sirupsen/logrus v1.8.1 | ||
| github.com/smartystreets/assertions v1.2.0 // indirect | ||
| github.com/streadway/amqp v1.0.0 | ||
| github.com/stretchr/objx v0.3.0 // indirect | ||
| github.com/stretchr/testify v1.7.0 | ||
| github.com/swaggo/http-swagger v1.1.1 | ||
| golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 | ||
| golang.org/x/net v0.0.0-20210614182718-04defd469f4e // indirect | ||
| golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf // indirect | ||
| google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect | ||
| google.golang.org/grpc v1.41.0 | ||
| google.golang.org/protobuf v1.27.1 | ||
| gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
| gorm.io/driver/postgres v1.1.2 | ||
| gorm.io/gorm v1.21.15 | ||
| ) | ||
|
|
||
| require ( | ||
| github.com/KyleBanks/depth v1.2.1 // indirect | ||
| github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
| github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
| github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect | ||
| github.com/beorn7/perks v1.0.1 // indirect | ||
| github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
| github.com/davecgh/go-spew v1.1.1 // indirect | ||
| github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
| github.com/go-openapi/jsonreference v0.19.6 // indirect | ||
| github.com/go-openapi/spec v0.20.3 // indirect | ||
| github.com/go-openapi/swag v0.19.15 // indirect | ||
| github.com/golang/protobuf v1.5.2 // indirect | ||
| github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
| github.com/jackc/pgconn v1.10.0 // indirect | ||
| github.com/jackc/pgio v1.0.0 // indirect | ||
| github.com/jackc/pgpassfile v1.0.0 // indirect | ||
| github.com/jackc/pgproto3/v2 v2.1.1 // indirect | ||
| github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect | ||
| github.com/jackc/pgtype v1.8.1 // indirect | ||
| github.com/jackc/pgx/v4 v4.13.0 // indirect | ||
| github.com/jinzhu/inflection v1.0.0 // indirect | ||
| github.com/jinzhu/now v1.1.2 // indirect | ||
| github.com/josharian/intern v1.0.0 // indirect | ||
| github.com/mailru/easyjson v0.7.7 // indirect | ||
| github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
| github.com/pmezard/go-difflib v1.0.0 // indirect | ||
| github.com/prometheus/client_model v0.2.0 // indirect | ||
| github.com/prometheus/common v0.31.1 // indirect | ||
| github.com/prometheus/procfs v0.7.3 // indirect | ||
| github.com/stretchr/objx v0.3.0 // indirect | ||
| github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2 // indirect | ||
| github.com/swaggo/swag v1.7.3 // indirect | ||
| golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect | ||
| golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect | ||
| golang.org/x/text v0.3.7 // indirect | ||
| golang.org/x/tools v0.1.0 // indirect | ||
| google.golang.org/genproto v0.0.0-20211007155348-82e027067bd4 // indirect | ||
| gopkg.in/yaml.v2 v2.4.0 // indirect | ||
| gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
| ) | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.