-
Notifications
You must be signed in to change notification settings - Fork 993
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'v0.18.1' into tiago/ethbridge/amounts+ethbridge
Namada 0.18.1 is a patch release that addresses transaction format changes and minor ledger storage improvements. * tag 'v0.18.1': Namada 0.18.1 added chagelog Added changelog entry. clippy, fmt Simplified the reveal PK transaction construction flow. Factored chain_id reading from submit functions. Allow Tx builders to take verification keys. Increased usage of PublicKeys relative to SecretKeys in tx construction. Only reveal a public key when the signer is an implicit address. Now only use TxBroadcastData::Wrapper for non dry runs. Now update proof of work solution in transaction header. Separating out the reveal PK transaction construction. Separate transaction building from signing from submission. Removed unnecessary header updates for dry runs. clippy fmt and clippy Update .github/PULL_REQUEST_TEMPLATE/new_topic.md hopefully fixes init_network Added a changelog entry. Stop encrypting transactions in tests. Disable encrypting transactions when sending. git: added topic PR template fix: increase the genesis parameter changelog: add #1632 storage_api/lazy_map: remove entries by prefixed key test/core/wl_storage: extend prefix iter test to include delete prefix core/storage_api: add `StorageWrite::delete_prefix` changelog: add #1642 test/storage/rocksdb: check that prefix_iter matches only full segments ledger/db: ensure that prefix iter only matches full key segments fix `unclog release` command Added changelog entry. Fixed processing of code inside init-proposal transactions. changelog: add #1642 test/storage/rocksdb: check that prefix_iter matches only full segments Update build_network.sh Added changelog entry. [fix]: CMT_LOG_LEVEL is now correct, not TM_LOG_LEVEL ledger/db: ensure that prefix iter only matches full key segments fix annoying error on line 69 [fix]: Fix failing test-wasm by adding code section and also signing over that. docs: update rust-analyzer clippy override Expanded validate_header to check for signature over all sections, and renamed it to validate_tx. Make the signature section unmalleable. VPs now check that code and data are signed together. Fixed clippy and formatting issues. Fixed the tests involving transaction signing. Now sign over all sections in transactions. Added CLI subcommand for validator change commission. Cleared up the MASP source and target in test vector expert view. Now moving proposal code into extra section. Increased the number of init-proposal and vote-proposal test vectors. Moved init-proposal content into extra data.
- Loading branch information
Showing
77 changed files
with
1,990 additions
and
1,478 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Fixed bug that allowed transactions to be modified without invalidating | ||
transaction hash ([\#1607](https://github.com/anoma/namada/pull/1607)) |
3 changes: 3 additions & 0 deletions
3
.changelog/v0.18.1/bug-fixes/1611-move-init-proposal-content.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Move the content and code of init proposal transactions | ||
into separare section to reduce tx size for hardware wallets | ||
([\#1611](https://github.com/anoma/namada/pull/1611)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Storage: Add a function to delete key-vals matching a given prefix. | ||
([\#1632](https://github.com/anoma/namada/pull/1632)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Separate the transaction building, signing, and submission | ||
actions in the SDKs API to enable hardware wallet usage | ||
([\#1498](https://github.com/anoma/namada/pull/1498)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- Disable encryption when sending transactions | ||
([\#1636](https://github.com/anoma/namada/pull/1636)) |
3 changes: 3 additions & 0 deletions
3
.changelog/v0.18.1/improvements/1642-iter-prefix-full-match.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Storage: Ensure that prefix iterator only returns key- | ||
vals in which the prefix key segments are matched fully. | ||
([\#1642](https://github.com/anoma/namada/pull/1642)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Namada 0.18.1 is a patch release that addresses transaction format changes and minor ledger storage improvements. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
## Describe your changes | ||
|
||
## Indicate on which other PRs this topic is based on, if any | ||
|
||
## Checklist before merging to `draft` | ||
- [ ] I have checked that the following e2e test are working locally | ||
- `masp_incentives` | ||
- `masp_txs_and_queries` | ||
- `proposal_submission` | ||
- [ ] I have added a changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.