-
Notifications
You must be signed in to change notification settings - Fork 405
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update go chaincode dependencies in integration tests (#1485)
Signed-off-by: CaptainIRS <[email protected]>
- Loading branch information
1 parent
7c9c5d2
commit 943ab2a
Showing
8 changed files
with
519 additions
and
136 deletions.
There are no files selected for viewing
16 changes: 13 additions & 3 deletions
16
packages/caliper-tests-integration/fabric_docker_distributed_tests/src/marbles/go/go.mod
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,8 +1,18 @@ | ||
module github.com/hyperledger/fabric-samples/chaincode/marbles02/go | ||
|
||
go 1.12 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20190823162523-04390e015b85 | ||
github.com/hyperledger/fabric-protos-go v0.0.0-20190821214336-621b908d5022 | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20220920210243-7bc6fa0dd58b | ||
github.com/hyperledger/fabric-protos-go v0.0.0-20220613214546-bf864f01d75e | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect | ||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220718134204-073382fd740c // indirect | ||
google.golang.org/grpc v1.48.0 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
) |
144 changes: 113 additions & 31 deletions
144
packages/caliper-tests-integration/fabric_docker_distributed_tests/src/marbles/go/go.sum
Large diffs are not rendered by default.
Oops, something went wrong.
16 changes: 13 additions & 3 deletions
16
packages/caliper-tests-integration/fabric_docker_local_tests/src/marbles/go/go.mod
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,8 +1,18 @@ | ||
module github.com/hyperledger/fabric-samples/chaincode/marbles02/go | ||
|
||
go 1.12 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20190823162523-04390e015b85 | ||
github.com/hyperledger/fabric-protos-go v0.0.0-20190821214336-621b908d5022 | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20220920210243-7bc6fa0dd58b | ||
github.com/hyperledger/fabric-protos-go v0.0.0-20220613214546-bf864f01d75e | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect | ||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220718134204-073382fd740c // indirect | ||
google.golang.org/grpc v1.48.0 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
) |
144 changes: 113 additions & 31 deletions
144
packages/caliper-tests-integration/fabric_docker_local_tests/src/marbles/go/go.sum
Large diffs are not rendered by default.
Oops, something went wrong.
16 changes: 13 additions & 3 deletions
16
packages/caliper-tests-integration/fabric_tests/src/marbles/go/go.mod
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,8 +1,18 @@ | ||
module github.com/hyperledger/fabric-samples/chaincode/marbles02/go | ||
|
||
go 1.12 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20190823162523-04390e015b85 | ||
github.com/hyperledger/fabric-protos-go v0.0.0-20190821214336-621b908d5022 | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20220920210243-7bc6fa0dd58b | ||
github.com/hyperledger/fabric-protos-go v0.3.0 | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
golang.org/x/net v0.7.0 // indirect | ||
golang.org/x/sys v0.5.0 // indirect | ||
golang.org/x/text v0.7.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230221151758-ace64dc21148 // indirect | ||
google.golang.org/grpc v1.53.0 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
) |
159 changes: 128 additions & 31 deletions
159
packages/caliper-tests-integration/fabric_tests/src/marbles/go/go.sum
Large diffs are not rendered by default.
Oops, something went wrong.
16 changes: 13 additions & 3 deletions
16
packages/caliper-tests-integration/generator_tests/fabric/src/marbles/go/go.mod
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,8 +1,18 @@ | ||
module github.com/hyperledger/fabric-samples/chaincode/marbles02/go | ||
|
||
go 1.12 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20190823162523-04390e015b85 | ||
github.com/hyperledger/fabric-protos-go v0.0.0-20190821214336-621b908d5022 | ||
github.com/hyperledger/fabric-chaincode-go v0.0.0-20220920210243-7bc6fa0dd58b | ||
github.com/hyperledger/fabric-protos-go v0.0.0-20220613214546-bf864f01d75e | ||
) | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect | ||
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
google.golang.org/genproto v0.0.0-20220718134204-073382fd740c // indirect | ||
google.golang.org/grpc v1.48.0 // indirect | ||
google.golang.org/protobuf v1.28.0 // indirect | ||
) |
144 changes: 113 additions & 31 deletions
144
packages/caliper-tests-integration/generator_tests/fabric/src/marbles/go/go.sum
Large diffs are not rendered by default.
Oops, something went wrong.