Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.20.0 rc1 #1745

Closed
wants to merge 153 commits into from
Closed

0.20.0 rc1 #1745

wants to merge 153 commits into from

Conversation

Fraccaman
Copy link
Member

No description provided.

juped and others added 30 commits June 27, 2023 16:31
Add the epoch-sleep helper, which queries the current epoch and then
sleeps until the epoch is greater (polling once a second). This can
replace the multiple namadac invocations used in e2e tests.
Instead of manually querying, we now epoch-sleep until the next epoch,
limiting the number of clients invoked to 1.

Also update the epoch sleep e2e test to check the return value (parsed
from the output of epoch-sleep).
PoS hammered the node as fast as possible with epoch queries in its
tests to wait for a specified epoch. Instead, epoch-sleep repeatedly
until the target epoch has been reached.

This could be improved further by adding an --until parameter to
epoch-sleep.
tzemanovic and others added 26 commits July 20, 2023 15:39
* origin/tomas/win-build:
  changelog: add #1605
  apps: use fd-lock instead of file-lock for cross-platform support
* origin/ray/utils-next-epoch:
  changelog: add #1621
  ci/test/e2e: add new test
  apps: move epoch-sleep client cmd under utils
  tests/e2e: replace PoS test epoch waits with epoch-sleeps
  tests/e2e: change epoch_sleep to use namadac epoch-sleep
  apps: add namadac epoch-sleep
* origin/bengt/pos-cli-queries:
  changelog: add #1656
  pos: return sorted validator sets and code re-use for queries
  Expanding and fixing slashes query
  CLI query a validator's state
  query bonded-stake and order
* origin/aleks/clear-out-validator-sets-for-old-epochs:
  refactor: fix formatting
  add changelog
  refactor: simplify code
  refactor: introduce name for magic constant
  add test case
  feat: store total consensus stake; garbage collect validator sets
* origin/bengt/add-unjail-validator:
  handle errors for unjail-validator tx in the client
  expand and fix e2e test `double_signing_gets_slashed`
  add unjail tx at CLI
  changelog: add #1656
  pos: return sorted validator sets and code re-use for queries
  Expanding and fixing slashes query
  CLI query a validator's state
  query bonded-stake and order
* origin/bengt/faucet-0.18-fix:
  changelog: add #1667
  [fix]: Fixing errors introduced by merging in main
  [chore]: Incorporating in review comments
  Update core/src/types/uint.rs
  Update apps/src/lib/config/genesis.rs
  [fix]: Fixed the faucet to use uint instead of amount. This makes it portable across different assets
  converts faucet_withdrawal_limit to be correct
* origin/bat/remove-unused-assoc-ty:
  changelog: add #1670
  [chore]: Removed unnecessary  trait bounds
  [feat]: Removed unused associated type from ShieldedUtils
* origin/tomas/fix-init-chain-validator-set:
  improve error handling for `set_initial_validators`
  changelog: add #1686
  app/ledger/finalize_block: refactor validator set update for re-use
  app/ledger/init_chain: get genesis validator set using the new fn
  pos: add a function to get genesis validator consensus set for TM
* origin/tiago/rm-from-u64-on-ethbridge-stake:
  changelog: add #1692
  Call try_into() instead of into() on EthBridgeVotingPower
  Replace From<u64> with TryFrom<u64> impl on EthBridgeVotingPower
  Use new const in From impl
  Add MAX value for EthBridgeVotingPower
* origin/tomas/update-sysinfo:
  changelog: add #1695
  deps: update sysinfo to latest 0.29.4
* origin/tomas/token-balance-query:
  changelog: add #1173
  client/rpc: use the new token balance method
  shared/ledger/queries: add token balance client-only method
* origin/yuji/fix_changes_before_commit:
  test/shell/finalize_block: add some txs to DB commit test
  add changelog
  fix changes in finalize_block
* origin/aleks/refactor:
  changelog: add #1717
  refactor: rename function
  refactor: rename method
  refactor: use immutable reference
  refactor: use immutable reference
  refactor: remove duplicated code
* origin/tomas/pos-fix-rewards-boundary:
  changelog: add #1729
  test/ledger/finalize_block: fix slashing tests
  pos/slash: fix the validator state update to be in sync with set changes
  app/ledger/finalize_block: log block rewards before recording slashes
  test/e2e/slashing: extend the test to discover rewards issues
  pos: error out if validator is not in expected state for rewards
* origin/tomas/pos-data-history:
  changelog: add #1733
  pos/epoched: keep 2 past epochs of data by default
* origin/bat/feature/refactor-cli:
  channgelog: add #1738
  [feat]: Moved cli commands common to testing, cli, and sdk out into apps
* origin/yuji/ibc-multitoken:
  fix tx_transfer
  changelog: add #1693
  remove test_invalid_sender
  remove negative check
  remove vp_token
  fix client_connections encoding
  add comments
  fix according to feedback
  fix a test
  fix for tx signing
  for clippy
  fix multitoken vp to check the minter
  for clippy
  modify EthBridge VP and EthBridgePool VP for multitoken
  revert unexpected changes
  change eth_bridge balance keys to multitoken keys
  add unit tests
  remove InternalAddress::Minted
  rename
  fix token decoding
  fix balance print
  add multitoken VP file
  change to multitokens
  change multitoken
  clean denom validation
* origin/bat/refactor-masp-e2e:
  changelog: add #1714
  rustdoc: rm links to private symbols
  clippy fix
  make: build tests with nightly
  tests: enable feature(internal_output_capture) for tests only
  [feat]: Re-used code from the cli using new CliApi type
  [chore]: Move mock definitions into apps to re-restrict visibility. Better implementation of mock stdin
  [chore]: Replaced dev with testing feature flag on stio redirect func
  [chore]: Re-add #[cfg(test)] to test router modules
  Update apps/src/lib/cli/utils.rs
  Update tests/src/integration/masp.rs
  [chore]: Add lazy_static as workspace dep
  Update tests/Cargo.toml
  [chore]: Making the docs happy
  [chore]: Removed unnecessary  visibility qualifier
  [fix]: Cleanups
  [fix]: Resolved conflicts with eth bridge cli changes
  [fix]: Indentified flakiness in masp_txs_and_queries
  [feat]: All masp e2e tests refactored into integration tests. Update Makefile with integration test recipes
  [feat]: Added masp_txs_and_queries integration test which passes. Removed e2e tests which now have passing integration counterparts
  [feat]: Added masp pinned tx test which passes
  [fix]: Porting over masp incentives e2e test
  [fix]: Fixed the faucet to use uint instead of amount. This makes it portable across different assets
  [feat]: First basic integration test passing with plumbing
  [feat]: Implement mock cli and client for integration tests
  converts faucet_withdrawal_limit to be correct
  fixup! WIP refactoring masp e2e tests
  WIP refactoring masp e2e tests
@Fraccaman Fraccaman closed this Jul 22, 2023
@brentstone brentstone deleted the 0.20.0-rc1 branch November 20, 2023 23:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

9 participants