Skip to content

Commit

Permalink
Namada 0.38.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed May 31, 2024
1 parent 657a604 commit 67649d5
Show file tree
Hide file tree
Showing 37 changed files with 201 additions and 166 deletions.
1 change: 1 addition & 0 deletions .changelog/v0.38.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Namada 0.38.0 is a minor release that upgrades the MASP and events and also cleans up dependencies.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
# CHANGELOG

## v0.38.0

Namada 0.38.0 is a minor release that upgrades the MASP and events and also cleans up dependencies.

### BUG FIXES

- Fixed the fee collection logic in `finalize_block` to match that of
`process_proposal`. ([\#3075](https://github.com/anoma/namada/issues/3075))

### IMPROVEMENTS

- Improved masp vp verification to run in parallel.
([\#2972](https://github.com/anoma/namada/pull/2972))
- Removed any dependency on the specific transaction data from the masp vp.
([\#3232](https://github.com/anoma/namada/pull/3232))
- Add a new event attribute facility to track events to their origin
in Namada's source code. This is useful for debugging purposes.
([\#3268](https://github.com/anoma/namada/pull/3268))
- Include the used MASP randomness parameters in the test vectors.
([\#3296](https://github.com/anoma/namada/pull/3296))
- Replaced unmaintained config-rs to an unreleased version
that replaces its also unmaintained yaml dependency.
([\#3305](https://github.com/anoma/namada/pull/3305))
- Upgrade `wasmer` vm to upstream version `4.3.1`,
moving away from the [forked code based on version
`2.3.0`](https://github.com/heliaxdev/wasmer/tree/255054f7f58b7b4a525f2fee6b9b86422d1ca15b).
([\#3308](https://github.com/anoma/namada/pull/3308))
- Allow nodes to schedule a migrations json to be read and run to facilitate hard-forking. This is done by
taking a migrations json and passing the path, a hash of the contents, and a block height to the node when
starting the ledger. ([\#3310](https://github.com/anoma/namada/pull/3310))
- Store IBC denom when minting the IBC token
([\#3317](https://github.com/anoma/namada/issues/3317))
- Switched from wee allocator to rlsf for WASM.
([\#3331](https://github.com/anoma/namada/pull/3331))

## v0.37.0

Namada 0.37.0 is a minor release that adds replay protection entries to consensus and enables merklizing data without diffs.
Expand Down
74 changes: 37 additions & 37 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 @@ -57,7 +57,7 @@ keywords = ["blockchain", "privacy", "crypto", "protocol", "network"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/anoma/namada"
version = "0.37.0"
version = "0.38.0"

[workspace.dependencies]
ark-bls12-381 = {version = "0.3"}
Expand Down
Loading

0 comments on commit 67649d5

Please sign in to comment.