Skip to content

Fix to receive IBC denom when the base denom has slash #4643

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
09ad7e8
CI: bump maint version libs-v0.150 and apps-101.1
tzemanovic Jun 4, 2025
24887a9
fix v101.1.0 changelog
tzemanovic Jun 4, 2025
2e8a40d
Merge pull request #4683 from anoma/mergify/bp/maint-libs-0.150/pr-4682
mergify[bot] Jun 5, 2025
01552a8
fix: remove redundant reads from governance vp
Fraccaman Jun 5, 2025
10f599c
fix: validate all the balance key changes
Fraccaman Jun 5, 2025
a49475e
changelog: #4684
tzemanovic Jun 5, 2025
1357962
Merge pull request #4686 from anoma/mergify/bp/maint-libs-0.150/pr-4684
mergify[bot] Jun 5, 2025
bc8b79e
Namada libs 0.150.1
tzemanovic Jun 5, 2025
d9f77b5
Changelog: Release libs 0.150.1
tzemanovic Jun 5, 2025
289b456
Merge tag 'libs-v0.150.1' into maint-101.1
tzemanovic Jun 5, 2025
7053f63
Namada 101.1.1
tzemanovic Jun 5, 2025
69de76f
Changelog: Release apps 101.1.1
tzemanovic Jun 5, 2025
9dbe779
Changed how multisig signatures are added to a tx
batconjurer Jun 11, 2025
3fbf183
changelog: add #4695
brentstone Jun 11, 2025
d64939f
Merge pull request #4696 from anoma/mergify/bp/maint-libs-0.150/pr-4695
mergify[bot] Jun 11, 2025
0c696bf
Namada libs 0.150.2
tzemanovic Jun 11, 2025
492a2d3
Changelog: Release libs 0.150.2
tzemanovic Jun 11, 2025
e0bfbad
Merge tag 'libs-v0.150.2' into maint-101.1
tzemanovic Jun 11, 2025
5b903d3
Namada 101.1.2
tzemanovic Jun 11, 2025
845f8ba
Changelog: Release apps 101.1.2
tzemanovic Jun 11, 2025
ef3fae7
support ibc base denom including slash
yito88 May 19, 2025
b777695
changelog
yito88 May 19, 2025
f3cdc24
skip storing IBC traces for tokens
yito88 May 19, 2025
9a3538a
remove base_token arg from query_ibc_tokens
yito88 May 20, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changelog/libs-v0.150.1/bug-fixes/4684-fix-gov-gas-cost.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fixed the gov VP gas cost to match v101.0.0
([\#4684](https://github.com/anoma/namada/pull/4684))
1 change: 1 addition & 0 deletions .changelog/libs-v0.150.1/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Namada libs v0.150.1 release
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Changed how multisig signatures are added to a tx
([\#4695](https://github.com/anoma/namada/pull/4695))
1 change: 1 addition & 0 deletions .changelog/libs-v0.150.2/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Namada libs 0.150.2 release.
2 changes: 2 additions & 0 deletions .changelog/unreleased/bug-fixes/4643-fix-ibc-denom.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Fix to receive IBC denom whose base token includes slash
([\#4643](https://github.com/anoma/namada/issues/4643))
2 changes: 2 additions & 0 deletions .changelog/v101.1.1/miscellaneous/4680-v101.1.0-release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- Updated Namada libraries to lib-v0.150.0
([\#4680](https://github.com/anoma/namada/pull/4680))
1 change: 1 addition & 0 deletions .changelog/v101.1.1/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Namada apps v101.1.1
1 change: 1 addition & 0 deletions .changelog/v101.1.2/summary.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Namada apps v101.1.2 release.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ concurrency:
cancel-in-progress: true

env:
MINOR_VERSION_RELEASE: "0.149.999" # bump on a major release
BACKPORT_LIBS_LABEL: "backport-libs-0.149" # also bump on major release
MAINT_LIBS_BRANCH: "maint-libs-0.149" # also bump on major release
MINOR_VERSION_RELEASE: "0.150.999" # bump on a major release
BACKPORT_LIBS_LABEL: "backport-libs-0.150" # also bump on major release
MAINT_LIBS_BRANCH: "maint-libs-0.150" # also bump on major release

jobs:
# Check if a PR has no major breaking changes to be backported to library
Expand Down
24 changes: 12 additions & 12 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@ queue_rules:
merge_method: merge
autosquash: true

- name: backport-apps-101.0-queue
- name: backport-apps-101.1-queue
batch_size: 3
queue_conditions:
- "#approved-reviews-by >= 1"
- base = maint-101.0
- base = maint-101.1
merge_method: merge
autosquash: true

- name: backport-libs-0.149-queue
- name: backport-libs-0.150-queue
batch_size: 3
queue_conditions:
- "#approved-reviews-by >= 1"
- base = maint-libs-0.149
- base = maint-libs-0.150
merge_method: merge
autosquash: true

Expand All @@ -34,8 +34,8 @@ pull_request_rules:
- "#approved-reviews-by >= 1"
- or:
- base = main
- base = maint-101.0
- base = maint-libs-0.149
- base = maint-101.1
- base = maint-libs-0.150
actions:
queue:

Expand All @@ -52,18 +52,18 @@ pull_request_rules:
Sorry about that, but you can requeue the PR by using `@mergifyio requeue`
if you think this was a mistake.

- name: backport PR to apps 101.0 lane
- name: backport PR to apps 101.1 lane
conditions:
- label = backport-101.0
- label = backport-101.1
actions:
backport:
branches:
- "maint-101.0"
- "maint-101.1"

- name: backport PR to libs 0.149 lane
- name: backport PR to libs 0.150 lane
conditions:
- label = backport-libs-0.149
- label = backport-libs-0.150
actions:
backport:
branches:
- "maint-libs-0.149"
- "maint-libs-0.150"
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
# CHANGELOG

## v101.1.2

Namada apps v101.1.2 release.

## v101.1.1

Namada apps v101.1.1

### MISCELLANEOUS

- Updated Namada libraries to lib-v0.150.0
([\#4680](https://github.com/anoma/namada/pull/4680))

## v101.1.0

Namada apps v101.1.0 minor release

### MISCELLANEOUS

- Updated Namada libraries to lib-v0.150.0
([\#4680](https://github.com/anoma/namada/pull/4680))

## v101.0.0

Namada apps v101.0.0 release.
Expand Down Expand Up @@ -71,6 +89,24 @@ Namada v1.0.0 is the first stable release of the Namada apps.
- updated namada libraries to libs-v0.46.1
([\#4123](https://github.com/anoma/namada/pull/4123))

## libs-v0.150.2

Namada libs 0.150.2 release.

### BUG FIXES

- Changed how multisig signatures are added to a tx
([\#4695](https://github.com/anoma/namada/pull/4695))

## libs-v0.150.1

Namada libs v0.150.1 release

### BUG FIXES

- Fixed the gov VP gas cost to match v101.0.0
([\#4684](https://github.com/anoma/namada/pull/4684))

## libs-v0.150.0

Namada libs v0.150.0 release
Expand Down
Loading
Loading