-
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.
Merge pull request #238 from companieshouse/feature/CC-781
CC-781 Update to 1.19
- Loading branch information
Showing
4 changed files
with
57 additions
and
19 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,65 @@ | ||
module github.com/companieshouse/payments.api.ch.gov.uk | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/companieshouse/chs.go v1.2.7 | ||
github.com/companieshouse/chs.go v1.2.10 | ||
github.com/companieshouse/gofigure v0.1.4 | ||
github.com/go-playground/validator/v10 v10.10.0 | ||
github.com/golang/mock v1.5.0 | ||
github.com/google/go-cmp v0.5.4 // indirect | ||
github.com/gorilla/mux v1.7.3 | ||
github.com/jarcoal/httpmock v1.0.8 | ||
github.com/plutov/paypal/v4 v4.4.2-0.20211005113259-1a2c109908d6 | ||
github.com/shopspring/decimal v0.0.0-20191130220710-360f2bc03045 | ||
github.com/smartystreets/goconvey v1.7.2 | ||
github.com/stretchr/testify v1.7.0 | ||
go.mongodb.org/mongo-driver v1.11.1 | ||
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect | ||
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 | ||
gopkg.in/go-playground/validator.v9 v9.30.2 | ||
) | ||
|
||
require ( | ||
github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798 // indirect | ||
github.com/Shopify/sarama v1.23.1 // indirect | ||
github.com/companieshouse/envconf v0.1.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/eapache/go-resiliency v1.1.0 // indirect | ||
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 // indirect | ||
github.com/eapache/queue v1.1.0 // indirect | ||
github.com/elodina/go-avro v0.0.0-20160406082632-0c8185d9a3ba // indirect | ||
github.com/go-playground/locales v0.14.0 // indirect | ||
github.com/go-playground/universal-translator v0.18.0 // indirect | ||
github.com/golang/snappy v0.0.1 // indirect | ||
github.com/google/go-cmp v0.5.4 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 // indirect | ||
github.com/hashicorp/go-uuid v1.0.1 // indirect | ||
github.com/jcmturner/gofork v0.0.0-20190328161633-dc7c13fece03 // indirect | ||
github.com/jtolds/gls v4.20.0+incompatible // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/mattn/go-colorable v0.1.4 // indirect | ||
github.com/mattn/go-isatty v0.0.8 // indirect | ||
github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b // indirect | ||
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect | ||
github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a // indirect | ||
github.com/smartystreets/assertions v1.2.0 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.1 // indirect | ||
github.com/xdg-go/stringprep v1.0.3 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect | ||
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect | ||
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect | ||
golang.org/x/sys v0.0.0-20220908164124-27713097b956 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect | ||
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect | ||
gopkg.in/go-playground/validator.v9 v9.30.2 | ||
gopkg.in/jcmturner/aescts.v1 v1.0.1 // indirect | ||
gopkg.in/jcmturner/dnsutils.v1 v1.0.1 // indirect | ||
gopkg.in/jcmturner/goidentity.v3 v3.0.0 // indirect | ||
gopkg.in/jcmturner/gokrb5.v7 v7.2.3 // indirect | ||
gopkg.in/jcmturner/rpc.v1 v1.1.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // 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