-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ginkgo V2 and dependencies upgrade (#3)
* changes for ginkgo v2 conversion * update dependencies based upon develop branch * upgraded testkit to v2 * upgrade testkit to work with genesis v2 or v3
- Loading branch information
1 parent
9969f45
commit ed9efa8
Showing
4 changed files
with
122 additions
and
265 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,46 @@ | ||
module github.com/genesis-community/concourse-genesis-kit/spec | ||
module github.com/genesis-community/doomsday-genesis-kit/spec | ||
|
||
go 1.20 | ||
// replace github.com/genesis-community/testkit => ../../testkit | ||
|
||
go 1.22 | ||
|
||
require ( | ||
github.com/genesis-community/testkit v0.0.0-20210304200423-e4d99f180d8a | ||
github.com/onsi/ginkgo v1.14.0 | ||
github.com/onsi/gomega v1.10.1 | ||
github.com/genesis-community/testkit/v2 v2.0.2 | ||
github.com/onsi/ginkgo/v2 v2.17.3 | ||
github.com/onsi/gomega v1.33.1 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/alecthomas/participle v0.4.2-0.20191220090139-9fbceec1d131 // indirect | ||
github.com/BurntSushi/toml v1.3.2 // indirect | ||
github.com/blang/semver/v4 v4.0.0 // indirect | ||
github.com/egymgmbh/go-prefix-writer v0.0.0-20180609083313-7326ea162eca // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/gonvenience/bunt v1.1.1 // indirect | ||
github.com/gonvenience/neat v1.2.2 // indirect | ||
github.com/gonvenience/term v1.0.0 // indirect | ||
github.com/gonvenience/text v1.0.5 // indirect | ||
github.com/gonvenience/wrap v1.1.0 // indirect | ||
github.com/gonvenience/ytbx v1.2.2 // indirect | ||
github.com/homeport/dyff v1.0.2 // indirect | ||
github.com/itchyny/astgen-go v0.0.0-20200116103543-aaa595cf980e // indirect | ||
github.com/itchyny/gojq v0.10.1 // indirect | ||
github.com/lestrrat-go/strftime v1.0.1 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.0.3 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect | ||
github.com/gonvenience/bunt v1.3.5 // indirect | ||
github.com/gonvenience/neat v1.3.13 // indirect | ||
github.com/gonvenience/term v1.0.2 // indirect | ||
github.com/gonvenience/text v1.0.7 // indirect | ||
github.com/gonvenience/wrap v1.2.0 // indirect | ||
github.com/gonvenience/ytbx v1.4.4 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/pprof v0.0.0-20240509144519-723abb6459b7 // indirect | ||
github.com/homeport/dyff v1.7.1 // indirect | ||
github.com/itchyny/gojq v0.12.15 // indirect | ||
github.com/itchyny/timefmt-go v0.1.5 // indirect | ||
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect | ||
github.com/mattn/go-ciede2000 v0.0.0-20170301095244-782e8c62fec3 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/mitchellh/go-ps v0.0.0-20170309133038-4fdf99ab2936 // indirect | ||
github.com/mitchellh/hashstructure v1.0.0 // indirect | ||
github.com/nxadm/tail v1.4.4 // indirect | ||
github.com/pbnjay/strptime v0.0.0-20140226051138-5c05b0d668c9 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/sergi/go-diff v1.1.0 // indirect | ||
github.com/texttheater/golang-levenshtein v0.0.0-20180516184445-d188e65d659e // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mitchellh/go-ps v1.0.0 // indirect | ||
github.com/mitchellh/hashstructure v1.1.0 // indirect | ||
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect | ||
github.com/texttheater/golang-levenshtein v1.0.1 // indirect | ||
github.com/virtuald/go-ordered-json v0.0.0-20170621173500-b18e6e673d74 // indirect | ||
golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8 // indirect | ||
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7 // indirect | ||
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect | ||
golang.org/x/sys v0.0.0-20200519105757-fe76b779f299 // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/term v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/tools v0.21.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.