diff --git a/RELEASES.md b/RELEASES.md index 8443885ddf14..73e79cc8bda0 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,42 @@ # Release Notes +## [v1.10.11](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.11) + +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 `28` and compatible with versions `v1.10.9 - v1.10.10`. + +### Fixes + +- Prevented overzelous benching due to dropped AppRequests +- Populated the process file atomically to avoid racy reads + +### What's Changed + +- Rename platformvm/blocks to platformvm/block by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/1980 +- RewardValidatorTx cleanup by @abi87 in https://github.com/ava-labs/avalanchego/pull/1891 +- Cancel stale SH actions by @danlaine in https://github.com/ava-labs/avalanchego/pull/2003 +- e2e: Switch assertion library from gomega to testify by @marun in https://github.com/ava-labs/avalanchego/pull/1909 +- e2e: Add bootstrap checks to migrated kurtosis tests by @marun in https://github.com/ava-labs/avalanchego/pull/1935 +- Add `GetTransformSubnetTx` helper by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/2047 +- Add readme for the staking/local folder by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/2046 +- use `IsCortinaActivated` helper by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/2048 +- add `D` upgrade boilerplate by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/2049 +- e2e: Ensure interchain workflow coverage for the P-Chain by @marun in https://github.com/ava-labs/avalanchego/pull/1882 +- e2e: Switch to using default timed context everywhere by @marun in https://github.com/ava-labs/avalanchego/pull/1910 +- Remove indentation + confusing comment by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/2053 +- Delete ErrDelegatorSubset by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/2055 +- Fix default validator start time by @marun in https://github.com/ava-labs/avalanchego/pull/2058 +- Enable workflows to be triggered by merge queue by @marun in https://github.com/ava-labs/avalanchego/pull/2057 +- e2e: Migrate staking rewards test from kurtosis by @marun in https://github.com/ava-labs/avalanchego/pull/1767 +- Fix LRU documentation comment by @anusha-ctrl in https://github.com/ava-labs/avalanchego/pull/2036 +- Ignore AppResponse timeouts for benching by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/2066 +- trace: provide appName and version from Config by @najeal in https://github.com/ava-labs/avalanchego/pull/1893 +- Update perms.WriteFile to write atomically by @marun in https://github.com/ava-labs/avalanchego/pull/2063 +- ArchiveDB by @nytzuga in https://github.com/ava-labs/avalanchego/pull/1911 + +**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.10.10...v1.10.11 + ## [v1.10.10](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.10) 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/version/compatibility.json b/version/compatibility.json index 2953f71110fb..1f500a1497e5 100644 --- a/version/compatibility.json +++ b/version/compatibility.json @@ -1,7 +1,8 @@ { "28": [ "v1.10.9", - "v1.10.10" + "v1.10.10", + "v1.10.11" ], "27": [ "v1.10.5", diff --git a/version/constants.go b/version/constants.go index 4d276235649d..11aad9dbe7ec 100644 --- a/version/constants.go +++ b/version/constants.go @@ -21,7 +21,7 @@ var ( Current = &Semantic{ Major: 1, Minor: 10, - Patch: 10, + Patch: 11, } CurrentApp = &Application{ Major: Current.Major,