-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade to golang 1.17 Signed-off-by: Fabiano Graças <[email protected]> # Conflicts: # go.mod # go.sum * improve after shell lint Signed-off-by: Fabiano Graças <[email protected]> * improve after upgrade docker image (used by the build system) Signed-off-by: Fabiano Graças <[email protected]> * remove not needed variable Signed-off-by: Fabiano Graças <[email protected]> * apply fixes after security scan (hmake test) Signed-off-by: Fabiano Graças <[email protected]> * add missing package after merge with latest master branch code. Signed-off-by: Fabiano Graças <[email protected]> * improve docker layer Signed-off-by: Fabiano Graças <[email protected]> * upgrade packages Signed-off-by: Fabiano Graças <[email protected]> Co-authored-by: Fabiano Graças <[email protected]>
- Loading branch information
Showing
10 changed files
with
524 additions
and
115 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -15,3 +15,5 @@ | |
.vscode | ||
*_mock_test.go | ||
filenames | ||
|
||
.DS_Store |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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,22 +1,34 @@ | ||
module github.com/vmware/vmware-go-kcl | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/aws/aws-sdk-go v1.34.8 | ||
github.com/awslabs/kinesis-aggregation/go v0.0.0-20201211133042-142dfe1d7a6d | ||
github.com/golang/protobuf v1.3.1 | ||
github.com/google/uuid v1.1.1 | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/prometheus/client_golang v0.9.3 | ||
github.com/prometheus/common v0.4.1 | ||
github.com/prometheus/procfs v0.0.0-20190523193104-a7aeb8df3389 // indirect | ||
github.com/aws/aws-sdk-go v1.41.7 | ||
github.com/awslabs/kinesis-aggregation/go v0.0.0-20210630091500-54e17340d32f | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/uuid v1.3.0 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/common v0.32.1 | ||
github.com/rs/zerolog v1.25.0 | ||
github.com/sirupsen/logrus v1.4.2 | ||
github.com/stretchr/testify v1.5.1 | ||
go.uber.org/atomic v1.4.0 // indirect | ||
go.uber.org/multierr v1.2.0 // indirect | ||
go.uber.org/zap v1.11.0 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/stretchr/testify v1.7.0 | ||
go.uber.org/zap v1.19.1 | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 | ||
) | ||
|
||
go 1.13 | ||
require ( | ||
github.com/BurntSushi/toml v0.4.1 // 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/jmespath/go-jmespath v0.4.0 // 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/procfs v0.7.3 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/multierr v1.7.0 // indirect | ||
golang.org/x/sys v0.0.0-20211007075335-d3039528d8ac // indirect | ||
google.golang.org/protobuf v1.27.1 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) |
Oops, something went wrong.