Skip to content

Commit 536005c

Browse files
Update versions for v1.11.10 (#3216)
1 parent 57fb839 commit 536005c

File tree

6 files changed

+73
-6
lines changed

6 files changed

+73
-6
lines changed

RELEASES.md

+64
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,69 @@
11
# Release Notes
22

3+
## [v1.11.10](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.10)
4+
5+
This version is backwards compatible to [v1.11.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.0). It is optional, but encouraged.
6+
7+
The plugin version is updated to `36` all plugins must update to be compatible.
8+
9+
### APIs
10+
11+
- Renamed `avalanche_{vmName}_plugin_.*` metrics to `avalanche_{vmName}_.*`
12+
- Renamed `avalanche_{vmName}_rpcchainvm_.*` metrics to `avalanche_rpcchainvm_.*`
13+
14+
### Fixes
15+
16+
- Updated local network validator start times
17+
- Fixed block building timer recalculation when anyone can propose
18+
19+
### What's Changed
20+
21+
- Refactor rpcchainvm metrics registration by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3170
22+
- Add example reward calculator usage by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3171
23+
- Send AppErrors from p2p SDK by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/2753
24+
- build(tests): require `//go:build test` tag if importing test packages outside of `_test.go` files by @ARR4N in https://github.com/ava-labs/avalanchego/pull/3173
25+
- Include VM path in plugin version error by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3178
26+
- [ci] Simplify ci monitoring with custom actions by @marun in https://github.com/ava-labs/avalanchego/pull/3161
27+
- [vms/avm] Replace `strings.Replace` with `fmt.Sprintf` in tests by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/3177
28+
- Changes to support teleporter e2e tests by @feuGeneA in https://github.com/ava-labs/avalanchego/pull/3179
29+
- Reduce usage of `getBlock` in consensus by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3151
30+
- [ci] Enable run-monitored-tmpnet-cmd reuse by other repos by @marun in https://github.com/ava-labs/avalanchego/pull/3186
31+
- Restructured fee calculator API by @abi87 in https://github.com/ava-labs/avalanchego/pull/3145
32+
- P-Chain: Block-level fee Calculator by @abi87 in https://github.com/ava-labs/avalanchego/pull/3032
33+
- [ci] Allow antithesis test setups to be triggered independently by @marun in https://github.com/ava-labs/avalanchego/pull/3183
34+
- [antithesis] Fix image version separator in triggering workflows by @marun in https://github.com/ava-labs/avalanchego/pull/3191
35+
- Remove `block.Status` by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3158
36+
- [antithesis] Refactor compose config generation to simplify reuse by @marun in https://github.com/ava-labs/avalanchego/pull/3184
37+
- [antithesis] Add schedule for workflows by @marun in https://github.com/ava-labs/avalanchego/pull/3192
38+
- Update `golangci-lint` to `v1.59.1` by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/3195
39+
- [ci] Ensure monitoring action compatibility for other repos by @marun in https://github.com/ava-labs/avalanchego/pull/3193
40+
- chore: fix some comments for struct field by @linghuying in https://github.com/ava-labs/avalanchego/pull/3194
41+
- [antithesis] Configure workload history by @marun in https://github.com/ava-labs/avalanchego/pull/3196
42+
- [vms/proposervm] Set build block time correctly when anyone can propose by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/3197
43+
- chore: fix comment by @polymaer in https://github.com/ava-labs/avalanchego/pull/3201
44+
- Make math.Add64 and math.Mul64 generic by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3205
45+
- Implement ACP-103 fee package by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3203
46+
- [antithesis] Fix job duration by @marun in https://github.com/ava-labs/avalanchego/pull/3206
47+
- [vms/platformvm] `RegisterDUnsignedTxsTypes` -> `RegisterDurangoUnsignedTxsTypes` by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/3212
48+
- chore: fix some comments by @yingshanghuangqiao in https://github.com/ava-labs/avalanchego/pull/3213
49+
- Fix typos by @omahs in https://github.com/ava-labs/avalanchego/pull/3208
50+
- Cleanup fee.staticCalculator by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3210
51+
- typo by @meaghanfitzgerald in https://github.com/ava-labs/avalanchego/pull/3220
52+
- add getSubnet to p-chain api reference by @felipemadero in https://github.com/ava-labs/avalanchego/pull/3204
53+
- [ci] Update fuzz workflows to target master branch by @marun in https://github.com/ava-labs/avalanchego/pull/3221
54+
- Cleanup wallet tests by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3230
55+
- Update local validator start time by @ceyonur in https://github.com/ava-labs/avalanchego/pull/3224
56+
57+
### New Contributors
58+
59+
- @feuGeneA made their first contribution in https://github.com/ava-labs/avalanchego/pull/3179
60+
- @linghuying made their first contribution in https://github.com/ava-labs/avalanchego/pull/3194
61+
- @polymaer made their first contribution in https://github.com/ava-labs/avalanchego/pull/3201
62+
- @yingshanghuangqiao made their first contribution in https://github.com/ava-labs/avalanchego/pull/3213
63+
- @omahs made their first contribution in https://github.com/ava-labs/avalanchego/pull/3208
64+
65+
**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.11.9...v1.11.10
66+
367
## [v1.11.9](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.9)
468

569
This version is backwards compatible to [v1.11.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.0). It is optional, but encouraged.

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/DataDog/zstd v1.5.2
1111
github.com/NYTimes/gziphandler v1.1.1
1212
github.com/antithesishq/antithesis-sdk-go v0.3.8
13-
github.com/ava-labs/coreth v0.13.7-remove-status
13+
github.com/ava-labs/coreth v0.13.7
1414
github.com/ava-labs/ledger-avalanche/go v0.0.0-20240610153809-9c955cc90a95
1515
github.com/btcsuite/btcd/btcutil v1.1.3
1616
github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax
6262
github.com/antithesishq/antithesis-sdk-go v0.3.8 h1:OvGoHxIcOXFJLyn9IJQ5DzByZ3YVAWNBc394ObzDRb8=
6363
github.com/antithesishq/antithesis-sdk-go v0.3.8/go.mod h1:IUpT2DPAKh6i/YhSbt6Gl3v2yvUZjmKncl7U91fup7E=
6464
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
65-
github.com/ava-labs/coreth v0.13.7-remove-status h1:NVHOcHcHpgiVbGYQ1TcnnAbf16tONluvVnYt/Gi+bOA=
66-
github.com/ava-labs/coreth v0.13.7-remove-status/go.mod h1:lTa5PYte0AXBtUK866iQrURSuJLprubKjztbDrTWSrQ=
65+
github.com/ava-labs/coreth v0.13.7 h1:k8T9u/ROifl8f7oXjHRc1KvSISRl9txvy7gGVmHEz6g=
66+
github.com/ava-labs/coreth v0.13.7/go.mod h1:tXDujonxXFOF6oK5HS2EmgtSXJK3Gy6RpZxb5WzR9rM=
6767
github.com/ava-labs/ledger-avalanche/go v0.0.0-20240610153809-9c955cc90a95 h1:dOVbtdnZL++pENdTCNZ1nu41eYDQkTML4sWebDnnq8c=
6868
github.com/ava-labs/ledger-avalanche/go v0.0.0-20240610153809-9c955cc90a95/go.mod h1:pJxaT9bUgeRNVmNRgtCHb7sFDIRKy7CzTQVi8gGNT6g=
6969
github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g=

proto/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Avalanche gRPC
22

3-
Now Serving: **Protocol Version 35**
3+
Now Serving: **Protocol Version 36**
44

55
Protobuf files are hosted at
66
[https://buf.build/ava-labs/avalanche](https://buf.build/ava-labs/avalanche) and

version/compatibility.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"36": [
3+
"v1.11.10"
4+
],
25
"35": [
36
"v1.11.3",
47
"v1.11.4",

version/constants.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ const (
1818
// RPCChainVMProtocol should be bumped anytime changes are made which
1919
// require the plugin vm to upgrade to latest avalanchego release to be
2020
// compatible.
21-
RPCChainVMProtocol uint = 35
21+
RPCChainVMProtocol uint = 36
2222
)
2323

2424
// These are globals that describe network upgrades and node versions
2525
var (
2626
Current = &Semantic{
2727
Major: 1,
2828
Minor: 11,
29-
Patch: 9,
29+
Patch: 10,
3030
}
3131
CurrentApp = &Application{
3232
Name: Client,

0 commit comments

Comments
 (0)