Skip to content

Commit 670e292

Browse files
Remove support for Go 1.20 (#686)
- Update dependencies for all language implementations. Signed-off-by: Mark S. Lewis <Mark.S.Lewis@outlook.com>
1 parent d278dc6 commit 670e292

File tree

16 files changed

+195
-239
lines changed

16 files changed

+195
-239
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ jobs:
5151
fail-fast: false
5252
matrix:
5353
go-version:
54-
- "1.20"
5554
- "1.21"
5655
- "1.22"
5756
env:
@@ -78,7 +77,6 @@ jobs:
7877
fail-fast: false
7978
matrix:
8079
go-version:
81-
- "1.20"
8280
- "1.21"
8381
- "1.22"
8482
env:

.github/workflows/verify-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55

66
env:
7-
GATEWAY_VERSION: 1.4.1
7+
GATEWAY_VERSION: 1.5.0
88

99
jobs:
1010
go:

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ See the [gateway.proto file](https://github.com/hyperledger/fabric-protos/blob/m
2020

2121
This repository comprises three functionally equivalent client APIs, written in Go, Typescript, and Java. In order to
2222
build these components, the following need to be installed and available in the PATH:
23-
- [Go 1.20+](https://go.dev/)
23+
24+
- [Go 1.21+](https://go.dev/)
2425
- [Node 18+](https://nodejs.org/)
2526
- [Java 8+](https://adoptium.net/)
2627
- [Docker](https://www.docker.com/)
@@ -42,6 +43,7 @@ In order to run any of the Hardware Security Module (HSM) tests, [SoftHSM v2](ht
4243
> **Note:** When the repository is first cloned, some mock implementations used for testing will not be present and the Go code will show compile errors. These will be generated when the `unit-test` target is run, or can be generated explicitly by running `make generate`.
4344
4445
The following Makefile targets are available:
46+
4547
- `make generate` - generate mock implementations used by unit tests
4648
- `make lint` - run linting checks for the Go code
4749
- `make unit-test-go` - run unit tests for the Go client API, excluding HSM tests
@@ -63,7 +65,7 @@ The following Makefile targets are available:
6365
### Scenario tests
6466

6567
The scenario tests create a Fabric network comprising two orgs (one peer in each org) and a single gateway within a set
66-
of docker containers. The clients connect to the gateway to submit transactions and query the ledger state.
68+
of docker containers. The clients connect to the gateway to submit transactions and query the ledger state.
6769

68-
The tests are defined as feature files using the Cucumber BDD framework. The same set of feature files
70+
The tests are defined as feature files using the Cucumber BDD framework. The same set of feature files
6971
is used across all three client language implementations to ensure consistency of behaviour.

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
module github.com/hyperledger/fabric-gateway
22

3-
go 1.20
3+
go 1.21
44

55
require (
66
github.com/cucumber/godog v0.13.0
77
github.com/cucumber/messages/go/v21 v21.0.1
8-
github.com/hyperledger/fabric-protos-go-apiv2 v0.2.1
8+
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.3
99
github.com/miekg/pkcs11 v1.1.1
1010
github.com/spf13/pflag v1.0.5
11-
github.com/stretchr/testify v1.8.4
11+
github.com/stretchr/testify v1.9.0
1212
go.uber.org/mock v0.3.0
13-
golang.org/x/crypto v0.17.0
14-
google.golang.org/grpc v1.59.0
15-
google.golang.org/protobuf v1.31.0
13+
golang.org/x/crypto v0.21.0
14+
google.golang.org/grpc v1.62.1
15+
google.golang.org/protobuf v1.33.0
1616
)
1717

1818
require (
1919
github.com/cucumber/gherkin/go/v26 v26.2.0 // indirect
2020
github.com/davecgh/go-spew v1.1.1 // indirect
2121
github.com/gofrs/uuid v4.3.1+incompatible // indirect
22-
github.com/golang/protobuf v1.5.3 // indirect
22+
github.com/golang/protobuf v1.5.4 // indirect
2323
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
2424
github.com/hashicorp/go-memdb v1.3.4 // indirect
2525
github.com/hashicorp/golang-lru v0.5.4 // indirect
2626
github.com/pmezard/go-difflib v1.0.0 // indirect
27-
golang.org/x/net v0.19.0 // indirect
28-
golang.org/x/sys v0.15.0 // indirect
27+
golang.org/x/net v0.22.0 // indirect
28+
golang.org/x/sys v0.18.0 // indirect
2929
golang.org/x/text v0.14.0 // indirect
30-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 // indirect
30+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304212257-790db918fca8 // indirect
3131
gopkg.in/yaml.v3 v3.0.1 // indirect
3232
)

go.sum

Lines changed: 20 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
1212
github.com/gofrs/uuid v4.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
1313
github.com/gofrs/uuid v4.3.1+incompatible h1:0/KbAdpx3UXAx1kEOWHJeOkpbgRFGHVgv+CFIY7dBJI=
1414
github.com/gofrs/uuid v4.3.1+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
15-
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
16-
github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
17-
github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
18-
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
19-
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
15+
github.com/golang/protobuf v1.5.4 h1:i7eJL8qZTpSEXOPTxNKhASYpMn+8e5Q6AdndVa1dWek=
16+
github.com/golang/protobuf v1.5.4/go.mod h1:lnTiLA8Wa4RWRcIUkrtSVa5nRhsEGBg48fD6rSs7xps=
17+
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
18+
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
2019
github.com/hashicorp/go-immutable-radix v1.3.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=
2120
github.com/hashicorp/go-immutable-radix v1.3.1 h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc=
2221
github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60=
@@ -28,8 +27,8 @@ github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/b
2827
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
2928
github.com/hashicorp/golang-lru v0.5.4 h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=
3029
github.com/hashicorp/golang-lru v0.5.4/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=
31-
github.com/hyperledger/fabric-protos-go-apiv2 v0.2.1 h1:iuCabkxwT1WZ06uREDjYPrtLsGFX05hwbpERYfmcatM=
32-
github.com/hyperledger/fabric-protos-go-apiv2 v0.2.1/go.mod h1:2pq0ui6ZWA0cC8J+eCErgnMDCS1kPOEYVY+06ZAK0qE=
30+
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.3 h1:Xpd6fzG/KjAOHJsq7EQXY2l+qi/y8muxBaY7R6QWABk=
31+
github.com/hyperledger/fabric-protos-go-apiv2 v0.3.3/go.mod h1:2pq0ui6ZWA0cC8J+eCErgnMDCS1kPOEYVY+06ZAK0qE=
3332
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
3433
github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=
3534
github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
@@ -51,27 +50,24 @@ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
5150
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
5251
github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
5352
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
54-
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
55-
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
53+
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
54+
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
5655
go.uber.org/mock v0.3.0 h1:3mUxI1No2/60yUYax92Pt8eNOEecx2D3lcXZh2NEZJo=
5756
go.uber.org/mock v0.3.0/go.mod h1:a6FSlNadKUHUa9IP5Vyt1zh4fC7uAwxMutEAscFbkZc=
58-
golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k=
59-
golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4=
60-
golang.org/x/net v0.19.0 h1:zTwKpTd2XuCqf8huc7Fo2iSy+4RHPd10s4KzeTnVr1c=
61-
golang.org/x/net v0.19.0/go.mod h1:CfAk/cbD4CthTvqiEl8NpboMuiuOYsAr/7NOjZJtv1U=
62-
golang.org/x/sys v0.15.0 h1:h48lPFYpsTvQJZF4EKyI4aLHaev3CxivZmv7yZig9pc=
63-
golang.org/x/sys v0.15.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
57+
golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA=
58+
golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs=
59+
golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc=
60+
golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
61+
golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
62+
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
6463
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
6564
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
66-
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
67-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 h1:DC7wcm+i+P1rN3Ff07vL+OndGg5OhNddHyTA+ocPqYE=
68-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4/go.mod h1:eJVxU6o+4G1PSczBr85xmyvSNYAKvAYgkub40YGomFM=
69-
google.golang.org/grpc v1.59.0 h1:Z5Iec2pjwb+LEOqzpB2MR12/eKFhDPhuqW91O+4bwUk=
70-
google.golang.org/grpc v1.59.0/go.mod h1:aUPDwccQo6OTjy7Hct4AfBPD1GptF4fyUjIkQ9YtF98=
71-
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
72-
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
73-
google.golang.org/protobuf v1.31.0 h1:g0LDEJHgrBl9N9r17Ru3sqWhkIx2NB67okBHPwC7hs8=
74-
google.golang.org/protobuf v1.31.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
65+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304212257-790db918fca8 h1:IR+hp6ypxjH24bkMfEJ0yHR21+gwPWdV+/IBrPQyn3k=
66+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304212257-790db918fca8/go.mod h1:UCOku4NytXMJuLQE5VuqA5lX3PcHCBo8pxNyvkf4xBs=
67+
google.golang.org/grpc v1.62.1 h1:B4n+nfKzOICUXMgyrNd19h/I9oH0L1pizfk1d4zSgTk=
68+
google.golang.org/grpc v1.62.1/go.mod h1:IWTG0VlJLCh1SkC58F7np9ka9mx/WNkjl4PGJaiq+QE=
69+
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
70+
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
7571
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
7672
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
7773
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=

java/pom.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
<groupId>org.hyperledger.fabric</groupId>
99
<artifactId>fabric-gateway</artifactId>
10-
<version>1.4.1-SNAPSHOT</version>
10+
<version>1.5.0-SNAPSHOT</version>
1111
<packaging>jar</packaging>
1212

1313
<name>fabric-gateway</name>
@@ -54,14 +54,14 @@
5454
<dependency>
5555
<groupId>org.junit</groupId>
5656
<artifactId>junit-bom</artifactId>
57-
<version>5.10.1</version>
57+
<version>5.10.2</version>
5858
<type>pom</type>
5959
<scope>import</scope>
6060
</dependency>
6161
<dependency>
6262
<groupId>io.grpc</groupId>
6363
<artifactId>grpc-bom</artifactId>
64-
<version>1.60.0</version>
64+
<version>1.62.2</version>
6565
<type>pom</type>
6666
<scope>import</scope>
6767
</dependency>
@@ -82,7 +82,7 @@
8282
<dependency>
8383
<groupId>org.assertj</groupId>
8484
<artifactId>assertj-core</artifactId>
85-
<version>3.25.2</version>
85+
<version>3.25.3</version>
8686
<scope>test</scope>
8787
</dependency>
8888
<dependency>
@@ -137,7 +137,7 @@
137137
<dependency>
138138
<groupId>org.hyperledger.fabric</groupId>
139139
<artifactId>fabric-protos</artifactId>
140-
<version>0.2.1</version>
140+
<version>0.3.3</version>
141141
</dependency>
142142
</dependencies>
143143

@@ -189,7 +189,7 @@
189189
</plugin>
190190
<plugin>
191191
<artifactId>maven-compiler-plugin</artifactId>
192-
<version>3.11.0</version>
192+
<version>3.12.1</version>
193193
<configuration>
194194
<source>${javaVersion}</source>
195195
<target>${javaVersion}</target>
@@ -204,7 +204,7 @@
204204
</plugin>
205205
<plugin>
206206
<artifactId>maven-surefire-plugin</artifactId>
207-
<version>3.2.2</version>
207+
<version>3.2.5</version>
208208
<dependencies>
209209
<dependency>
210210
<groupId>me.fabriciorby</groupId>
@@ -373,7 +373,7 @@
373373
<dependency>
374374
<groupId>com.puppycrawl.tools</groupId>
375375
<artifactId>checkstyle</artifactId>
376-
<version>10.12.5</version>
376+
<version>10.14.0</version>
377377
</dependency>
378378
</dependencies>
379379
</plugin>

node/package.json

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperledger/fabric-gateway",
3-
"version": "1.4.1",
3+
"version": "1.5.0",
44
"description": "Hyperledger Fabric Gateway client API for Node",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -33,34 +33,34 @@
3333
},
3434
"license": "Apache-2.0",
3535
"dependencies": {
36-
"@grpc/grpc-js": "^1.9.0",
37-
"@hyperledger/fabric-protos": "^0.2.0",
38-
"asn1.js": "^5.4.1",
39-
"bn.js": "^5.2.1",
40-
"elliptic": "^6.5.4",
36+
"@grpc/grpc-js": "^1.10.0",
37+
"@hyperledger/fabric-protos": "^0.3.0",
38+
"asn1.js": "^5.4.0",
39+
"bn.js": "^5.2.0",
40+
"elliptic": "^6.5.0",
4141
"google-protobuf": "^3.21.0"
4242
},
4343
"optionalDependencies": {
4444
"pkcs11js": "^2.1.0"
4545
},
4646
"devDependencies": {
47-
"@cyclonedx/cyclonedx-npm": "^1.14.3",
47+
"@cyclonedx/cyclonedx-npm": "^1.16.1",
4848
"@tsconfig/node18": "^18.2.2",
4949
"@types/elliptic": "^6.4.18",
5050
"@types/google-protobuf": "^3.15.12",
51-
"@types/jest": "^29.5.10",
52-
"@types/node": "^18.19.1",
53-
"@typescript-eslint/eslint-plugin": "^6.18.1",
54-
"@typescript-eslint/parser": "^6.18.1",
55-
"eslint": "^8.56.0",
51+
"@types/jest": "^29.5.12",
52+
"@types/node": "^18.19.22",
53+
"@typescript-eslint/eslint-plugin": "^7.1.1",
54+
"@typescript-eslint/parser": "^7.1.1",
55+
"eslint": "^8.57.0",
5656
"eslint-config-prettier": "^9.1.0",
57-
"eslint-plugin-jest": "^27.6.0",
57+
"eslint-plugin-jest": "^27.9.0",
5858
"eslint-plugin-tsdoc": "^0.2.17",
5959
"jest": "^29.7.0",
6060
"npm-run-all": "^4.1.5",
61-
"prettier": "^3.2.1",
62-
"ts-jest": "^29.1.1",
63-
"typedoc": "^0.25.4",
64-
"typescript": "~5.3.2"
61+
"prettier": "^3.2.5",
62+
"ts-jest": "^29.1.2",
63+
"typedoc": "^0.25.11",
64+
"typescript": "~5.3.3"
6565
}
6666
}

node/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,5 @@
1212
"noImplicitReturns": true,
1313
"forceConsistentCasingInFileNames": true
1414
},
15-
"include": [
16-
"src/"
17-
]
15+
"include": ["src/"]
1816
}
Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
module github.com/hyperledger/fabric-gateway/scenario/fixtures/chaincode/go/basic
22

3-
go 1.20
3+
go 1.21
44

5-
require github.com/hyperledger/fabric-contract-api-go v1.2.1
5+
require github.com/hyperledger/fabric-contract-api-go v1.2.2
66

77
require (
8-
github.com/go-openapi/jsonpointer v0.20.0 // indirect
9-
github.com/go-openapi/jsonreference v0.20.2 // indirect
10-
github.com/go-openapi/spec v0.20.9 // indirect
11-
github.com/go-openapi/swag v0.22.4 // indirect
8+
github.com/go-openapi/jsonpointer v0.20.3 // indirect
9+
github.com/go-openapi/jsonreference v0.20.5 // indirect
10+
github.com/go-openapi/spec v0.20.15 // indirect
11+
github.com/go-openapi/swag v0.22.10 // indirect
1212
github.com/gobuffalo/envy v1.10.2 // indirect
1313
github.com/gobuffalo/packd v1.0.2 // indirect
1414
github.com/gobuffalo/packr v1.30.1 // indirect
15-
github.com/golang/protobuf v1.5.3 // indirect
16-
github.com/hyperledger/fabric-chaincode-go v0.0.0-20230731094759-d626e9ab09b9 // indirect
17-
github.com/hyperledger/fabric-protos-go v0.3.0 // indirect
15+
github.com/golang/protobuf v1.5.4 // indirect
16+
github.com/hyperledger/fabric-chaincode-go v0.0.0-20240124143825-7dec3c7e7d45 // indirect
17+
github.com/hyperledger/fabric-protos-go v0.3.3 // indirect
1818
github.com/joho/godotenv v1.5.1 // indirect
1919
github.com/josharian/intern v1.0.0 // indirect
2020
github.com/mailru/easyjson v0.7.7 // indirect
21-
github.com/rogpeppe/go-internal v1.11.0 // indirect
21+
github.com/rogpeppe/go-internal v1.12.0 // indirect
2222
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
2323
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
2424
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
25-
golang.org/x/mod v0.12.0 // indirect
26-
golang.org/x/net v0.17.0 // indirect
27-
golang.org/x/sys v0.13.0 // indirect
28-
golang.org/x/text v0.13.0 // indirect
29-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
30-
google.golang.org/grpc v1.57.1 // indirect
31-
google.golang.org/protobuf v1.31.0 // indirect
25+
golang.org/x/mod v0.16.0 // indirect
26+
golang.org/x/net v0.22.0 // indirect
27+
golang.org/x/sys v0.18.0 // indirect
28+
golang.org/x/text v0.14.0 // indirect
29+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304212257-790db918fca8 // indirect
30+
google.golang.org/grpc v1.62.1 // indirect
31+
google.golang.org/protobuf v1.33.0 // indirect
3232
gopkg.in/yaml.v3 v3.0.1 // indirect
3333
)

0 commit comments

Comments
 (0)