Skip to content

Commit f8ed752

Browse files
Merge branch 'master' into bloom_miss_rate
2 parents 60e9ee9 + ffd7af9 commit f8ed752

File tree

3 files changed

+72
-2
lines changed

3 files changed

+72
-2
lines changed

RELEASES.md

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

3+
## [v1.13.3](https://github.com/ava-labs/avalanchego/releases/tag/v1.13.3)
4+
5+
This version is backwards compatible to [v1.13.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.13.0). It is optional, but encouraged.
6+
7+
The plugin version is updated to `42` all plugins must update to be compatible.
8+
9+
**This release removes the support for running on Windows. Any users running on Windows should utilize Windows Subsystem for Linux.**
10+
11+
### APIs
12+
13+
- Converted HTTP2 support to route by the `Avalanche-Api-Route` header.
14+
- Added `avalanche_snowman_blks_built_time_skew` metric.
15+
- Added p2p `bloomfilter_hit_rate` metrics for the P-chain, X-chain, C-chain atomic, and C-chain mempools.
16+
17+
### Fixes
18+
19+
- Fixed HTTP2 update request handling.
20+
- Fixed plugin handling of special errors during HTTP request handling.
21+
- Fixed plugin forwarding of HTTP headers.
22+
- Fixed C-chain shared memory UTXO parsing by the Primary Network Wallet.
23+
24+
### What's Changed
25+
26+
- chore: move windows from tier 3 to unsupported by @aaronbuchwald in https://github.com/ava-labs/avalanchego/pull/4031
27+
- [tmpnet] Run kube load test under a service account to validate RBAC by @maru-ava in https://github.com/ava-labs/avalanchego/pull/4030
28+
- Add block timeskew metric by @yacovm in https://github.com/ava-labs/avalanchego/pull/4034
29+
- refactor: use maps.Copy for cleaner map handling by @gopherorg in https://github.com/ava-labs/avalanchego/pull/4042
30+
- Fix bug in rpcchainvm where `io.EOF` is not propagated correctly by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/4035
31+
- chore: fix some minor issues in the comments by @alongdate in https://github.com/ava-labs/avalanchego/pull/4045
32+
- Update golangci-lint to v2 by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/4037
33+
- Simplex VerifiedBlock and BlockDeserializer by @samliok in https://github.com/ava-labs/avalanchego/pull/4009
34+
- Load Framework 2 by @RodrigoVillar in https://github.com/ava-labs/avalanchego/pull/3996
35+
- Rename test_util -> util_test by @samliok in https://github.com/ava-labs/avalanchego/pull/4054
36+
- Replace toEngine channel with a dedicated subscription API by @yacovm in https://github.com/ava-labs/avalanchego/pull/3999
37+
- Ensure that headers added by the server are propagated by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/4060
38+
- Update coreth to v0.15.3-rc.0 by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/4062
39+
- Add default validator set function to snowtest.context by @JonathanOppenheimer in https://github.com/ava-labs/avalanchego/pull/4065
40+
- Fix flake in TestNotifierReSubscribeAtPrefChange by @yacovm in https://github.com/ava-labs/avalanchego/pull/4067
41+
- Support header-based routing by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/4036
42+
- Simplify json-rpc client handling by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/4079
43+
- Update coreth to v0.15.3-rc.1 by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/4080
44+
- feat: add default flag options by @RodrigoVillar in https://github.com/ava-labs/avalanchego/pull/4044
45+
- chore: fix some function names in comment by @shangchenglumetro in https://github.com/ava-labs/avalanchego/pull/4053
46+
- chore: fix some inconsistent comments by @jingchanglu in https://github.com/ava-labs/avalanchego/pull/4068
47+
- refactor: use the built-in max/min to simplify the code by @socialsister in https://github.com/ava-labs/avalanchego/pull/4087
48+
- Comm Component for Simplex by @samliok in https://github.com/ava-labs/avalanchego/pull/3998
49+
- ci(load-tests): add GitHub Actions workflow for load testing on k8s by @Elvis339 in https://github.com/ava-labs/avalanchego/pull/4051
50+
- Update run monitored tmpnet cmd to make dashboard param configurable by @aaronbuchwald in https://github.com/ava-labs/avalanchego/pull/4089
51+
- Add WritePrometheusServiceDiscoveryConfigFile helper by @aaronbuchwald in https://github.com/ava-labs/avalanchego/pull/4072
52+
- [nix] Update to 25.05 by @maru-ava in https://github.com/ava-labs/avalanchego/pull/4050
53+
- chore: replace polling with subscription-based acceptance by @RodrigoVillar in https://github.com/ava-labs/avalanchego/pull/4059
54+
- Add Verification + Tracking Logic To Simplex Blocks by @samliok in https://github.com/ava-labs/avalanchego/pull/4052
55+
- Fix wrong pkg import for Primary Wallet by @0xJohnnyGault in https://github.com/ava-labs/avalanchego/pull/4096
56+
- [tmpnet] Source tmpnet defaults from a configmap by @maru-ava in https://github.com/ava-labs/avalanchego/pull/4057
57+
- Throttle platformVM block building until normal ops by @yacovm in https://github.com/ava-labs/avalanchego/pull/4097
58+
- fix: add throttle to error retries by @alarso16 in https://github.com/ava-labs/avalanchego/pull/4098
59+
- Measure bloom filter AppGossip hit rate by @yacovm in https://github.com/ava-labs/avalanchego/pull/4085
60+
61+
### New Contributors
62+
63+
- @gopherorg made their first contribution in https://github.com/ava-labs/avalanchego/pull/4042
64+
- @alongdate made their first contribution in https://github.com/ava-labs/avalanchego/pull/4045
65+
- @JonathanOppenheimer made their first contribution in https://github.com/ava-labs/avalanchego/pull/4065
66+
- @shangchenglumetro made their first contribution in https://github.com/ava-labs/avalanchego/pull/4053
67+
- @jingchanglu made their first contribution in https://github.com/ava-labs/avalanchego/pull/4068
68+
- @0xJohnnyGault made their first contribution in https://github.com/ava-labs/avalanchego/pull/4096
69+
70+
**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.13.2...v1.13.3
71+
372
## [v1.13.2](https://github.com/ava-labs/avalanchego/releases/tag/v1.13.2)
473

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

version/compatibility.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"42": [
3-
"v1.13.3"
3+
"v1.13.3",
4+
"v1.13.4"
45
],
56
"41": [
67
"v1.13.2"

version/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var (
2323
Current = &Semantic{
2424
Major: 1,
2525
Minor: 13,
26-
Patch: 3,
26+
Patch: 4,
2727
}
2828
CurrentApp = &Application{
2929
Name: Client,

0 commit comments

Comments
 (0)