Skip to content

Tags: Abuchtela/aptos-core

Tags

aptos-cli-v1.0.2

Toggle aptos-cli-v1.0.2's commit message
[aptos-cli] Update to 1.0.2

aptos-node-v1.1.0

Toggle aptos-node-v1.1.0's commit message
[gas] ChangeSet limits configurable on-chain

by introducing ChangeSetConfigs

aptos-node-testnet_80d7b03c630e0066bc12e2a3ba6f3546542bbb8c

Toggle aptos-node-testnet_80d7b03c630e0066bc12e2a3ba6f3546542bbb8c's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update blocks.md

aptos-node-mainnet_770629bd74fa96bd940ebf356b4c9f590830488c

Toggle aptos-node-mainnet_770629bd74fa96bd940ebf356b4c9f590830488c's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[docs] Improved aggregator Move documentation (aptos-labs#5659)

* [docs] Improved aggregator documentation

* [docs] Typo fixes in aggregator documentation

* [docs] addressed comments

aptos-node-devnet_20221201.0

Toggle aptos-node-devnet_20221201.0's commit message
Devnet release for 01/12/2022

aptos-node-mainnet_f0c03310a58bd212c04e65def103c5f7862be29f

Toggle aptos-node-mainnet_f0c03310a58bd212c04e65def103c5f7862be29f's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[e2e move tests] fix broken tests when running individually (aptos-la…

…bs#5705)

aptos-node-mainnet_8e9a89829d5c43aa0a092c45b4b26fed7b52b0ca

Toggle aptos-node-mainnet_8e9a89829d5c43aa0a092c45b4b26fed7b52b0ca's commit message
Clarify which endpoints return committed / pending transactions

mainnet_test

Toggle mainnet_test's commit message
[gha] Add credentials to build as well

aptos-node-mainnet_3b12b747b53a0dc610b0ea960459bb834a940852

Toggle aptos-node-mainnet_3b12b747b53a0dc610b0ea960459bb834a940852's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[smoke tests] when getting "random" ports, use the filesystem to avoi…

…d conflicts between parallel test cases (processes) (aptos-labs#5421)

### Description

This should eliminate an entire class of smoke test flakiness in CICD due to conflicting ports.

Doing lsof on flaky tests in CICD, we observe that a new parallel test takes a port from a currently running node between the time it is stopped and started. When a node N goes down (by design, in the test) a port that was being used by that node N is stolen by a node M in another test. When node N restarts, the conflict occurs. (It seems very hard to hit if things were really random, yet in practice we see this at least once a day. Possibly the OS is prioritizing recently released ephemeral ports.)

cargo nextest runs parallel tests in different processes, so we need to avoid conflicts between processes. This introduces a counter file that keeps track of the last port used and a file for locking this to avoid races.

### Test Plan

Run smoke tests in CICD. Also run `cargo test` locally as a sanity check that the behavior is not changed for non-nextest uses.

aptos-node-mainnet_52c527227b6

Toggle aptos-node-mainnet_52c527227b6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Clean up wallet docs (aptos-labs#5525)

* Clean up wallet docs

* Delete yarn.lock

Co-authored-by: David Wolinsky <isaac.wolinsky@gmail.com>