Skip to content

Commit 29ae05f

Browse files
authored
Merge pull request #1189 from cloudflare/nicky/fix-coreos-mod-rename
2 parents f4208c6 + e582ed4 commit 29ae05f

File tree

3,241 files changed

+717641
-48444
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,241 files changed

+717641
-48444
lines changed

.travis.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,14 @@ language: go
33

44
matrix:
55
include:
6-
- go: 1.12.x
7-
- go: 1.13.x
86
- go: 1.14.x
97
- go: 1.15.x
10-
- arch: s390x
11-
go: 1.12.x
128
- arch: s390x
139
go: 1.13.x
1410
- arch: s390x
1511
go: 1.14.x
1612
- arch: s390x
1713
go: 1.15.x
18-
- arch: ppc64le
19-
go: 1.12.x
2014
- arch: ppc64le
2115
go: 1.13.x
2216
- arch: ppc64le

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ You can set the `GOOS` and `GOARCH` environment variables to have Go cross compi
6060

6161
### Installation
6262

63-
Installation requires a
64-
[working Go 1.12+ installation](http://golang.org/doc/install).
63+
Installation requires a [working Go 1.14+ installation](http://golang.org/doc/install).
64+
Alternatively, [prebuilt binaries are available](https://github.com/cloudflare/cfssl/releases)
6565

6666
```
67-
$ go get -u github.com/cloudflare/cfssl/cmd/cfssl
67+
$ go get github.com/cloudflare/cfssl/cmd/cfssl
6868
```
6969

7070
will download, build, and install the CFSSL tool.
@@ -73,15 +73,15 @@ To install any of the other utility programs that are
7373
in this repo (for instance `cfssljson` in this case):
7474

7575
```
76-
$ go get -u github.com/cloudflare/cfssl/cmd/cfssljson
76+
$ go get github.com/cloudflare/cfssl/cmd/cfssljson
7777
```
7878

7979
This will download, build, and install the CFSSLJSON tool.
8080

8181
And to simply install __all__ of the programs in this repo:
8282

8383
```
84-
$ go get -u github.com/cloudflare/cfssl/cmd/...
84+
$ go get github.com/cloudflare/cfssl/cmd/...
8585
```
8686

8787
This will download, build, and install all of the utility programs
@@ -353,7 +353,7 @@ for configuring and running the CA.
353353
verifying certificates. It can be installed with
354354

355355
```
356-
go get -u github.com/cloudflare/cfssl/cmd/mkbundle
356+
go get github.com/cloudflare/cfssl/cmd/mkbundle
357357
```
358358

359359
It takes a collection of certificates, checks for CRL revocation (OCSP

go.mod

Lines changed: 47 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,54 @@ go 1.14
44

55
require (
66
bitbucket.org/liamstask/goose v0.0.0-20150115234039-8488cc47d90c
7-
github.com/GeertJohan/go.rice v1.0.0
8-
github.com/certifi/gocertifi v0.0.0-20180118203423-deb3ae2ef261 // indirect
7+
github.com/GeertJohan/go.rice v1.0.2
8+
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
9+
github.com/certifi/gocertifi v0.0.0-20210507211836-431795d63e8d // indirect
910
github.com/cloudflare/backoff v0.0.0-20161212185259-647f3cdfc87a
10-
github.com/cloudflare/redoctober v0.0.0-20171127175943-746a508df14c
11-
github.com/getsentry/raven-go v0.0.0-20180121060056-563b81fc02b7 // indirect
12-
github.com/go-sql-driver/mysql v1.4.0
13-
github.com/google/certificate-transparency-go v1.0.21
11+
github.com/cloudflare/redoctober v0.0.0-20201013214028-99c99a8e7544
12+
github.com/cncf/udpa/go v0.0.0-20210322005330-6414d713912e // indirect
13+
github.com/coreos/go-systemd/v22 v22.3.2 // indirect
14+
github.com/daaku/go.zipexe v1.0.1 // indirect
15+
github.com/envoyproxy/protoc-gen-validate v0.6.1 // indirect
16+
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
17+
github.com/go-sql-driver/mysql v1.6.0
18+
github.com/golang/glog v0.0.0-20210429001901-424d2337a529 // indirect
19+
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
20+
github.com/google/certificate-transparency-go v1.1.2-0.20210511102531-373a877eec92
21+
github.com/google/uuid v1.2.0 // indirect
22+
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
23+
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
1424
github.com/jmhodges/clock v0.0.0-20160418191101-880ee4c33548
15-
github.com/jmoiron/sqlx v1.2.0
16-
github.com/kisielk/sqlstruct v0.0.0-20150923205031-648daed35d49
17-
github.com/kisom/goutils v1.1.0
18-
github.com/kylelemons/go-gypsy v0.0.0-20160905020020-08cad365cd28 // indirect
19-
github.com/lib/pq v1.3.0
20-
github.com/mattn/go-sqlite3 v1.10.0
21-
github.com/prometheus/client_golang v1.9.0
22-
github.com/stretchr/testify v1.4.0
25+
github.com/jmoiron/sqlx v1.3.3
26+
github.com/json-iterator/go v1.1.11 // indirect
27+
github.com/kisielk/sqlstruct v0.0.0-20201105191214-5f3e10d3ab46
28+
github.com/kisom/goutils v1.4.3
29+
github.com/kylelemons/go-gypsy v1.0.0 // indirect
30+
github.com/lib/pq v1.10.1
31+
github.com/mattn/go-runewidth v0.0.12 // indirect
32+
github.com/mattn/go-sqlite3 v1.14.7
33+
github.com/olekukonko/tablewriter v0.0.5 // indirect
34+
github.com/prometheus/client_golang v1.10.0
35+
github.com/prometheus/common v0.24.0 // indirect
36+
github.com/rivo/uniseg v0.2.0 // indirect
37+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
38+
github.com/sirupsen/logrus v1.8.1 // indirect
39+
github.com/soheilhy/cmux v0.1.5 // indirect
40+
github.com/spf13/cobra v1.1.3 // indirect
41+
github.com/stretchr/testify v1.7.0
42+
github.com/tmc/grpc-websocket-proxy v0.0.0-20201229170055-e5319fda7802 // indirect
43+
github.com/urfave/cli v1.22.5 // indirect
2344
github.com/ziutek/mymysql v1.5.4 // indirect
24-
github.com/zmap/zcrypto v0.0.0-20201128221613-3719af1573cf
25-
github.com/zmap/zlint/v3 v3.0.0
26-
golang.org/x/crypto v0.0.0-20201124201722-c8d3bf9c5392
27-
golang.org/x/lint v0.0.0-20190930215403-16217165b5de
28-
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
29-
google.golang.org/appengine v1.6.6 // indirect
45+
github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc
46+
github.com/zmap/zlint/v3 v3.1.0
47+
go.uber.org/multierr v1.7.0 // indirect
48+
golang.org/x/crypto v0.0.0-20210506145944-38f3c27a63bf
49+
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616
50+
golang.org/x/mod v0.4.2 // indirect
51+
golang.org/x/net v0.0.0-20210510120150-4163338589ed
52+
golang.org/x/oauth2 v0.0.0-20210427180440-81ed05c6b58c // indirect
53+
golang.org/x/sys v0.0.0-20210511113859-b0526f3d8744 // indirect
54+
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
55+
google.golang.org/genproto v0.0.0-20210510173355-fb37daa5cd7a // indirect
56+
honnef.co/go/tools v0.1.4 // indirect
3057
)

0 commit comments

Comments
 (0)