This repository has been archived by the owner on Jul 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #451 from craftcms/feature/2.0.9
2.0.9
- Loading branch information
Showing
9 changed files
with
49 additions
and
25 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
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,42 +1,59 @@ | ||
module github.com/craftcms/nitro | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/docker/docker v20.10.1+incompatible | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/go-sql-driver/mysql v1.5.0 | ||
github.com/golang/protobuf v1.4.3 | ||
github.com/google/uuid v1.2.0 | ||
github.com/minio/selfupdate v0.3.1 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/opencontainers/image-spec v1.0.1 | ||
github.com/rodaine/table v1.0.1 | ||
github.com/spf13/cobra v1.1.1 | ||
google.golang.org/grpc v1.34.0 | ||
google.golang.org/protobuf v1.25.0 | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 | ||
) | ||
|
||
require ( | ||
github.com/Microsoft/go-winio v0.4.16 // indirect | ||
github.com/Microsoft/hcsshim v0.8.14 // indirect | ||
github.com/containerd/cgroups v0.0.0-20200531161412-0dbf7f05ba59 // indirect | ||
github.com/containerd/containerd v1.4.3 // indirect | ||
github.com/containerd/continuity v0.0.0-20201208142359-180525291bb7 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect | ||
github.com/docker/distribution v2.7.1+incompatible // indirect | ||
github.com/docker/docker v20.10.1+incompatible | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/go-sql-driver/mysql v1.5.0 | ||
github.com/golang/protobuf v1.4.3 | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/gogo/protobuf v1.3.1 // indirect | ||
github.com/google/go-cmp v0.5.2 // indirect | ||
github.com/google/uuid v1.2.0 | ||
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/kr/pretty v0.2.1 // indirect | ||
github.com/minio/selfupdate v0.3.1 | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/moby/sys/mount v0.2.0 // indirect | ||
github.com/moby/sys/mountinfo v0.4.0 // indirect | ||
github.com/moby/term v0.0.0-20201216013528-df9cb8a40635 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.1 | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/runc v0.1.1 // indirect | ||
github.com/rodaine/table v1.0.1 | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.0.1 // indirect | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.7.0 // indirect | ||
github.com/spf13/cobra v1.1.1 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
go.opencensus.io v0.22.0 // indirect | ||
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899 // indirect | ||
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect | ||
golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a // indirect | ||
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c // indirect | ||
golang.org/x/text v0.3.4 // indirect | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d // indirect | ||
google.golang.org/grpc v1.34.0 | ||
google.golang.org/protobuf v1.25.0 | ||
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 | ||
gopkg.in/yaml.v2 v2.2.8 // indirect | ||
gotest.tools/v3 v3.0.3 // indirect | ||
) |
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