Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions example/framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -582,10 +582,10 @@ func (v *Validator) ValidateRequest(request interface{}) (*ValidationErrorsObjec
}

var (
GitCommit string = "8bf73b60aa3f094512524ebd8d5fe96318cbed59"
GitBranch string = "feature-query-default-values"
GitCommit string = "586ca5ae9d932fcb9fb4ce623c01dd01cd3b61f8"
GitBranch string = "master"
GitTag string = "v1.0.0"
BuildTime string = "Mo 13. Sep 14:55:38 CEST 2021"
BuildTime string = "Mi 22. Sep 13:03:37 CEST 2021"
)

type VersionInfo struct {
Expand Down
64 changes: 37 additions & 27 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,49 @@ module github.com/ExperienceOne/apikit
go 1.13

require (
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect
github.com/asaskevich/govalidator v0.0.0-20210307081110-f21760c49a8d // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/corpix/uarand v0.1.1 // indirect
github.com/dave/jennifer v1.4.0
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/dave/jennifer v1.4.1
github.com/fatih/astrewrite v0.0.0-20191207154002-9094e544fcef
github.com/go-openapi/analysis v0.19.7
github.com/go-openapi/errors v0.19.3
github.com/go-openapi/loads v0.19.4
github.com/go-openapi/runtime v0.19.11 // indirect
github.com/go-openapi/spec v0.19.6
github.com/go-openapi/strfmt v0.19.4
github.com/go-openapi/swag v0.19.7 // indirect
github.com/go-openapi/validate v0.19.6
github.com/go-openapi/analysis v0.20.1
github.com/go-openapi/errors v0.20.1
github.com/go-openapi/jsonreference v0.19.6 // indirect
github.com/go-openapi/loads v0.20.2
github.com/go-openapi/runtime v0.19.31 // indirect
github.com/go-openapi/spec v0.20.3
github.com/go-openapi/strfmt v0.20.2
github.com/go-openapi/swag v0.19.15 // indirect
github.com/go-openapi/validate v0.20.2
github.com/go-ozzo/ozzo-routing v2.1.4+incompatible
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-playground/validator v9.31.0+incompatible
github.com/gofrs/uuid v3.2.0+incompatible
github.com/go-stack/stack v1.8.1 // indirect
github.com/gofrs/uuid v4.0.0+incompatible
github.com/golang/gddo v0.0.0-20191216155521-fbfc0f5e7810 // indirect
github.com/golang/protobuf v1.3.3 // indirect
github.com/icrowley/fake v0.0.0-20180203215853-4178557ae428
github.com/leodido/go-urn v1.2.0 // indirect
github.com/mailru/easyjson v0.7.1 // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.4.1
github.com/prometheus/procfs v0.0.10 // indirect
github.com/sirupsen/logrus v1.4.2
github.com/spf13/viper v1.7.0
github.com/stretchr/testify v1.4.0
github.com/urfave/cli v1.22.2
github.com/vektra/mockery/v2 v2.9.0
go.mongodb.org/mongo-driver v1.3.0 // indirect
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae // indirect
golang.org/x/tools v0.0.0-20200323144430-8dcfad9e016e
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/rs/zerolog v1.25.0 // indirect
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.2.1 // indirect
github.com/spf13/viper v1.9.0
github.com/stretchr/objx v0.3.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/urfave/cli v1.22.5
github.com/vektra/mockery/v2 v2.9.4
go.mongodb.org/mongo-driver v1.7.2 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/exp v0.0.0-20210916165020-5cb4fee858ee
golang.org/x/net v0.0.0-20210917221730-978cfadd31cf // indirect
golang.org/x/sys v0.0.0-20210921065528-437939a70204 // indirect
golang.org/x/term v0.0.0-20210916214954-140adaaadfaf // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/tools v0.1.6
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
)
Loading