From 7bcad650a4653fd2fe14a0c1b81a00a415b162b3 Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Wed, 22 Nov 2023 12:52:06 -0500 Subject: [PATCH] Update versions --- RELEASES.md | 29 +++++++++++++++++++++++++++++ go.mod | 2 +- go.sum | 4 ++-- version/compatibility.json | 3 ++- version/constants.go | 2 +- 5 files changed, 35 insertions(+), 5 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 0f8d57aea22..c56d12f21fd 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,34 @@ # Release Notes +## [v1.10.16](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.16) + +This version is backwards compatible to [v1.10.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.0). It is optional, but encouraged. + +The plugin version is unchanged at `30` and compatible with version `v1.10.15`. + +### APIs + +- Added log level information to the result of `admin.setLoggerLevel` +- Updated `info.peers` to return chain aliases for `benched` chains +- Added support to sample validators of non-tracked subnets with `platform.sampleValidators` +- Added `avalanche_{chainID}_max_verified_height` metric to track the highest verified block + +### Configs + +- Added `--db-read-only` to run the node without writing to disk. + - This flag is only expected to be used during testing as it will cause memory use to increase over time +- Removed `--bootstrap-retry-enabled` +- Removed `--bootstrap-retry-warn-frequency` + +### Fixes + +- Fixed packing of large block requests during C-chain state sync +- Fixed order of updating acceptor tip and sending chain events to C-chain event subscribers + +### What's Changed + +**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.10.15...v1.10.16 + ## [v1.10.15](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.15) This version is backwards compatible to [v1.10.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.0). It is optional, but encouraged. diff --git a/go.mod b/go.mod index 0dc084caa30..f5dfa499d1d 100644 --- a/go.mod +++ b/go.mod @@ -11,7 +11,7 @@ require ( github.com/DataDog/zstd v1.5.2 github.com/Microsoft/go-winio v0.5.2 github.com/NYTimes/gziphandler v1.1.1 - github.com/ava-labs/coreth v0.12.9-rc.4 + github.com/ava-labs/coreth v0.12.9-rc.5 github.com/ava-labs/ledger-avalanche/go v0.0.0-20231102202641-ae2ebdaeac34 github.com/btcsuite/btcd/btcutil v1.1.3 github.com/cockroachdb/pebble v0.0.0-20230209160836-829675f94811 diff --git a/go.sum b/go.sum index 7d6768c9a84..35141a6c163 100644 --- a/go.sum +++ b/go.sum @@ -66,8 +66,8 @@ github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156 h1:eMwmnE/GDgah github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/ava-labs/coreth v0.12.9-rc.4 h1:RMPCNZ4HMuSkFVRaWBE8ec1wpcgAS5wogaURIOdj0/4= -github.com/ava-labs/coreth v0.12.9-rc.4/go.mod h1:rECKQfGFDeodrwGPlJSvFUJDbVr30jSMIVjQLi6pNX4= +github.com/ava-labs/coreth v0.12.9-rc.5 h1:xYBgNm1uOPfUdUNm8+fS8ellHnEd4qfFNb6uZHo9tqI= +github.com/ava-labs/coreth v0.12.9-rc.5/go.mod h1:rECKQfGFDeodrwGPlJSvFUJDbVr30jSMIVjQLi6pNX4= github.com/ava-labs/ledger-avalanche/go v0.0.0-20231102202641-ae2ebdaeac34 h1:mg9Uw6oZFJKytJxgxnl3uxZOs/SB8CVHg6Io4Tf99Zc= github.com/ava-labs/ledger-avalanche/go v0.0.0-20231102202641-ae2ebdaeac34/go.mod h1:pJxaT9bUgeRNVmNRgtCHb7sFDIRKy7CzTQVi8gGNT6g= github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= diff --git a/version/compatibility.json b/version/compatibility.json index 9a63fba3eaf..c3b35ed515e 100644 --- a/version/compatibility.json +++ b/version/compatibility.json @@ -1,6 +1,7 @@ { "30": [ - "v1.10.15" + "v1.10.15", + "v1.10.16" ], "29": [ "v1.10.13", diff --git a/version/constants.go b/version/constants.go index 25cedb5b73c..5d57933e424 100644 --- a/version/constants.go +++ b/version/constants.go @@ -22,7 +22,7 @@ var ( Current = &Semantic{ Major: 1, Minor: 10, - Patch: 15, + Patch: 16, } CurrentApp = &Application{ Major: Current.Major,