Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 25f0465

Browse files
Merge pull request #116 from ava-labs/bump-1.7.17
AvalancheGo@v1.7.17
2 parents 0d66d20 + fea25ac commit 25f0465

File tree

10 files changed

+118
-374
lines changed

10 files changed

+118
-374
lines changed

.github/workflows/build-test-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: scripts/tests.integration.sh
2929
- name: Run e2e tests
3030
shell: bash
31-
run: E2E=true scripts/run.sh 1.7.13
31+
run: E2E=true scripts/run.sh 1.7.17
3232
env:
3333
E2E: true
3434
- name: Run GoReleaser for cross-platform builds

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: golangci-lint
1616
uses: golangci/golangci-lint-action@v2
1717
with:
18-
version: latest
18+
version: v1.47
1919
working-directory: .
2020
args: --timeout 3m
2121
run_static_analysis:

.golangci.yml

Lines changed: 11 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -16,72 +16,41 @@ linters:
1616
disable-all: true
1717
enable:
1818
- asciicheck
19-
- bidichk
20-
- bodyclose
21-
- contextcheck
2219
- deadcode
2320
- depguard
24-
- dogsled
25-
- dupl
26-
- durationcheck
2721
- errcheck
28-
- errname
29-
- errorlint
30-
- exhaustive
3122
- exportloopref
32-
- forcetypeassert
3323
- goconst
3424
- gocritic
3525
- gofmt
3626
- gofumpt
3727
- goimports
38-
- goprintffuncname
28+
- revive
3929
- gosec
4030
- gosimple
4131
- govet
42-
- ifshort
4332
- ineffassign
44-
- interfacer # https://github.com/mvdan/interfacer archived by the owner
45-
- lll
4633
- misspell
4734
- nakedret
48-
- nestif
49-
- noctx
5035
- nolintlint
5136
- prealloc
52-
- promlinter
53-
- revive
54-
- rowserrcheck
55-
- sqlclosecheck
56-
- staticcheck
57-
- structcheck
5837
- stylecheck
59-
- tagliatelle
60-
- tenv
61-
- thelper
62-
- tparallel
63-
- typecheck
6438
- unconvert
6539
- unparam
6640
- unused
6741
- varcheck
68-
- wastedassign
42+
- unconvert
6943
- whitespace
70-
# - cyclop
71-
# - exhaustivestruct
72-
# - forbidigo
73-
# - funlen
74-
# - gocognit
75-
# - godot
76-
# - goerr113
44+
- staticcheck
45+
# - bodyclose
46+
# - structcheck
47+
# - lll
7748
# - gomnd
78-
# - nilerr
79-
# - nlreturn
80-
# - paralleltest
81-
# - testpackage
82-
# - varnamelen
83-
# - wrapcheck
84-
# - wsl
49+
# - goprintffuncname
50+
# - interfacer
51+
# - typecheck
52+
# - goerr113
53+
# - noctx
8554

8655
linters-settings:
8756
gocritic:

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ this to its logical conclusion).
2121
[v0.0.3] AvalancheGo@v1.7.7-v1.7.9
2222
[v0.0.4] AvalancheGo@v1.7.10
2323
[v0.0.5] AvalancheGo@v1.7.11-v1.7.12
24-
[v0.0.6] AvalancheGo@v1.7.13
24+
[v0.0.6] AvalancheGo@v1.7.13-17
25+
[v0.0.7] AvalancheGo@v1.7.13-17
2526
```
2627

2728
## Introduction

go.mod

Lines changed: 20 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ module github.com/ava-labs/spacesvm
33
go 1.17
44

55
require (
6-
github.com/ava-labs/avalanche-network-runner-sdk v0.0.0
7-
github.com/ava-labs/avalanchego v1.7.13
8-
github.com/ethereum/go-ethereum v1.10.17
6+
github.com/ava-labs/avalanche-network-runner-sdk v0.1.0
7+
github.com/ava-labs/avalanchego v1.7.17
8+
github.com/ethereum/go-ethereum v1.10.20
99
github.com/fatih/color v1.13.0
1010
github.com/golang/mock v1.6.0
1111
github.com/gorilla/rpc v1.2.0
@@ -17,19 +17,18 @@ require (
1717
)
1818

1919
require (
20-
github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect
2120
github.com/beorn7/perks v1.0.1 // indirect
22-
github.com/btcsuite/btcd/btcec/v2 v2.1.2 // indirect
21+
github.com/btcsuite/btcd/btcec/v2 v2.2.0 // indirect
2322
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2423
github.com/davecgh/go-spew v1.1.1 // indirect
2524
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
26-
github.com/go-ole/go-ole v1.2.1 // indirect
25+
github.com/go-ole/go-ole v1.2.6 // indirect
2726
github.com/go-stack/stack v1.8.0 // indirect
2827
github.com/golang/protobuf v1.5.2 // indirect
2928
github.com/golang/snappy v0.0.4 // indirect
3029
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
31-
github.com/hashicorp/go-hclog v1.0.0 // indirect
32-
github.com/hashicorp/go-plugin v1.4.3 // indirect
30+
github.com/hashicorp/go-hclog v1.2.2 // indirect
31+
github.com/hashicorp/go-plugin v1.4.4 // indirect
3332
github.com/hashicorp/yamux v0.0.0-20200609203250-aecfd211c9ce // indirect
3433
github.com/inconshreveable/mousetrap v1.0.0 // indirect
3534
github.com/linxGnu/grocksdb v1.6.34 // indirect
@@ -45,26 +44,26 @@ require (
4544
github.com/prometheus/client_model v0.2.0 // indirect
4645
github.com/prometheus/common v0.32.1 // indirect
4746
github.com/prometheus/procfs v0.7.3 // indirect
48-
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
47+
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
4948
github.com/spf13/pflag v1.0.5 // indirect
50-
github.com/stretchr/testify v1.7.0 // indirect
51-
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect
49+
github.com/stretchr/testify v1.7.2 // indirect
50+
github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a // indirect
5251
github.com/tklauser/go-sysconf v0.3.5 // indirect
5352
github.com/tklauser/numcpus v0.2.2 // indirect
54-
go.uber.org/atomic v1.7.0 // indirect
55-
go.uber.org/multierr v1.6.0 // indirect
53+
github.com/yusufpapurcu/wmi v1.2.2 // indirect
54+
go.uber.org/atomic v1.9.0 // indirect
55+
go.uber.org/multierr v1.8.0 // indirect
5656
go.uber.org/zap v1.21.0 // indirect
57-
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
58-
golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5 // indirect
59-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
60-
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
57+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
58+
golang.org/x/net v0.0.0-20220708220712-1185a9018129 // indirect
59+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
6160
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
6261
golang.org/x/text v0.3.7 // indirect
63-
gonum.org/v1/gonum v0.9.1 // indirect
64-
google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8 // indirect
65-
google.golang.org/grpc v1.47.0 // indirect
62+
gonum.org/v1/gonum v0.11.0 // indirect
63+
google.golang.org/genproto v0.0.0-20220712132514-bdd2acd4974d // indirect
64+
google.golang.org/grpc v1.48.0 // indirect
6665
google.golang.org/protobuf v1.28.0 // indirect
6766
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
6867
gopkg.in/yaml.v2 v2.4.0 // indirect
69-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
68+
gopkg.in/yaml.v3 v3.0.1 // indirect
7069
)

0 commit comments

Comments
 (0)