Skip to content

Commit b28518b

Browse files
committed
Upgrade dependencies
1 parent b0336a5 commit b28518b

File tree

828 files changed

+156633
-137468
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

828 files changed

+156633
-137468
lines changed

.golangci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ run:
33
modules-download-mode: vendor
44
linters:
55
enable:
6-
- golint
6+
- revive
77
- gofmt
88
issues:
99
exclude-use-default: false

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ else
3333
endif
3434

3535
GOLANGCI_LINT=$(shell command -v golangci-lint 2> /dev/null)
36-
GOLANGCI_LINT_VERSION=v1.31.0
36+
GOLANGCI_LINT_VERSION=v1.41.1
3737
ifeq ($(GOLANGCI_LINT),)
3838
GOLANGCI_LINT=$(shell command -v $(PWD)/bin/golangci-lint 2> /dev/null)
3939
endif
@@ -76,7 +76,7 @@ build-deps: ## Install dependencies
7676
update-deps: ## Update dependencies
7777
go get -u
7878

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

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

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

9090
compress: compile ## Compress the binary
9191
upx $(APP_EXECUTABLE)

go.mod

+18-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,24 @@ module github.com/thecasualcoder/dobby
33
go 1.14
44

55
require (
6-
github.com/gin-gonic/gin v1.7.0
6+
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
7+
github.com/gin-gonic/gin v1.7.2
8+
github.com/go-openapi/jsonreference v0.19.6 // indirect
9+
github.com/go-openapi/spec v0.20.3 // indirect
10+
github.com/go-openapi/swag v0.19.15 // indirect
11+
github.com/go-playground/validator/v10 v10.8.0 // indirect
712
github.com/golang/mock v1.4.3
8-
github.com/stretchr/testify v1.4.0
13+
github.com/golang/protobuf v1.5.2 // indirect
14+
github.com/json-iterator/go v1.1.11 // indirect
15+
github.com/mailru/easyjson v0.7.7 // indirect
16+
github.com/mattn/go-isatty v0.0.13 // indirect
17+
github.com/stretchr/testify v1.6.1
918
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14
10-
github.com/swaggo/gin-swagger v1.2.0
11-
github.com/swaggo/swag v1.6.7
12-
github.com/urfave/cli v1.20.0
13-
golang.org/x/net v0.0.0-20190912160710-24e19bdeb0f2 // indirect
19+
github.com/swaggo/gin-swagger v1.3.0
20+
github.com/swaggo/swag v1.7.0
21+
github.com/ugorji/go v1.2.6 // indirect
22+
github.com/urfave/cli v1.22.5
23+
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985 // indirect
24+
golang.org/x/tools v0.1.5 // indirect
25+
google.golang.org/protobuf v1.27.1 // indirect
1426
)

go.sum

+114-45
Large diffs are not rendered by default.

vendor/github.com/cpuguy83/go-md2man/v2/LICENSE.md

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/cpuguy83/go-md2man/v2/md2man/md2man.go

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)