Skip to content

Commit 092cf18

Browse files
Update version to v1.13.2 (#4028)
1 parent a778bf3 commit 092cf18

File tree

4 files changed

+54
-3
lines changed

4 files changed

+54
-3
lines changed

RELEASES.md

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

3+
## [v1.13.2](https://github.com/ava-labs/avalanchego/releases/tag/v1.13.2)
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 `41` all plugins must update to be compatible.
8+
9+
### APIs
10+
11+
- Added initial support for HTTP2 connections into VMs
12+
- Removed native support for gzip compression of HTTP requests
13+
14+
### Fixes
15+
16+
- Fixed message timeout handling on L1s configured with `validatorOnly=true`
17+
- Fixed segfault on ARM64 when profiling is enabled
18+
19+
### What's Changed
20+
21+
- chore(tests/load): C-chain load testing by @qdm12 in https://github.com/ava-labs/avalanchego/pull/3914
22+
- Improve comments on message Ops by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3987
23+
- Remove requestID expectation for UnrequestedOps by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/3989
24+
- Add Simplex Messages To p2p.proto by @samliok in https://github.com/ava-labs/avalanchego/pull/3976
25+
- [tmpnet] Enable exclusive scheduling by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3988
26+
- [testing] Add local kube support for load tests by @RodrigoVillar in https://github.com/ava-labs/avalanchego/pull/3986
27+
- Add a label to XSVM tests by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3991
28+
- [tmpnet] Avoid port forwarding when running in a kube cluster by @maru-ava in https://github.com/ava-labs/avalanchego/pull/3997
29+
- Add support for VM HTTP2 handlers by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/3294
30+
- Move HTTP2 routing information into headers by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/4001
31+
- Clarify field names for simplex p2p messages by @samliok in https://github.com/ava-labs/avalanchego/pull/4002
32+
- Remove gzip middleware from API server by @mpignatelli12 in https://github.com/ava-labs/avalanchego/pull/4005
33+
- fix: allow for load tests to run in-cluster by @RodrigoVillar in https://github.com/ava-labs/avalanchego/pull/4003
34+
- chore: update libevm version by @alarso16 in https://github.com/ava-labs/avalanchego/pull/4006
35+
- Add support for XSVM grpc server reflection by @joshua-kim in https://github.com/ava-labs/avalanchego/pull/4010
36+
- fix: update log commands for stopping collectors by @RodrigoVillar in https://github.com/ava-labs/avalanchego/pull/4011
37+
- [tmpnet] Enure node config is saved on restart for both runtimes by @maru-ava in https://github.com/ava-labs/avalanchego/pull/4015
38+
- BLS Components for Simplex by @samliok in https://github.com/ava-labs/avalanchego/pull/3993
39+
- Capitalize secrets references by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/4018
40+
- build: update `libevm` to `v1.13.14-0.3.0.rc.1` by @alarso16 in https://github.com/ava-labs/avalanchego/pull/4023
41+
- Allow internal messages from disallowed nodeIDs by @StephenButtolph in https://github.com/ava-labs/avalanchego/pull/4024
42+
- optimize historical range by @rrazvan1 in https://github.com/ava-labs/avalanchego/pull/3658
43+
44+
### New Contributors
45+
46+
- @mpignatelli12 made their first contribution in https://github.com/ava-labs/avalanchego/pull/4005
47+
- @alarso16 made their first contribution in https://github.com/ava-labs/avalanchego/pull/4006
48+
49+
**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.13.1...v1.13.2
50+
351
## [v1.13.1](https://github.com/ava-labs/avalanchego/releases/tag/v1.13.1)
452

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

proto/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Avalanche gRPC
22

3-
Now Serving: **Protocol Version 40**
3+
Now Serving: **Protocol Version 41**
44

55
Protobuf files are hosted at
66
[https://buf.build/ava-labs/avalanche](https://buf.build/ava-labs/avalanche) and

version/compatibility.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"41": [
3+
"v1.13.2"
4+
],
25
"40": [
36
"v1.13.1"
47
],

version/constants.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ const (
1515
// RPCChainVMProtocol should be bumped anytime changes are made which
1616
// require the plugin vm to upgrade to latest avalanchego release to be
1717
// compatible.
18-
RPCChainVMProtocol uint = 40
18+
RPCChainVMProtocol uint = 41
1919
)
2020

2121
// These are globals that describe network upgrades and node versions
2222
var (
2323
Current = &Semantic{
2424
Major: 1,
2525
Minor: 13,
26-
Patch: 1,
26+
Patch: 2,
2727
}
2828
CurrentApp = &Application{
2929
Name: Client,

0 commit comments

Comments
 (0)