Skip to content

Commit 18324b4

Browse files
Update version for v1.10.11 (#2077)
1 parent d8b845c commit 18324b4

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

RELEASES.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# Release Notes
22

3+
## [v1.10.11](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.11)
4+
5+
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.
6+
7+
The plugin version is unchanged at `28` and compatible with versions `v1.10.9 - v1.10.10`.
8+
9+
### Fixes
10+
11+
- Prevented overzelous benching due to dropped AppRequests
12+
- Populated the process file atomically to avoid racy reads
13+
14+
### What's Changed
15+
16+
- Rename platformvm/blocks to platformvm/block by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/1980
17+
- RewardValidatorTx cleanup by @abi87 in https://github.com/ava-labs/avalanchego/pull/1891
18+
- Cancel stale SH actions by @danlaine in https://github.com/ava-labs/avalanchego/pull/2003
19+
- e2e: Switch assertion library from gomega to testify by @marun in https://github.com/ava-labs/avalanchego/pull/1909
20+
- e2e: Add bootstrap checks to migrated kurtosis tests by @marun in https://github.com/ava-labs/avalanchego/pull/1935
21+
- Add `GetTransformSubnetTx` helper by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/2047
22+
- Add readme for the staking/local folder by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/2046
23+
- use `IsCortinaActivated` helper by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/2048
24+
- add `D` upgrade boilerplate by @dhrubabasu in https://github.com/ava-labs/avalanchego/pull/2049
25+
- e2e: Ensure interchain workflow coverage for the P-Chain by @marun in https://github.com/ava-labs/avalanchego/pull/1882
26+
- e2e: Switch to using default timed context everywhere by @marun in https://github.com/ava-labs/avalanchego/pull/1910
27+
- Remove indentation + confusing comment by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/2053
28+
- Delete ErrDelegatorSubset by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/2055
29+
- Fix default validator start time by @marun in https://github.com/ava-labs/avalanchego/pull/2058
30+
- Enable workflows to be triggered by merge queue by @marun in https://github.com/ava-labs/avalanchego/pull/2057
31+
- e2e: Migrate staking rewards test from kurtosis by @marun in https://github.com/ava-labs/avalanchego/pull/1767
32+
- Fix LRU documentation comment by @anusha-ctrl in https://github.com/ava-labs/avalanchego/pull/2036
33+
- Ignore AppResponse timeouts for benching by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/2066
34+
- trace: provide appName and version from Config by @najeal in https://github.com/ava-labs/avalanchego/pull/1893
35+
- Update perms.WriteFile to write atomically by @marun in https://github.com/ava-labs/avalanchego/pull/2063
36+
- ArchiveDB by @nytzuga in https://github.com/ava-labs/avalanchego/pull/1911
37+
38+
**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.10.10...v1.10.11
39+
340
## [v1.10.10](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.10)
441

542
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.

version/compatibility.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"28": [
33
"v1.10.9",
4-
"v1.10.10"
4+
"v1.10.10",
5+
"v1.10.11"
56
],
67
"27": [
78
"v1.10.5",

version/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var (
2121
Current = &Semantic{
2222
Major: 1,
2323
Minor: 10,
24-
Patch: 10,
24+
Patch: 11,
2525
}
2626
CurrentApp = &Application{
2727
Major: Current.Major,

0 commit comments

Comments
 (0)