Skip to content

Commit

Permalink
Update the grafana/grafana dependency to latest (#39)
Browse files Browse the repository at this point in the history
* Update the grafana/grafana dependency to latest, which resolves the Unknwon/unknwon conflict

* Update golang version to latest (1.16)
  • Loading branch information
rgeyer committed Aug 17, 2021
1 parent eed5e00 commit bca3066
Show file tree
Hide file tree
Showing 3 changed files with 1,782 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -6,7 +6,7 @@ executors:
# should also be updated.
golang:
docker:
- image: circleci/golang:1.14
- image: circleci/golang:1.16

jobs:
build:
Expand Down
57 changes: 40 additions & 17 deletions go.mod
@@ -1,32 +1,55 @@
module github.com/monitoring-mixins/mixtool

go 1.14
go 1.16

require (
github.com/Unknwon/com v0.0.0-20180617003950-da59b551951d // indirect
github.com/apache/arrow/go/arrow v0.0.0-20210812182928-5c5a0d63a42d // indirect
github.com/aws/aws-sdk-go v1.40.21 // indirect
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/bradfitz/gomemcache v0.0.0-20180710155616-bc664df96737 // indirect
github.com/fatih/color v1.9.0
github.com/ghodss/yaml v1.0.0
github.com/go-macaron/inject v0.0.0-20160627170012-d8a0b8677191 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/fatih/color v1.12.0
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
github.com/go-macaron/inject v0.0.0-20200308113650-138e5925c53b // indirect
github.com/go-macaron/session v0.0.0-20170320172209-b8e286a0dba8 // indirect
github.com/gobuffalo/envy v1.9.0 // indirect
github.com/gobuffalo/logger v1.0.4 // indirect
github.com/gobuffalo/packr v1.30.1
github.com/gobuffalo/packr/v2 v2.8.1
github.com/google/go-jsonnet v0.16.1-0.20200908152747-b70cbd441a39
github.com/gosimple/slug v1.2.0 // indirect
github.com/grafana/grafana v5.2.4+incompatible
github.com/grafana/tanka v0.12.0
github.com/inconshreveable/log15 v0.0.0-20180818164646-67afb5ed74ec // indirect
github.com/google/go-jsonnet v0.17.0
github.com/gosimple/slug v1.10.0 // indirect
github.com/grafana/grafana v1.9.2-0.20210809125333-90c87a52f753
github.com/grafana/grafana-plugin-sdk-go v0.112.0 // indirect
github.com/grafana/tanka v0.17.2
github.com/hashicorp/go-hclog v0.16.2 // indirect
github.com/hashicorp/yamux v0.0.0-20210707203944-259a57b3608c // indirect
github.com/imdario/mergo v0.3.12 // indirect
github.com/inconshreveable/log15 v0.0.0-20201112154412-8562bdadbbac // indirect
github.com/jsonnet-bundler/jsonnet-bundler v0.4.0
github.com/karrick/godirwalk v1.16.1 // indirect
github.com/klauspost/compress v1.13.4 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/pkg/errors v0.9.1
github.com/prometheus/prometheus v1.8.2-0.20200923143134-7e2db3d092f3
github.com/prometheus/common v0.30.0 // indirect
github.com/prometheus/procfs v0.7.2 // indirect
github.com/prometheus/prometheus v1.8.2-0.20210621150501-ff58416a0b02
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect
github.com/stretchr/testify v1.5.1
github.com/teris-io/shortid v0.0.0-20171029131806-771a37caa5cf // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
github.com/spf13/cast v1.4.0 // indirect
github.com/stretchr/objx v0.3.0 // indirect
github.com/stretchr/testify v1.7.0
github.com/teris-io/shortid v0.0.0-20201117134242-e59966efd125 // indirect
github.com/unknwon/com v1.0.1 // indirect
github.com/urfave/cli v1.22.1
github.com/urfave/cli v1.22.5
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect
golang.org/x/oauth2 v0.0.0-20210810183815-faf39c7919d5 // indirect
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
golang.org/x/text v0.3.7 // indirect
google.golang.org/genproto v0.0.0-20210811021853-ddbe55d93216 // indirect
google.golang.org/grpc v1.40.0 // indirect
gopkg.in/bufio.v1 v1.0.0-20140618132640-567b2bfa514e // indirect
gopkg.in/ini.v1 v1.38.2 // indirect
gopkg.in/macaron.v1 v1.3.1 // indirect
gopkg.in/redis.v2 v2.3.2 // indirect
)

0 comments on commit bca3066

Please sign in to comment.