Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jskswamy committed Jul 30, 2021
1 parent b0336a5 commit b28518b
Show file tree
Hide file tree
Showing 828 changed files with 156,633 additions and 137,468 deletions.
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ run:
modules-download-mode: vendor
linters:
enable:
- golint
- revive
- gofmt
issues:
exclude-use-default: false
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ else
endif

GOLANGCI_LINT=$(shell command -v golangci-lint 2> /dev/null)
GOLANGCI_LINT_VERSION=v1.31.0
GOLANGCI_LINT_VERSION=v1.41.1
ifeq ($(GOLANGCI_LINT),)
GOLANGCI_LINT=$(shell command -v $(PWD)/bin/golangci-lint 2> /dev/null)
endif
Expand Down Expand Up @@ -76,7 +76,7 @@ build-deps: ## Install dependencies
update-deps: ## Update dependencies
go get -u

compile: ensure-build-dir ensure-vendor## Compile dobby
compile: ensure-build-dir ## Compile dobby
$(GO_BINARY) build -ldflags "-X main.majorVersion=$(VERSION) -X main.minorVersion=${BUILD}" -o $(APP_EXECUTABLE) ./main.go

run: compile ## Run dobby
Expand All @@ -85,7 +85,7 @@ run: compile ## Run dobby
compile-linux: ensure-build-dir ## Compile dobby for linux
GOOS=linux GOARCH=amd64 $(GO_BINARY) build -ldflags "-X main.majorVersion=$(VERSION) -X main.minorVersion=${BUILD}" -o $(APP_EXECUTABLE) ./main.go

build: build-deps fmt lint test compile ## Build the application
build: fmt lint test compile ## Build the application

compress: compile ## Compress the binary
upx $(APP_EXECUTABLE)
Expand Down
24 changes: 18 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,24 @@ module github.com/thecasualcoder/dobby
go 1.14

require (
github.com/gin-gonic/gin v1.7.0
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/gin-gonic/gin v1.7.2
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-playground/validator/v10 v10.8.0 // indirect
github.com/golang/mock v1.4.3
github.com/stretchr/testify v1.4.0
github.com/golang/protobuf v1.5.2 // indirect
github.com/json-iterator/go v1.1.11 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/stretchr/testify v1.6.1
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14
github.com/swaggo/gin-swagger v1.2.0
github.com/swaggo/swag v1.6.7
github.com/urfave/cli v1.20.0
golang.org/x/net v0.0.0-20190912160710-24e19bdeb0f2 // indirect
github.com/swaggo/gin-swagger v1.3.0
github.com/swaggo/swag v1.7.0
github.com/ugorji/go v1.2.6 // indirect
github.com/urfave/cli v1.22.5
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985 // indirect
golang.org/x/tools v0.1.5 // indirect
google.golang.org/protobuf v1.27.1 // indirect
)
159 changes: 114 additions & 45 deletions go.sum

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions vendor/github.com/cpuguy83/go-md2man/v2/LICENSE.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions vendor/github.com/cpuguy83/go-md2man/v2/md2man/md2man.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b28518b

Please sign in to comment.