{% page-ref page="../tutorials/nodes-and-staking/upgrade-your-avalanchego-node.md" %}
v1.3.2 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is backwards compatible. It is optional, but encouraged. The patch includes security improvements, bug fixes, and monitoring improvements. {% endhint %}
Security Improvements
- Enforced a strict canonical format for C-chain blocks made prior to
Apricot Phase 1
. This ensures that modifications to theextra-data
block field can not result in modifications to the chain state during bootstrapping. - Changed the
Keystore
to ensure only encrypted values are sent over the IPC between avalanchego and plugin processes.
Bug Fixes:
- Fixed delegation cap calculations to include updating the current delegation maximum before removing a delegator. This ensures that the delegation cap is always enforced.
- Fixed
AVM
's static API to be registered correctly on startup. - Updated node
uptime
calculations to take network upgrades into account.
Monitoring Improvements
- Added an optional node indexer that can provide a locally consistent ordering of operations accepted on a chain.
- Updated ansible inventory to include numerous improvements (Huge thanks to @moreati).
v1.3.1 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is backwards compatible. It is optional, but encouraged. The patch includes stability, monitoring improvements, and minor bug fixes. {% endhint %}
The primary components to this upgrade include:
- Fixed C-chain segfault when performing compression on arm64 CPUs.
- Added group permissions to local files to enable complex node monitoring.
- Stripped white space from Auth passwords passed through the api-auth-password-file flag.
- Removed timeSinceNoOutstandingRequests as it was replaced by longestRunningRequest.
- Added additional metrics in network throttling.
- Various code cleanup.
Added command line arguments:
network-health-max-outstanding-request-duration
Removed command line arguments:
network-health-max-time-since-no-requests
v1.3.0 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} Please note that this change is not backwards compatible with previous releases.
This upgrade reduces C-chain gas fees, removes C-chain gas refunds, and includes various security improvements. We urge everyone in the community to update as soon as possible in order to ensure that their nodes remain healthy. {% endhint %}
The changes in the upgrade go into effect at 10 AM EST, March 25th 2021 on the Fuji testnet and 10 AM EST, March 31st 2021 on mainnet.
The primary components to this upgrade include:
- Reduced C-chain gas cost from 470 nAVAX to 225 nAVAX.
- Removed C-chain gas refunds. This change adopts EIP-3298.
- Refactored C-chain verification to be cleaner when performing network upgrades.
- Fixed the Auth API to properly enforce revoked tokens.
- Strengthened the Auth API to ensure the expected signature format is used.
- Removed the Auth API's password from the CLI arguments.
- Added more strict file permissions checks.
- Added some minor additional error handling.
- Sanitized log writes before being written to disk.
- Added configurable origins to the HTTP endpoint.
- Removed attempted HTTPs to HTTP fail over on startup. Now the node will close on startup if upgrading the HTTP endpoint to HTTPs fails.
Added command line arguments:
api-auth-password-file
specifies the file to read the Auth API's password from.
Removed command line arguments:
api-auth-password
v1.2.4 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is backwards compatible. It is optional, but encouraged. The patch includes stability and monitoring improvements. {% endhint %}
- Updated readme to correct storage requirements.
- Added additional error handling to Avalanche Tx verification during bootstrapping.
- Updated numerous metrics, including adding numerous new metrics relating to node health and database usage, removing unused and invalid metrics, and fixing some metric names.
- Added additional logging to CI.
- Added the C-chain to the list of critical chains.
v1.2.3 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is backwards compatible. It is optional, but encouraged. The patch includes stability and monitoring improvements. {% endhint %}
- Adjusted
[network, router, consensus]
health check parameters to remove flaky health checks. - Simplified C-chain block handling.
v1.2.2 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is backwards compatible. It is optional, but encouraged. The patch includes stability, performance, and monitoring improvements. {% endhint %}
- Added IP aliases in the network library to avoid repeated
SYN
calls. - Fixed bootstrap message handling when bootstrapping from yourself.
- Simplified
AdvanceTimeTx
issuance. - Added new consensus health checks.
- Adding node health logging.
- Added health responses to health
GET
requests. - Consolidated incoming message logs.
- Added error logging to the
LevelDB
wrapper. - Added error codes to the
rpcdb
to avoid string parsing. - Improved C-chain handling of canonical chain to reduce the number of reorgs.
- Improved C-chain handling of mock calls performed on the
pending
block.
v1.2.1 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is backwards compatible. It is optional, but encouraged. The patch includes stability, performance, and monitoring improvements.
Please note that this update removes `network-timeout-increase` and ‘network-timeout-reduction` as command line arguments. {% endhint %}
Change Summary:
- Added `UTXO`s to the `platformvm.getStake` response.
- Added benchlist reporting to the `info.peers` response.
- Added additional health checks into the networking layer.
- Added `percent of stake connected` as a reported metric.
- Added bootstrapping restart logic to ensure the node has caught up to the current tip, even during times of high throughput.
- Added subnet-wide bootstrapping to ensure that a chain won't fall behind due to another chain bootstrapping.
- Prevented verification of rejected blocks to avoid unnecessary computation.
- Removed gossiping of non-preferred blocks to the network.
- Switched the network timeout calculator to use an EWMA of the observed network latency.
- Removed `Get` requests from the network latency calculations.
- Cleaned up the benchlisting algorithm.
- Cleaned up handling of dropped messages on send.
- Cleaned up outstanding request and timeout logic.
- Generalized performance tracking to allow for prefixing of profile names.
- Added additional caching to the Avalanche bootstrapping traversal.
- Fixed ansible linting.
- The added command line arguments mainly consist of configurations of health checks. Additionally, the modified network latency calculations changed the name of some command line args.
Added command line arguments:
- `network-timeout-halflife`
- `network-timeout-coefficient`
- `network-health-min-conn-peers`
- `network-health-max-time-since-msg-received`
- `network-health-max-time-since-msg-sent`
- `network-health-max-portion-send-queue-full`
- `network-health-max-send-fail-rate`
- `network-health-max-time-since-no-requests`
- `router-health-max-drop-rate`
- `router-health-max-outstanding-requests`
- `health-check-frequency`
- `health-check-averager-halflife`
- `bootstrap-retry-enabled`
- `bootstrap-retry-max-attempts`
Removed command line arguments:
- `network-timeout-increase`
- `network-timeout-reduction`
v1.2.0 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} Please note that this patch is not backwards compatible with previous releases. This upgrade fixes performance issues related to interchange transfers between X, C, and P chains. We urge everyone in the community to upgrade as soon as possible in order to ensure that their nodes are not affected. Also, note that nodes may take several extra minutes to connect after the upgrade and the process should be allowed to complete uninterrupted. {% endhint %}
The primary components to this upgrade include:
- Fixed atomic import validation on C-Chain
- Added rule exception logic to allow atomic bonus blocks
- Added fail-fast logic into Shared Memory if duplicated deletes are issued
- Fixed issue where polls could stall in snowman because of a failure to clear requests
- Fixed BAD BLOCK issue in coreth due to unknown ancestors
- Fixed a race condition in the repair canonical chain script in coreth
- Limited number of processing blocks in Snowman and processing txs in Avalanche
- Updated networking timeout default values and benchlist settings
- Verified there was no safety violation after the initial network instability
v1.1.5 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is backwards compatible. It is optional but encouraged. The patch includes stability improvements. {% endhint %}
- Fixed a potential deadlock when registering new chains that could cause the P-chain and http(s) endpoint to block.
- Repairs TxID -> Block Height indexing in the C-chain.
- Added graceful handling of empty contract deployments in the debug_traceTransaction API in the C-chain.
- Improved error handling in the C-chain.
v1.1.4 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is backwards compatible. It is optional but encouraged. The patch includes CLI upgrades, API bug fixes, stability improvements, and performance improvements. {% endhint %}
- Fixed an issue where C-chain block indexes could map to unaccepted blocks at a given height.
- Fixed VM crash when the RPCChainVM experienced high API loads.
- Fixed optimistic vote bubbling in the Avalanche Engine to correctly pass votes through processing vertices.
- Added field IncludePartial to the AVM's GetBalance and GetAllBalances API methods. This changes the default behavior to only return the balances of spendable and uniquely owned assets.
- Added the ability to specify custom genesis configs for custom network IDs.
- Added additional IPC API functionality.
- Added additional caching to the RPCChainVM.
- Improved plugin directory lookup to always work with the binary releases.
v1.1.3 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is optional but encouraged. The patch includes minor bug fixes relating to APIs. {% endhint %}
- Fixed hanging call when attempting to filter C-chain logs.
- Fixed C-chain client to call the proper multi-coin API.
- Added
getAtomicUTXOs
toavm
andplatformvm
API clients.
v1.1.2 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is optional but encouraged. The patch includes bug fixes and performance improvements. {% endhint %}
- Fixed bootstrapping processing cache to reduce duplicated traversals when bootstrapping Avalanche.
- Optimized P-chain verification during bootstrapping.
- Fixed maximum bench list calculation to use the proper input values.
- Removed extra linter runs from CI.
- Added
Height
to thesnowman.Block
interface.
v1.1.1 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} This update is optional but encouraged. The patch includes bug fixes and performance improvements. {% endhint %}
- Fixed a node crash bug when users disabled the
Health
API. - Fixed a bug in uptime tracking that could over report a node's uptime.
- Refactored vertex parsing to use a
Codec
. - Separated stateful and stateless vertex management.
- Added per-field slice length checking to the Codec.
- Introduced a new codec type that groups
TypeID
s together. - Introduced message limit flags to the CLI.
- Introduced a semanticdb package to be used during a future database migration.
- Added Epoch tracking to the chain context.
- Improved some of the error messages returned during transaction validation.
- Reduced GC pressure in the version DB.
v1.1.0 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} Please note that this upgrade is not backwards compatible with previous releases. Upgrades must be performed no later than Monday, December 7th at 11 p.m. UTC (6 p.m. EST). The upgrade, which was originally scheduled around mid December, is now being expedited to fix an important token unlocking bug. We urge everyone in the community to upgrade as soon as possible in order to ensure that their nodes are not affected. {% endhint %}
There are two primary components to this upgrade:
- General preparations for our upcoming Apricot network upgrade called the Apricot Phase Zero Upgrade
- Fixing an issue that prevented stake-able locked outputs from being unlocked after their lock _**_time had passed
v1.0.6 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %} Please note that this release contains breaking changes described here. It changes the default response format of platform.getTxStatus and platform.getCurrentValidators. The update is optional but encouraged. The patch includes performance improvements and some quality of life improvements. {% endhint %}
- Removed deprecated formats of platform.getTxStatus and platform.getCurrentValidators.
- Added support for hex encodings of imported and exported users from the keystore API.
- Set golang requirement to v1.15.5 to avoid a DoS vulnerability found in the golang standard lib.
- Added API clients to act as helpers interacting with the node software.
- Enabled falling back to bootstrapping if a node becomes disconnected from the rest of the network.
- Fixed the GetUTXOs APIs when UTXOs referenced multiple addresses.
- Refactored binary encoding to better generalize RPC options.
- Fixed IP block filtering to correctly set the window length.
- Generalized the codec package to be able to manage multiple codecs with different versions.
- Added Epoch to the Vertex interface in preparation of a future release.
- Deferred transaction hashing to reduce CPU/Memory utilization past fast checks.
- For those using https://explorerapi.avax-dev.network/, the URL is going to be shut down in a future release. Please switch over to https://explorerapi.avax.network/.
For assistance with this update, follow our Developer FAQ, if you are still running into issues you can join our Discord for help.
v1.0.5 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %}
Please note that the release after this one, v1.0.6, will contain the breaking changes described here. Namely, the response format of platform.getTxStatus
and platform.getCurrentValidators
will change.
{% endhint %}
The changes in this release, v1.0.5, are backwards compatible with previous releases. The update is optional but encouraged. The patch includes performance improvements and some quality of life improvements.
- Added
IssueTx
andGetUTXOs
to the C-chain API to enable issuing atomic swaps without revealing private keys to a node. - Fixed memory leak in the snowman request manager with oracle block processing.
- Fix UTXO pagination bug that under-reported available funds.
- Moved chain http logs to live in the human-readable chain logs folder.
- Restructure how IDs are managed to avoid heap allocations.
- Optimized the
UniformSampler
s to avoid creating multiple maps. - Reduced usage of
ids.Set
in favor of[]ids.ID
to better utilize continuous memory. - Introduced
[]byte
reuse inPrefixDB
. - Implemented type-specific sorting functions to avoid frequent interface conversion allocations.
- Optimized AVM load user to avoid reading unnecessary information from disk.
- Removed a memory allocation + copy in socket sending for the full length of the message.
For assistance with this update, follow our Developer FAQ, if you are still running into issues you can join our Discord for help.
v1.0.4 AvalancheGo Release Notes (View on GitHub)
{% hint style="danger" %}
This update is optional but encouraged. The patch includes quality of life improvements and various performance enhancements. Note that this update requires the CLI parameters to be specified with -- rather than allowing for either - or --. For example, -public-ip=127.0.0.1
is no longer allowed and must be specified as --public-ip=127.0.0.1
. Otherwise, this update is backwards compatible.
{% endhint %}
• Added subnet whitelisting to allow a node owner to choose which subnets to validate.
• Added config file parsing for node settings.
• Added more options for specifying a node's IP address and added getNodeIP to the info *endpoint.
• Added a TxID to the result of get.Validators in the platformvm.
• Updated Coreth version.
• Cleaned up the snowball trie implementation and added additional tests to align with mutation tests.
• Implemented and optimized continuous time averages for tracking CPU and network latency.
• Significantly optimized memory allocations in various locations.
• Increased the signature verification cache size.
• Reduced DB reads during vertex management.
• Added an optional argument includeReason to platform.getTxStatus.
If not provided, or if false, the output from getTxStatus is the same as before.
For example:
{
"jsonrpc": "2.0",
"result": "Dropped",
"id": 1
}
If includeReason is true, the output from getTxStatus has a new format. It's an object that looks like this:
{
"jsonrpc": "2.0",
"result": {
"status":"[Status]",
"reason":"[Reason tx was dropped, if applicable]"
},
"id": 1
}
In this new format, reason will not be present unless the status is Dropped.
Anything that depends on platform.getTxStatus should switch to using the includeReason argument and use the new response format. After a few releases, we'll only support the new response format.
For assistance with this update, follow our Developer FAQ, if you are still running into issues you can join our Discord for help.