Skip to content

Commit

Permalink
Namada 0.39.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brentstone committed Jun 6, 2024
1 parent db4412e commit 879a326
Show file tree
Hide file tree
Showing 38 changed files with 209 additions and 172 deletions.
1 change: 1 addition & 0 deletions .changelog/v0.39.0/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Namada 0.39.0 is a minor release that primarily abstracts the different kinds of transfer transactions and makes upgrades to the MASP and VPs.
39 changes: 36 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# CHANGELOG

## v0.39.0

Namada 0.39.0 is a minor release that primarily abstracts the different kinds of transfer transactions and makes upgrades to the MASP and VPs.

### BUG FIXES

- Fixes an issue with unsanitized input to a PoS query to find
a validator by TM address which may cause a node to panic.
([\#3340](https://github.com/anoma/namada/pull/3340))
- Fix to clear the write log when dry-run batched transaction
([\#3358](https://github.com/anoma/namada/issues/3358))

### IMPROVEMENTS

- The transfer command has been split into:
- `transfer` (shielded transfer)
- `transparent-transfer`
- `shield` (from transparent to shielded)
- `unshield` (from shielded to transparent)
([\#3297](https://github.com/anoma/namada/pull/3297))
- Avoid growing wasm memory when performing read-only accesses.
([\#3315](https://github.com/anoma/namada/pull/3315))
- Added a separate epoch tracker for masp to decouple its logic from the rest of
the protocol. ([\#3318](https://github.com/anoma/namada/pull/3318))
- Default to the address from local config when the `--node`
argument is not specified for `shielded-sync` command
([\#3333](https://github.com/anoma/namada/pull/3333))
- Allow NAM transfers for protocol actions.
([\#3348](https://github.com/anoma/namada/pull/3348))
- Select gas payer from implicit address in the Namada CLI.
([\#3349](https://github.com/anoma/namada/pull/3349))
- Remove old disposable keys from the wallet.
([\#3350](https://github.com/anoma/namada/pull/3350))
- Addressed some minor issues in the shielded token code.
([\#3351](https://github.com/anoma/namada/pull/3351))

## v0.38.1

Namada 0.38.1 is a patch release that fixes a license issue with the last minor release needed to build binaries in CI.
Expand Down Expand Up @@ -383,9 +419,6 @@ Namada 0.33.0 is a minor release that contains various new features, improvement

- move query_ibc_tokens and lookup_ibc_token_alias to sdk
([\#2729](https://github.com/anoma/namada/issues/2729))

### SDK

- Add a new method to the sdk to change a validator consensus key.
([\#3037](https://github.com/anoma/namada/pull/3037))
- Improve the function to update an enstablished address via the sdk.
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.38.1"
version = "0.39.0"

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

0 comments on commit 879a326

Please sign in to comment.