Skip to content

Commit 6b0fd29

Browse files
committed
Namada 0.41.0
1 parent f20ac6c commit 6b0fd29

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+227
-166
lines changed

.changelog/v0.41.0/summary.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Namada 0.41.0 is a minor release that primarily improves gas, fixes bugs related to signature verification and a memory leak from a dependency, and includes shielded sync upgrades.

CHANGELOG.md

+60
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,63 @@
11
# CHANGELOG
22

3+
## v0.41.0
4+
5+
Namada 0.41.0 is a minor release that primarily improves gas, fixes bugs related to signature verification and a memory leak from a dependency, and includes shielded sync upgrades.
6+
7+
### BUG FIXES
8+
9+
- Adds SDK builder to shielded and shielding transfers.
10+
([\#3518](https://github.com/anoma/namada/pull/3518))
11+
- Workaround a leak in wasmer store.
12+
([\#3529](https://github.com/anoma/namada/pull/3529))
13+
- Client fixes that include using the correct total voting power to compute a
14+
proposal result and also the correct voting threshold for steward proposals.
15+
([\#3540](https://github.com/anoma/namada/pull/3540))
16+
- Fixed a possible panic in transaction signatures verification missing expected
17+
signature(s). ([\#3543](https://github.com/anoma/namada/pull/3543))
18+
19+
### CI
20+
21+
* Fixed a broken e2e test for db migrations. Added it to the list of e2e test to be run by the CI.
22+
([\#3481](https://github.com/anoma/namada/pull/3481))
23+
24+
### IMPROVEMENTS
25+
26+
- Moved the signature verifications out of the masp vp and into the affected
27+
addresses' vps. ([\#3312](https://github.com/anoma/namada/issues/3312))
28+
- Implements phase 1 of Issue [\#3385](https://github.com/anoma/namada/issues/3385)
29+
- When fetching notes, connections and related failures should not halt shielded sync. Instead, the process
30+
should be restarted
31+
- If fetching is interrupted, the data fetched should be persisted locally so that progress isn't lost.
32+
- A trait for fetching behavior should be added to provide modularity
33+
34+
([\#3498](https://github.com/anoma/namada/pull/3498))
35+
- Improved the interface of the gas type. Removed the duplicated gas used from
36+
events. ([\#3428](https://github.com/anoma/namada/pull/3428))
37+
- Implement the phase 2 masp shielded sync client. This client uses
38+
a [`namada-masp-indexer`](https://github.com/anoma/namada-masp-
39+
indexer) instance to query the state of the shielded context.
40+
([\#3456](https://github.com/anoma/namada/pull/3456))
41+
- Minor improvements to governance and PGF code quality, including
42+
template gov proposal jsons and a python script to attach wasm code.
43+
([\#3471](https://github.com/anoma/namada/pull/3471))
44+
- Modified rechecks of process proposal to actually use `process_proposal`
45+
instead of `process_txs`. Added a caching mechanism to avoid
46+
running the check for a given proposed block more than once.
47+
([\#3473](https://github.com/anoma/namada/pull/3473))
48+
- Expanded the scope of test vector generation and updated outdated components
49+
of the test vector code. ([\#3494](https://github.com/anoma/namada/pull/3494))
50+
- Removes redundant function.
51+
([\#3502](https://github.com/anoma/namada/pull/3502))
52+
- Bump tendermint-rs to 0.37
53+
([\#3506](https://github.com/anoma/namada/issues/3506))
54+
- Increased the gas cost for storage occupation and tied it to the other gas
55+
costs. ([\#3510](https://github.com/anoma/namada/pull/3510))
56+
- Eliminates the MASP VPs requirement for all debited accounts to sign a Tx.
57+
([\#3516](https://github.com/anoma/namada/pull/3516))
58+
- Rename and split --memo-path into --ibc-shielding-data and --ibc-memo
59+
([\#3517](https://github.com/anoma/namada/issues/3517))
60+
361
## v0.40.0
462

563
Namada 0.40.0 is a minor release that makes many important improvements to shielded actions, DB snapshotting capabilities, batched transactions, and much more.
@@ -23,6 +81,8 @@ Namada 0.40.0 is a minor release that makes many important improvements to shiel
2381
relayer ([\#3438](https://github.com/anoma/namada/issues/3438))
2482
- Fixed MASP witness data malleability in the Tx
2583
([\#3463](https://github.com/anoma/namada/pull/3463))
84+
- Fix to extract MASP transaction when IBC shielding transfer
85+
([\#3488](https://github.com/anoma/namada/issues/3488))
2686

2787
### FEATURES
2888

0 commit comments

Comments
 (0)