Skip to content

Commit 24cbd9f

Browse files
authored
Bump subnet evm (#22)
* bump subnet-evm * nits * add issue template & compatibility table to readme * add compatibility json * check returned err * fix import path * comment out ping test
1 parent 145555a commit 24cbd9f

File tree

10 files changed

+330
-122
lines changed

10 files changed

+330
-122
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: Release Checklist
3+
about: Create a ticket to track a release
4+
title: ""
5+
labels: release
6+
assignees: ""
7+
---
8+
9+
**Release**
10+
The release version and a description of the planned changes to be included in the release.
11+
12+
**Issues**
13+
Link the major issues planned to be included in the release.
14+
15+
**Documentation**
16+
Link the relevant documentation PRs for this release.
17+
18+
**Checklist**
19+
20+
- [ ] Update version in scripts/versions.sh and plugin/main.go
21+
- [ ] Bump AvalancheGo dependency for RPCChainVM Compatibility
22+
- [ ] Add new entry in compatibility.json for RPCChainVM Compatibility
23+
- [ ] Update AvalancheGo compatibility in README

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,10 @@ You can create contract tests in `contracts/test` with the Hardhat test framewor
2525
## Changing Versions
2626

2727
In order to upgrade the Subnet-EVM version, you need to change the version in `go.mod` and `scripts/versions.sh`. You can also change the AvalancheGo version through `scripts/versions.sh` as well. Then you can run `./scripts/build.sh` to build the plugin with the new version.
28+
29+
## AvalancheGo Compatibility
30+
31+
```text
32+
[v0.1.0-v0.1.1] [email protected] (Protocol Version: 26)
33+
[v0.1.2] [email protected] (Protocol Version: 27)
34+
```

compatibility.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"rpcChainVMProtocolVersion": {
3+
"v0.1.2": 27,
4+
"v0.1.1": 26,
5+
"v0.1.0": 26
6+
}
7+
}

go.mod

Lines changed: 22 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,43 @@ module github.com/ava-labs/precompile-evm
33
go 1.19
44

55
require (
6-
github.com/ava-labs/avalanchego v1.10.2
7-
github.com/ava-labs/subnet-evm v0.5.2
6+
github.com/ava-labs/avalanchego v1.10.5
7+
github.com/ava-labs/subnet-evm v0.5.3
88
github.com/onsi/ginkgo/v2 v2.8.1
99
github.com/onsi/gomega v1.26.0
10+
github.com/stretchr/testify v1.8.3
1011
)
1112

1213
require (
1314
github.com/DataDog/zstd v1.5.2 // indirect
14-
github.com/NYTimes/gziphandler v1.1.1 // indirect
1515
github.com/VictoriaMetrics/fastcache v1.10.0 // indirect
1616
github.com/beorn7/perks v1.0.1 // indirect
1717
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
18-
github.com/btcsuite/btcd/btcutil v1.1.3 // indirect
1918
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
2019
github.com/cespare/xxhash/v2 v2.2.0 // indirect
20+
github.com/cockroachdb/errors v1.9.1 // indirect
21+
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
22+
github.com/cockroachdb/pebble v0.0.0-20230209160836-829675f94811 // indirect
23+
github.com/cockroachdb/redact v1.1.3 // indirect
24+
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
2125
github.com/davecgh/go-spew v1.1.1 // indirect
22-
github.com/deckarep/golang-set v1.8.0 // indirect
26+
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
2327
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
24-
github.com/ethereum/go-ethereum v1.10.26 // indirect
28+
github.com/ethereum/go-ethereum v1.11.4 // indirect
2529
github.com/fjl/memsize v0.0.0-20190710130421-bcb5799ab5e5 // indirect
2630
github.com/fsnotify/fsnotify v1.6.0 // indirect
2731
github.com/gballet/go-libpcsclite v0.0.0-20191108122812-4678299bea08 // indirect
28-
github.com/go-cmd/cmd v1.4.1 // indirect
32+
github.com/getsentry/sentry-go v0.18.0 // indirect
2933
github.com/go-logr/logr v1.2.3 // indirect
3034
github.com/go-logr/stdr v1.2.2 // indirect
3135
github.com/go-ole/go-ole v1.2.6 // indirect
3236
github.com/go-stack/stack v1.8.1 // indirect
37+
github.com/gogo/protobuf v1.3.2 // indirect
3338
github.com/golang/mock v1.6.0 // indirect
3439
github.com/golang/protobuf v1.5.3 // indirect
3540
github.com/golang/snappy v0.0.4 // indirect
36-
github.com/google/btree v1.1.2 // indirect
3741
github.com/google/go-cmp v0.5.9 // indirect
3842
github.com/google/uuid v1.3.0 // indirect
39-
github.com/gorilla/mux v1.8.0 // indirect
4043
github.com/gorilla/rpc v1.2.0 // indirect
4144
github.com/gorilla/websocket v1.4.2 // indirect
4245
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
@@ -47,6 +50,9 @@ require (
4750
github.com/holiman/big v0.0.0-20221017200358-a027dc42d04e // indirect
4851
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
4952
github.com/holiman/uint256 v1.2.0 // indirect
53+
github.com/klauspost/compress v1.15.15 // indirect
54+
github.com/kr/pretty v0.3.1 // indirect
55+
github.com/kr/text v0.2.0 // indirect
5056
github.com/magiconair/properties v1.8.6 // indirect
5157
github.com/mattn/go-colorable v0.1.13 // indirect
5258
github.com/mattn/go-isatty v0.0.16 // indirect
@@ -59,29 +65,29 @@ require (
5965
github.com/olekukonko/tablewriter v0.0.5 // indirect
6066
github.com/pelletier/go-toml v1.9.5 // indirect
6167
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
62-
github.com/pires/go-proxyproto v0.6.2 // indirect
68+
github.com/pkg/errors v0.9.1 // indirect
6369
github.com/pmezard/go-difflib v1.0.0 // indirect
64-
github.com/prometheus/client_golang v1.15.1 // indirect
70+
github.com/prometheus/client_golang v1.16.0 // indirect
6571
github.com/prometheus/client_model v0.3.0 // indirect
6672
github.com/prometheus/common v0.42.0 // indirect
67-
github.com/prometheus/procfs v0.9.0 // indirect
68-
github.com/rjeczalik/notify v0.9.3 // indirect
69-
github.com/rs/cors v1.7.0 // indirect
73+
github.com/prometheus/procfs v0.10.1 // indirect
74+
github.com/rogpeppe/go-internal v1.9.0 // indirect
75+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
7076
github.com/shirou/gopsutil v3.21.11+incompatible // indirect
71-
github.com/spaolacci/murmur3 v1.1.0 // indirect
7277
github.com/spf13/afero v1.8.2 // indirect
7378
github.com/spf13/cast v1.5.0 // indirect
7479
github.com/spf13/jwalterweatherman v1.1.0 // indirect
7580
github.com/spf13/pflag v1.0.5 // indirect
7681
github.com/spf13/viper v1.12.0 // indirect
7782
github.com/status-im/keycard-go v0.2.0 // indirect
78-
github.com/stretchr/testify v1.8.3 // indirect
7983
github.com/subosito/gotenv v1.3.0 // indirect
8084
github.com/supranational/blst v0.3.11-0.20220920110316-f72618070295 // indirect
8185
github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a // indirect
8286
github.com/tklauser/go-sysconf v0.3.5 // indirect
8387
github.com/tklauser/numcpus v0.2.2 // indirect
8488
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
89+
github.com/urfave/cli/v2 v2.17.2-0.20221006022127-8f469abc00aa // indirect
90+
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
8591
github.com/yusufpapurcu/wmi v1.2.2 // indirect
8692
go.opentelemetry.io/otel v1.11.0 // indirect
8793
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.11.0 // indirect
@@ -108,7 +114,6 @@ require (
108114
google.golang.org/protobuf v1.30.0 // indirect
109115
gopkg.in/ini.v1 v1.67.0 // indirect
110116
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
111-
gopkg.in/urfave/cli.v1 v1.20.0 // indirect
112117
gopkg.in/yaml.v2 v2.4.0 // indirect
113118
gopkg.in/yaml.v3 v3.0.1 // indirect
114119
)

0 commit comments

Comments
 (0)