-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dependencies and unit tests (#106)
* Bump github.com/hyperledger/fabric-protos-go from 0.3.0 to 0.3.3 Bump github.com/hyperledger/fabric-protos-go from 0.3.0 to 0.3.3. Also, harden the tests from protobug error non-determinism. Signed-off-by: David Enyeart <[email protected]> * Bump github.com/stretchr/testify from 1.8.2 to 1.9.0 Bump github.com/stretchr/testify from 1.8.2 to 1.9.0. Signed-off-by: David Enyeart <[email protected]> * Bump github.com/golang/protobuf from 1.5.3 to 1.5.4 Bump github.com/golang/protobuf from 1.5.3 to 1.5.4. Signed-off-by: David Enyeart <[email protected]> * Bump google.golang.org/grpc from 1.54.0 to 1.63.2 Bump google.golang.org/grpc from 1.54.0 to 1.63.2. Signed-off-by: David Enyeart <[email protected]> * Bump golang.org/x/net to 0.23.0 Bump golang.org/x/net to 0.23.0. Signed-off-by: David Enyeart <[email protected]> * Bump Go to 1.21 Bump Go to 1.21. Signed-off-by: David Enyeart <[email protected]> * Make unit test pass with non-deterministic tls error Make unit test pass with non-deterministic tls error Signed-off-by: David Enyeart <[email protected]> --------- Signed-off-by: David Enyeart <[email protected]>
- Loading branch information
Showing
5 changed files
with
37 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
module github.com/hyperledger/fabric-chaincode-go | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 | ||
github.com/hyperledger/fabric-protos-go v0.3.0 | ||
github.com/stretchr/testify v1.8.2 | ||
google.golang.org/grpc v1.54.0 | ||
github.com/golang/protobuf v1.5.4 | ||
github.com/hyperledger/fabric-protos-go v0.3.3 | ||
github.com/stretchr/testify v1.9.0 | ||
google.golang.org/grpc v1.63.2 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/kr/pretty v0.3.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
golang.org/x/net v0.23.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240415180920-8c6c420018be // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // 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
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