Skip to content

Commit 65c653d

Browse files
Update versions for v1.11.9 (#3163)
1 parent e20115c commit 65c653d

7 files changed

+69
-8
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
To start developing on AvalancheGo, you'll need a few things installed.
66

7-
- Golang version >= 1.21.11
7+
- Golang version >= 1.21.12
88
- gcc
99
- g++
1010

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The minimum recommended hardware specification for nodes connected to Mainnet is
2323

2424
If you plan to build AvalancheGo from source, you will also need the following software:
2525

26-
- [Go](https://golang.org/doc/install) version >= 1.21.11
26+
- [Go](https://golang.org/doc/install) version >= 1.21.12
2727
- [gcc](https://gcc.gnu.org/)
2828
- g++
2929

RELEASES.md

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

3+
## [v1.11.9](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.9)
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 unchanged at `35` and is compatible with versions `v1.11.3-v1.11.8`.
8+
9+
### APIs
10+
11+
- Updated health metrics to use labels rather than namespaces
12+
- Added consensus poll termination metrics
13+
14+
### Configs
15+
16+
- Added `--version-json` flag to output version information in json format
17+
18+
### Fixes
19+
20+
- Fixed incorrect WARN log that could previously be emitted during start on nodes with slower disks
21+
- Fixed incorrect ERROR log that could previously be emitted if a peer tracking a subnet connects during shutdown
22+
- Fixed ledger dependency on erased commit
23+
- Fixed protobuf dependency to resolve compilation issues in some cases
24+
- Fixed C-chain filename logging
25+
26+
### What's Changed
27+
28+
- Error driven snowflake multi counter by @aaronbuchwald in https://github.com/ava-labs/avalanchego/pull/3092
29+
- [antithesis] Add ci jobs to trigger test runs by @marun in https://github.com/ava-labs/avalanchego/pull/3076
30+
- bump ledger-avalanche dependency to current main branch by @felipemadero in https://github.com/ava-labs/avalanchego/pull/3115
31+
- [antithesis] Fix image publication job by quoting default tag value by @marun in https://github.com/ava-labs/avalanchego/pull/3112
32+
- [e2e] Fix excessively verbose output from virtuous test by @marun in https://github.com/ava-labs/avalanchego/pull/3116
33+
- Remove .Status() from .IsPreferred() by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3111
34+
- Add early termination metrics case by case by @aaronbuchwald in https://github.com/ava-labs/avalanchego/pull/3093
35+
- Update C-chain wallet context by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3118
36+
- Standardize wallet tx acceptance polling by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3110
37+
- [antithesis] Remove assertions incompatible with fault injection by @marun in https://github.com/ava-labs/avalanchego/pull/3104
38+
- Use health labels by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3122
39+
- Remove `Decided` from the `Consensus` interface by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3123
40+
- Remove .Status() from .Accepted() by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3124
41+
- Refactor `event.Blocker` into `job.Scheduler` by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3125
42+
- Remove block lookup from `deliver` by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3130
43+
- [chains/atomic] Remove a nested if statement by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/3135
44+
- [vms/platformvm] Minor grammer fixes in `state` struct code comments by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/3136
45+
- bump protobuf (fixes some build issues) by @darioush in https://github.com/ava-labs/avalanchego/pull/3142
46+
- Emit version in JSON format for --json-version by @marun in https://github.com/ava-labs/avalanchego/pull/3129
47+
- Repackaged NextBlockTime and GetNextStakerChangeTime by @abi87 in https://github.com/ava-labs/avalanchego/pull/3134
48+
- [vms/platformvm] Cleanup execution config tests by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/3137
49+
- [tmpnet] Enable bootstrap of subnets with disjoint validator sets by @marun in https://github.com/ava-labs/avalanchego/pull/3138
50+
- Simplify dependency registration by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3139
51+
- Replace `wasIssued` with `shouldIssueBlock` by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3131
52+
- Remove parent lookup from issue by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3132
53+
- Remove status usage from consensus by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3140
54+
- Fix bootstrapping warn log by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3156
55+
- chore: fix some comment by @hattizai in https://github.com/ava-labs/avalanchego/pull/3144
56+
- [ci] Add actionlint job by @marun in https://github.com/ava-labs/avalanchego/pull/3160
57+
- check router is closing in requests by @ceyonur in https://github.com/ava-labs/avalanchego/pull/3157
58+
- Use `ids.Empty` instead of `ids.ID{}` by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/3166
59+
- Replace usage of utils.Err with errors.Join by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3167
60+
61+
**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.11.8...v1.11.9
62+
363
## [v1.11.8](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.8)
464

565
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ module github.com/ava-labs/avalanchego
44
// CONTRIBUTING.md
55
// README.md
66
// go.mod (here)
7-
go 1.21.11
7+
go 1.21.12
88

99
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.5-rc.0
13+
github.com/ava-labs/coreth v0.13.6-rc.1
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.5-rc.0 h1:PJQbR9o2RrW3j9ba4r1glXnmM2PNAP3xR569+gMcBd0=
66-
github.com/ava-labs/coreth v0.13.5-rc.0/go.mod h1:cm5c12xo5NiTgtbmeduv8i2nYdzgkczz9Wm3yiwwTRU=
65+
github.com/ava-labs/coreth v0.13.6-rc.1 h1:gRXRokmu0WOlPqyx+mTLWB655e8/w++u6qFcq9Mo7qA=
66+
github.com/ava-labs/coreth v0.13.6-rc.1/go.mod h1:vm9T8qzP7RLo/jR2MKkliPfaiGgWeEpu/PG6fvvPmog=
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=

version/compatibility.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"v1.11.5",
66
"v1.11.6",
77
"v1.11.7",
8-
"v1.11.8"
8+
"v1.11.8",
9+
"v1.11.9"
910
],
1011
"34": [
1112
"v1.11.2"

version/constants.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var (
2626
Current = &Semantic{
2727
Major: 1,
2828
Minor: 11,
29-
Patch: 8,
29+
Patch: 9,
3030
}
3131
CurrentApp = &Application{
3232
Name: Client,

0 commit comments

Comments
 (0)