Skip to content

Commit b16bb17

Browse files
authored
bump go to 1.26.1 (#5416)
Signed-off-by: Fedor Partanskiy <fredprtnsk@gmail.com>
1 parent 57f91e9 commit b16bb17

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

common/ledger/blockledger/fileledger/factory_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func TestNewErrors(t *testing.T) {
163163
})
164164

165165
_, err = New(dir, metricsProvider)
166-
require.EqualError(t, err, fmt.Sprintf("error checking if dir [%s] is empty: lstat %s: permission denied", fileRepoDir, removeFile))
166+
require.EqualError(t, err, fmt.Sprintf("error checking if dir [%s] is empty: fstatat %s: permission denied", fileRepoDir, fileRepoDir))
167167
})
168168

169169
t.Run("removal fails", func(t *testing.T) {

docs/source/prereqs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ Optional: Install the latest Fabric supported version of [Go](https://golang.org
7373
installed (only required if you will be writing Go chaincode or SDK applications).
7474

7575
```shell
76-
brew install go@1.26.0
77-
go version # => go1.26.0 darwin/amd64
76+
brew install go@1.26.1
77+
go version # => go1.26.1 darwin/amd64
7878
```
7979

8080
### JQ

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hyperledger/fabric
22

3-
go 1.26.0
3+
go 1.26.1
44

55
require (
66
code.cloudfoundry.org/clock v1.15.0

tools/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module tools
22

3-
go 1.26.0
3+
go 1.26.1
44

55
tool (
66
github.com/AlekSi/gocov-xml

vagrant/golang.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# SPDX-License-Identifier: Apache-2.0
66

77
GOROOT='/opt/go'
8-
GO_VERSION=1.26.0
8+
GO_VERSION=1.26.1
99

1010
# ----------------------------------------------------------------
1111
# Install Golang

0 commit comments

Comments
 (0)