Skip to content

Commit

Permalink
Update versions for v1.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Feb 29, 2024
1 parent d1312cb commit 653a645
Show file tree
Hide file tree
Showing 4 changed files with 91 additions and 3 deletions.
85 changes: 85 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,90 @@
# Release Notes

## [v1.11.2](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.2)

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

The plugin version is updated to `34` all plugins must update to be compatible.

### APIs

- Removed the `ipc` API
- Removed the `auth` API
- Removed most `keystore` related methods from the `platform` API
- `platform.importKey`
- `platform.createAddress`
- `platform.addValidator`
- `platform.addDelegator`
- `platform.addSubnetValidator`
- `platform.createSubnet`
- `platform.exportAVAX`
- `platform.importAVAX`
- `platform.createBlockchain`
- Added push gossip metrics:
- `gossip_tracking{type="sent"}`
- `gossip_tracking{type="unsent"}`
- `gossip_tracking_lifetime_average`
to the following namespaces:
- `avalanche_P_vm_tx`
- `avalanche_X_vm_avalanche_tx`
- `avalanche_C_vm_sdk_atomic_tx_gossip`
- `avalanche_C_vm_sdk_eth_tx_gossip`
- Removed metrics:
- `avalanche_C_vm_eth_gossip_atomic_sent`
- `avalanche_C_vm_eth_gossip_eth_txs_sent`
- `avalanche_C_vm_eth_regossip_eth_txs_queued_attempts`
- `avalanche_C_vm_eth_regossip_eth_txs_queued_local_tx_count`
- `avalanche_C_vm_eth_regossip_eth_txs_queued_remote_tx_count`

### Configs

- Removed:
- `api-ipcs-enabled`
- `ipcs-chain-ids`
- `ipcs-path`
- `api-auth-required`
- `api-auth-password`
- `api-auth-password-file`
- `consensus-app-gossip-validator-size`
- `consensus-app-gossip-non-validator-size`
- `consensus-app-gossip-peer-size`
- Removed subnet configs:
- `appGossipValidatorSize`
- `appGossipNonValidatorSize`
- `appGossipPeerSize`
- Added X-chain and P-chain networking configs:
- `push-gossip-num-validators`
- `push-gossip-num-peers`
- `push-regossip-num-validators`
- `push-regossip-num-peers`
- `push-gossip-discarded-cache-size`
- `push-gossip-max-regossip-frequency`
- `push-gossip-frequency`
- Removed X-chain and P-chain networking configs:
- `legacy-push-gossip-cache-size`
- Added C-chain configs:
- `push-gossip-num-validators`
- `push-gossip-num-peers`
- `push-regossip-num-validators`
- `push-regossip-num-peers`
- `push-gossip-frequency`
- `pull-gossip-frequency`
- Removed C-chain configs:
- `tx-pool-journal`
- `tx-pool-rejournal`
- `remote-gossip-only-enabled`
- `regossip-max-txs`
- `remote-tx-gossip-only-enabled`
- `tx-regossip-max-size`

### Fixes

- Fixed mempool push gossip amplification

### What's Changed

**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.11.0...v1.11.2

## [v1.11.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.0)

This upgrade consists of the following Avalanche Community Proposals (ACPs):
Expand Down
2 changes: 1 addition & 1 deletion proto/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Avalanche gRPC

Now Serving: **Protocol Version 33**
Now Serving: **Protocol Version 34**

Protobuf files are hosted at
[https://buf.build/ava-labs/avalanche](https://buf.build/ava-labs/avalanche) and
Expand Down
3 changes: 3 additions & 0 deletions version/compatibility.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"34": [
"v1.11.2"
],
"33": [
"v1.11.0"
],
Expand Down
4 changes: 2 additions & 2 deletions version/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ const (
// RPCChainVMProtocol should be bumped anytime changes are made which
// require the plugin vm to upgrade to latest avalanchego release to be
// compatible.
RPCChainVMProtocol uint = 33
RPCChainVMProtocol uint = 34
)

// These are globals that describe network upgrades and node versions
var (
Current = &Semantic{
Major: 1,
Minor: 11,
Patch: 0,
Patch: 2,
}
CurrentApp = &Application{
Name: Client,
Expand Down

0 comments on commit 653a645

Please sign in to comment.