Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go.mod: update dependencies #1657

Draft
wants to merge 24 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5869b05
server: move prometheus metrics to separate files
thaJeztah Nov 7, 2022
ca2d641
server: add no_metrics build-tag to disable prometheus
thaJeztah Nov 7, 2022
07a34ba
server: use docker/go-metrics utilities for prometheus
thaJeztah Nov 7, 2022
8a54c2b
go.mod: github.com/spf13/cobra v1.6.1
thaJeztah Nov 5, 2022
208b0ac
go.mod: golang.org/x/term v0.1.0
thaJeztah Nov 5, 2022
f0a6949
go.mod: golang.org/x/sys v0.1.0
thaJeztah Nov 5, 2022
80f2ee2
go.mod: golang.org/x/text v0.4.0
thaJeztah Nov 5, 2022
162195a
go.mod: golang.org/x/net v0.1.0
thaJeztah Nov 5, 2022
a01f6a2
go.mod: golang.org/x/crypto v0.1.0
thaJeztah Nov 5, 2022
ccbc076
go.mod: github.com/dvsekhvalnov/jose2go v1.5.0
thaJeztah Nov 5, 2022
f5cb2fe
go.mod: github.com/Shopify/logrus-bugsnag v0.0.0-20171204204709-577de…
thaJeztah Nov 5, 2022
cf853a9
go.mod: github.com/sirupsen/logrus v1.9.0
thaJeztah Nov 5, 2022
faeb999
go.mod: github.com/miekg/pkcs11 v1.1.1
thaJeztah Nov 5, 2022
afd9eef
go.mod: github.com/stretchr/testify v1.8.1
thaJeztah Nov 5, 2022
e058f41
go.mod: google.golang.org/protobuf v1.28.0
thaJeztah Nov 5, 2022
fb1c0d5
go.mod: github.com/gogo/protobuf v1.3.2
thaJeztah Nov 5, 2022
04ae5f3
go.mod: github.com/spf13/viper v1.13.0
thaJeztah Nov 5, 2022
6593165
go.mod: github.com/opencontainers/image-spec v1.0.2
thaJeztah Nov 6, 2022
c45a639
go.mod: github.com/docker/distribution v2.8.1
thaJeztah Nov 5, 2022
f3c9d4f
go.mod: github.com/gorilla/mux v1.8.0
thaJeztah Nov 5, 2022
2b3b1cf
go.mod: github.com/prometheus/client_golang v1.12.1
thaJeztah Nov 5, 2022
6a37534
go.mod: github.com/docker/go-metrics v0.0.1
thaJeztah Nov 6, 2022
fc0da05
go.mod: github.com/cloudflare/cfssl v1.5.0
thaJeztah Nov 6, 2022
1c7f718
go.mod: github.com/matttproud/golang_protobuf_extensions v1.0.2
thaJeztah Nov 6, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ CTIMEVAR=-X $(NOTARY_PKG)/version.GitCommit=$(GITCOMMIT) -X $(NOTARY_PKG)/versio
GO_LDFLAGS=-ldflags "-w $(CTIMEVAR)"
GO_LDFLAGS_STATIC=-ldflags "-w $(CTIMEVAR) -extldflags -static"
GOOSES = darwin linux windows

# Available build-tags:
#
# - pkcs11 enables pkcs11 integration
# - no_metrics removes prometheus metrics and the /metrics endpoint
NOTARY_BUILDTAGS ?= pkcs11
NOTARYDIR := /go/src/github.com/theupdateframework/notary

Expand Down
74 changes: 41 additions & 33 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,70 +3,78 @@ module github.com/theupdateframework/notary
go 1.17

require (
github.com/Shopify/logrus-bugsnag v0.0.0-20170309145241-6dbc35f2c30d
github.com/Shopify/logrus-bugsnag v0.0.0-20171204204709-577dee27f20d
github.com/bugsnag/bugsnag-go v1.0.5
github.com/cloudflare/cfssl v0.0.0-20180223231731-4e2dcbde5004 // 1.3.1
github.com/docker/distribution v2.7.1+incompatible
github.com/cloudflare/cfssl v1.5.0
github.com/docker/distribution v2.8.1+incompatible
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c
github.com/docker/go-connections v0.4.0
github.com/dvsekhvalnov/jose2go v0.0.0-20200901110807-248326c1351b
github.com/docker/go-metrics v0.0.1
github.com/dvsekhvalnov/jose2go v1.5.0
github.com/go-sql-driver/mysql v1.5.0
github.com/golang/protobuf v1.5.2
github.com/gorilla/mux v1.7.0
github.com/gorilla/mux v1.8.0
github.com/jinzhu/gorm v1.9.16
github.com/lib/pq v1.9.0
github.com/mattn/go-sqlite3 v1.14.0
github.com/miekg/pkcs11 v1.0.3
github.com/prometheus/client_golang v0.9.0-pre1.0.20180209125602-c332b6f63c06
github.com/sirupsen/logrus v1.8.1
github.com/spf13/cobra v1.6.0
github.com/spf13/viper v0.0.0-20150530192845-be5ff3e4840c
github.com/stretchr/testify v1.7.0
golang.org/x/crypto v0.0.0-20201117144127-c1f2f97bffc9
golang.org/x/net v0.0.0-20201021035429-f5854403a974
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221
github.com/miekg/pkcs11 v1.1.1
github.com/sirupsen/logrus v1.9.0
github.com/spf13/cobra v1.6.1
github.com/spf13/viper v1.13.0
github.com/stretchr/testify v1.8.1
golang.org/x/crypto v0.1.0
golang.org/x/net v0.1.0
golang.org/x/sys v0.1.0
golang.org/x/term v0.1.0
google.golang.org/grpc v1.47.0
google.golang.org/protobuf v1.27.1
google.golang.org/protobuf v1.28.0
gopkg.in/rethinkdb/rethinkdb-go.v6 v6.2.1
)

require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bitly/go-simplejson v0.5.0 // indirect
github.com/bugsnag/osext v0.0.0-20130617224835-0dd3f918b21b // indirect
github.com/bugsnag/panicwrap v0.0.0-20151223152923-e2c28503fcd0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/denisenkom/go-mssqldb v0.0.0-20191128021309-1d7a30a10f73 // indirect
github.com/docker/go-metrics v0.0.0-20180209012529-399ea8c73916 // indirect
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect
github.com/gogo/protobuf v1.0.0 // indirect
github.com/google/certificate-transparency-go v1.0.10-0.20180222191210-5ab67e519c93 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/google/certificate-transparency-go v1.0.21 // indirect
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.4 // indirect
github.com/jmoiron/sqlx v1.2.0 // indirect
github.com/juju/loggo v0.0.0-20190526231331-6e530bcce5d8 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/magiconair/properties v1.5.3 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.0.0 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.1 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/opentracing/opentracing-go v1.1.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4 // indirect
github.com/prometheus/common v0.0.0-20180110214958-89604d197083 // indirect
github.com/prometheus/procfs v0.0.0-20180125133057-cb4147076ac7 // indirect
github.com/spf13/cast v0.0.0-20150508191742-4d07383ffe94 // indirect
github.com/spf13/jwalterweatherman v0.0.0-20141219030609-3d60171a6431 // indirect
github.com/prometheus/client_golang v1.12.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/text v0.3.3 // indirect
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
github.com/weppos/publicsuffix-go v0.13.0 // indirect
github.com/zmap/zcrypto v0.0.0-20200911161511-43ff0ea04f21 // indirect
github.com/zmap/zlint/v2 v2.2.1 // indirect
golang.org/x/text v0.4.0 // indirect
google.golang.org/genproto v0.0.0-20220519153652-3a47de7e79bd // indirect
gopkg.in/cenkalti/backoff.v2 v2.2.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading