Skip to content

Commit

Permalink
feat: update to go1.17 & update deps
Browse files Browse the repository at this point in the history
This updates to go1.17, updates the core deps for the project, and also
removes the outdated vendoring system, we now use go modules only.
  • Loading branch information
aauren committed Dec 23, 2021
1 parent 4451005 commit 44effdb
Show file tree
Hide file tree
Showing 842 changed files with 91 additions and 304,314 deletions.
1 change: 1 addition & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ builds:
- arm64
- amd64
- 386
gobinary: "go1.17.5"
archives:
- replacements:
darwin: MacOS
Expand Down
31 changes: 28 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,33 @@
module github.com/aauren/ntopng-exporter

go 1.15
go 1.17

require (
github.com/prometheus/client_golang v1.8.0
github.com/spf13/viper v1.7.1
github.com/prometheus/client_golang v1.11.0
github.com/spf13/viper v1.10.1
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.26.0 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
golang.org/x/sys v0.0.0-20211210111614-af8b64212486 // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/ini.v1 v1.66.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
466 changes: 62 additions & 404 deletions go.sum

Large diffs are not rendered by default.

20 changes: 0 additions & 20 deletions vendor/github.com/beorn7/perks/LICENSE

This file was deleted.

Loading

0 comments on commit 44effdb

Please sign in to comment.