Skip to content

Commit

Permalink
Namada 0.32.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Mar 19, 2024
1 parent 5106696 commit 5e0b162
Show file tree
Hide file tree
Showing 39 changed files with 159 additions and 122 deletions.
1 change: 1 addition & 0 deletions .changelog/v0.32.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Namada 0.32.0 is a minor release that adds state migration capabilities, fixes the user VP, refactors the shielded token ConversionState, fixes the rollback, and includes various other minor improvements.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# CHANGELOG

## v0.32.0

Namada 0.32.0 is a minor release that adds state migration capabilities, fixes the user VP, refactors the shielded token ConversionState, fixes the rollback, and includes various other minor improvements.

### BUG FIXES

- Fixes the rollback command to correctly restore replay protection keys.
([\#2599](https://github.com/anoma/namada/pull/2599))
- Fix a bug preventing unjailing when it involves demotion of a validator out of
the consensus set. ([\#2617](https://github.com/anoma/namada/pull/2617))
- Fixes the computation of the valid validator voting period.
([\#2628](https://github.com/anoma/namada/pull/2628))
- Clear IBC events emitted from rejected txs.
([\#2850](https://github.com/anoma/namada/pull/2850))

### FEATURES

- Enable to update ConversionState token map by proposal wasm tx
([\#2601](https://github.com/anoma/namada/issues/2601))
- Implements state migration functionality.
([\#2870](https://github.com/anoma/namada/pull/2870))

### IMPROVEMENTS

- In PoS VP validate governance proposal changes in PoS parameters.
([\#2604](https://github.com/anoma/namada/pull/2604))
- This PR adds a proc macro that registers the deserializer of a type in a hashmap. This allows us to verify that
data blob deserializes correctly if we are in possession of the hash map key. ([\#2814](https://github.com/anoma/namada/pull/2814))
- Adds tools to create json files to change db keys and various debugging and dry running logic. ([\#2835](https://github.com/anoma/namada/pull/2835))
- When iterating over key prefixes, we can additionally filter out keys based on a regex. ([\#2839](https://github.com/anoma/namada/pull/2839))
- Some edits to logging and strings
([\#2894](https://github.com/anoma/namada/pull/2894))
- Added an optional starting block argument for shielded sync ([\#2902](https://github.com/anoma/namada/pull/2902))

## v0.31.9

Namada 0.31.9 is a patch release that includes a fix of IBC timestamp, transaction gas cost and shielded context for dry-ran transactions and RocksDB update.
Expand Down
66 changes: 33 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ keywords = ["blockchain", "privacy", "crypto", "protocol", "network"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/anoma/namada"
version = "0.31.9"
version = "0.32.0"

[workspace.dependencies]
ark-bls12-381 = {version = "0.3"}
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ serde_json.workspace = true
tokio = {workspace = true, default-features = false}

[dependencies]
regex = "1.10.2"
regex = "1.10.2"
Loading

0 comments on commit 5e0b162

Please sign in to comment.