Skip to content

Commit

Permalink
Merge branch 'maint-0.46'
Browse files Browse the repository at this point in the history
* maint-0.46:
  Namada libs 0.46.1
  changelog: add #4117
  exclude apps crate from libs release
  apps: don't use workspace version anymore
  add a script to release apps bins
  prefix libs release tag with "libs-"
  mv scripts/release.sh scripts/release_libs.sh
  add different commit msg for libs release
  add a different release config for apps
  Changelog
  Add a single CometBFT dummy validator
  mergify: move autosquash to queue_rules
  Adds debug trace for masp epochs in asset types
  Fix `gen_localnet.py` json exception
  Revert "ci(mergify): upgrade configuration to current format"
  Error match for shielding retry logic
  Changelog #4071
  Refactors shielding retry logic
  Shielding retry logic only when masp vp rejects
  Improves implicit vp display
  Changelog #4083
  Adds missing protocol params in logs
  Log the implicit vp in `query-protocol-parameters`
  mergify: backport 0.46
  • Loading branch information
tzemanovic committed Nov 29, 2024
2 parents 6f0e3b0 + b24938e commit 520dd56
Show file tree
Hide file tree
Showing 13 changed files with 189 additions and 150 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Only write a dummy validator to CometBFT's genesis if the number of validators
present is lower than 2. ([\#4116](https://github.com/anoma/namada/pull/4116))
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Improved the client's retry logic on failed shielding transactions
to avoid resubmissions on rejections other than the MASP vp ones.
([\#4071](https://github.com/anoma/namada/pull/4071))
2 changes: 2 additions & 0 deletions .changelog/libs-v0.46.1/improvements/4083-log-implicit-vp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Updated the `query-protocol-parameters` command to display some missing
parameters. ([\#4083](https://github.com/anoma/namada/pull/4083))
5 changes: 5 additions & 0 deletions .changelog/libs-v0.46.1/miscellaneous/4117-split-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- Starting from the next release the Namada binary apps (`namada`, `namadan`,
`namadac` and `namadaw`) will be versioned separately from the libaries
(everything else including the wasm). The libraries releases will have their
tag prefixed with "lib-" and will continue with the current versioning scheme.
([\#4117](https://github.com/anoma/namada/pull/4117))
2 changes: 2 additions & 0 deletions .changelog/libs-v0.46.1/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Namada 0.46.1 is a libaries patch release containing couple improvements and a bug fix in preparetion for a stable apps release.

25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# CHANGELOG

## libs-v0.46.1

Namada 0.46.1 is a libaries patch release containing couple improvements and a bug fix in preparetion for a stable apps release.

### BUG FIXES

- Only write a dummy validator to CometBFT's genesis if the number of validators
present is lower than 2. ([\#4116](https://github.com/anoma/namada/pull/4116))

### IMPROVEMENTS

- Improved the client's retry logic on failed shielding transactions
to avoid resubmissions on rejections other than the MASP vp ones.
([\#4071](https://github.com/anoma/namada/pull/4071))
- Updated the `query-protocol-parameters` command to display some missing
parameters. ([\#4083](https://github.com/anoma/namada/pull/4083))

### MISCELLANEOUS

- Starting from the next release the Namada binary apps (`namada`, `namadan`,
`namadac` and `namadaw`) will be versioned separately from the libaries
(everything else including the wasm). The libraries releases will have their
tag prefixed with "lib-" and will continue with the current versioning scheme.
([\#4117](https://github.com/anoma/namada/pull/4117))

## v0.46.0

Namada 0.46.0 is a minor release containing important bug-fixes and various improvements.
Expand Down
Loading

0 comments on commit 520dd56

Please sign in to comment.