From e7e6b6677452d6fc8359bc5e06b61990bc690f8a Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 11:24:47 +0700 Subject: [PATCH 01/22] set up gh action for basics test --- .github/workflows/interchaintest.yaml | 52 +++++++++++++++++++++++++++ tests/interchaintest/setup.go | 2 +- 2 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/interchaintest.yaml diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml new file mode 100644 index 0000000000..7fdf963911 --- /dev/null +++ b/.github/workflows/interchaintest.yaml @@ -0,0 +1,52 @@ +name: Interchain Tests + +on: + pull_request: + push: + branches: + - release/** + +jobs: + build-and-push-image: + runs-on: ubuntu-latest + steps: + - name: Check out the repo + uses: actions/checkout@v4 + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push + id: build_push_image + uses: docker/build-push-action@v3 + with: + file: Dockerfile + context: . + push: true + platforms: linux/amd64,linux/arm64 + tags: | + ghcr.io/wasmd/oraid-ictest:latest + test-basic: + runs-on: ubuntu-latest + steps: + - name: Set up Go 1.22 + uses: actions/setup-go@v4 + with: + go-version: 1.22.7 + + - name: checkout code + uses: actions/checkout@v4 + + - run: make ictest-basic + env: + BRANCH_CI: "latest" \ No newline at end of file diff --git a/tests/interchaintest/setup.go b/tests/interchaintest/setup.go index db2badcefd..cd5d4c7242 100644 --- a/tests/interchaintest/setup.go +++ b/tests/interchaintest/setup.go @@ -27,6 +27,7 @@ const ( // Chain and relayer version inf IBCRelayerImage = "ghcr.io/cosmos/relayer" + OraidICTestRepo = "ghcr.io/wasmd/oraid-ictest" IBCRelayerVersion = "latest" GaiaImageVersion = "v21.0.0" OsmosisImageVersion = "v22.0.1" @@ -79,7 +80,6 @@ func GetDockerImageInfo() (repo, version string) { branchVersion, found := os.LookupEnv("BRANCH_CI") if !found { // make local-image - fmt.Println("Testing local image") repo = "orai" branchVersion = "debug" } From 91a91a2245940663cb4a9c5e43b63dda1dbce608 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 11:27:57 +0700 Subject: [PATCH 02/22] nit --- .github/workflows/interchaintest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 7fdf963911..42af83af9b 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -28,7 +28,7 @@ jobs: - name: Build and push id: build_push_image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: file: Dockerfile context: . From f21984d36ac594a0e57df511870a713afdf19d27 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 11:40:47 +0700 Subject: [PATCH 03/22] nit --- .github/workflows/interchaintest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 42af83af9b..99a4ab7e15 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -30,7 +30,7 @@ jobs: id: build_push_image uses: docker/build-push-action@v6 with: - file: Dockerfile + file: ict.Dockerfile context: . push: true platforms: linux/amd64,linux/arm64 From bf9b0d45a64d0a2891cc59ea7572e3ea6db32984 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 11:46:00 +0700 Subject: [PATCH 04/22] nit --- tests/interchaintest/setup.go | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/interchaintest/setup.go b/tests/interchaintest/setup.go index cd5d4c7242..b397604df6 100644 --- a/tests/interchaintest/setup.go +++ b/tests/interchaintest/setup.go @@ -78,6 +78,7 @@ func oraiEncoding() *moduletestutil.TestEncodingConfig { // If testing locally, user should run `make docker-build-debug` and interchaintest will use the local image. func GetDockerImageInfo() (repo, version string) { branchVersion, found := os.LookupEnv("BRANCH_CI") + repo = OraidICTestRepo if !found { // make local-image repo = "orai" From 994cdfd96de20653b3a532dee0ecd99c222f8c19 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 13:26:52 +0700 Subject: [PATCH 05/22] correct ghcr path --- .github/workflows/interchaintest.yaml | 2 +- tests/interchaintest/setup.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 99a4ab7e15..7fa185127f 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -35,7 +35,7 @@ jobs: push: true platforms: linux/amd64,linux/arm64 tags: | - ghcr.io/wasmd/oraid-ictest:latest + ghcr.io/oraichain/oraid-ictest:latest test-basic: runs-on: ubuntu-latest steps: diff --git a/tests/interchaintest/setup.go b/tests/interchaintest/setup.go index b397604df6..f9bc71bad6 100644 --- a/tests/interchaintest/setup.go +++ b/tests/interchaintest/setup.go @@ -27,7 +27,7 @@ const ( // Chain and relayer version inf IBCRelayerImage = "ghcr.io/cosmos/relayer" - OraidICTestRepo = "ghcr.io/wasmd/oraid-ictest" + OraidICTestRepo = "ghcr.io/oraichain/oraid-ictest" IBCRelayerVersion = "latest" GaiaImageVersion = "v21.0.0" OsmosisImageVersion = "v22.0.1" From c798bf71aa39e82ca37237a87ec7a16befe02b8d Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 14:08:45 +0700 Subject: [PATCH 06/22] remove some actions --- .github/workflows/interchaintest.yaml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 7fa185127f..1fcde9fe66 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -13,12 +13,6 @@ jobs: - name: Check out the repo uses: actions/checkout@v4 - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: @@ -38,6 +32,7 @@ jobs: ghcr.io/oraichain/oraid-ictest:latest test-basic: runs-on: ubuntu-latest + needs: build-and-push-image # This job must run after build and push image steps: - name: Set up Go 1.22 uses: actions/setup-go@v4 From a02751b020f5636631c0fdfa5469c8469ace8186 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 14:10:46 +0700 Subject: [PATCH 07/22] nit --- .github/workflows/interchaintest.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 1fcde9fe66..655ac6fdbe 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -13,6 +13,12 @@ jobs: - name: Check out the repo uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to GitHub Container Registry uses: docker/login-action@v3 with: @@ -26,7 +32,7 @@ jobs: with: file: ict.Dockerfile context: . - push: true + push: false platforms: linux/amd64,linux/arm64 tags: | ghcr.io/oraichain/oraid-ictest:latest From cd831c2d16bd8fb955b25c70b4e95876f0289a83 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 14:20:33 +0700 Subject: [PATCH 08/22] setup goversion --- .github/workflows/interchaintest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 655ac6fdbe..60987ba405 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -43,7 +43,7 @@ jobs: - name: Set up Go 1.22 uses: actions/setup-go@v4 with: - go-version: 1.22.7 + go-version: '1.22.7' - name: checkout code uses: actions/checkout@v4 From aa83e07acfff36809167dc2d5eee47098753020f Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 14:29:20 +0700 Subject: [PATCH 09/22] build v5 --- .github/workflows/interchaintest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 60987ba405..9ed70d10bc 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -28,7 +28,7 @@ jobs: - name: Build and push id: build_push_image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v5 with: file: ict.Dockerfile context: . From df9508b4969bd7b030743ae05416ead151b99ce1 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 14:56:15 +0700 Subject: [PATCH 10/22] nit --- .github/workflows/interchaintest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 9ed70d10bc..46bee28b16 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -32,7 +32,7 @@ jobs: with: file: ict.Dockerfile context: . - push: false + push: true platforms: linux/amd64,linux/arm64 tags: | ghcr.io/oraichain/oraid-ictest:latest From 9282294dc9352aa40f9d3ef906816532f26d95d3 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Thu, 19 Dec 2024 16:09:47 +0700 Subject: [PATCH 11/22] change action token --- .github/workflows/interchaintest.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 46bee28b16..24bcf3cfa2 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -24,7 +24,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.GITHUB_TOKEN }} + password: ${{ secrets.GH_PAT }} - name: Build and push id: build_push_image From e3659be6b8088d3a2ace311a728912f58d331aec Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Fri, 20 Dec 2024 09:52:45 +0700 Subject: [PATCH 12/22] add permissions to gh --- .github/workflows/interchaintest.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 24bcf3cfa2..796e553673 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -9,6 +9,9 @@ on: jobs: build-and-push-image: runs-on: ubuntu-latest + permissions: + contents: read + packages: write steps: - name: Check out the repo uses: actions/checkout@v4 From 1ee8f0b1bbbd40fdc24835a4ec16c32842c08c01 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Fri, 20 Dec 2024 13:40:47 +0700 Subject: [PATCH 13/22] add login to run test --- .github/workflows/interchaintest.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 796e553673..eb263a1527 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -51,6 +51,13 @@ jobs: - name: checkout code uses: actions/checkout@v4 + - name: Login to GitHub Container Registry + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GH_PAT }} + - run: make ictest-basic env: BRANCH_CI: "latest" \ No newline at end of file From 22eddd5755f5a23b4e8d92c47c19896ab536213b Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Fri, 20 Dec 2024 14:50:52 +0700 Subject: [PATCH 14/22] remove login --- .github/workflows/interchaintest.yaml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index eb263a1527..796e553673 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -51,13 +51,6 @@ jobs: - name: checkout code uses: actions/checkout@v4 - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.repository_owner }} - password: ${{ secrets.GH_PAT }} - - run: make ictest-basic env: BRANCH_CI: "latest" \ No newline at end of file From b63a37181361ddb18cfd63334ca5850d7efcf397 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Fri, 20 Dec 2024 14:55:05 +0700 Subject: [PATCH 15/22] add more actions --- .github/workflows/interchaintest.yaml | 60 +++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/.github/workflows/interchaintest.yaml b/.github/workflows/interchaintest.yaml index 796e553673..2d2b2d6521 100644 --- a/.github/workflows/interchaintest.yaml +++ b/.github/workflows/interchaintest.yaml @@ -52,5 +52,65 @@ jobs: uses: actions/checkout@v4 - run: make ictest-basic + env: + BRANCH_CI: "latest" + ictest-interchain-account: + runs-on: ubuntu-latest + needs: build-and-push-image # This job must run after build and push image + steps: + - name: Set up Go 1.22 + uses: actions/setup-go@v4 + with: + go-version: '1.22.7' + + - name: checkout code + uses: actions/checkout@v4 + + - run: make ictest-interchain-account + env: + BRANCH_CI: "latest" + ictest-tf-param-change: + runs-on: ubuntu-latest + needs: build-and-push-image # This job must run after build and push image + steps: + - name: Set up Go 1.22 + uses: actions/setup-go@v4 + with: + go-version: '1.22.7' + + - name: checkout code + uses: actions/checkout@v4 + + - run: make ictest-tf-param-change + env: + BRANCH_CI: "latest" + ictest-tf-set-metadata: + runs-on: ubuntu-latest + needs: build-and-push-image # This job must run after build and push image + steps: + - name: Set up Go 1.22 + uses: actions/setup-go@v4 + with: + go-version: '1.22.7' + + - name: checkout code + uses: actions/checkout@v4 + + - run: make ictest-tf-set-metadata + env: + BRANCH_CI: "latest" + ictest-ibchooks: + runs-on: ubuntu-latest + needs: build-and-push-image # This job must run after build and push image + steps: + - name: Set up Go 1.22 + uses: actions/setup-go@v4 + with: + go-version: '1.22.7' + + - name: checkout code + uses: actions/checkout@v4 + + - run: make ictest-ibchooks env: BRANCH_CI: "latest" \ No newline at end of file From 9178bc3c9e2e8ab59707ac377fcfd23610a10e83 Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Fri, 20 Dec 2024 15:07:02 +0700 Subject: [PATCH 16/22] add gh actions for simulation --- .github/workflows/sims.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/sims.yaml diff --git a/.github/workflows/sims.yaml b/.github/workflows/sims.yaml new file mode 100644 index 0000000000..8c231a312f --- /dev/null +++ b/.github/workflows/sims.yaml @@ -0,0 +1,31 @@ +name: Simulations + +on: + pull_request: + push: + branches: + - release/** + +jobs: + build: + permissions: + contents: read # for actions/checkout to fetch code + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: "1.22.7" + - run: make install + + test-sim-multi-seed-short: + runs-on: ubuntu-lastest + needs: build + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: "1.23" + check-latest: true + - name: test-sim-multi-seed-short + run: make test-sim-multi-seed-short \ No newline at end of file From 05f2ed021afe2f7eca9b417f255101bcf0c6776e Mon Sep 17 00:00:00 2001 From: "dang.vh" Date: Fri, 20 Dec 2024 15:09:56 +0700 Subject: [PATCH 17/22] nit --- .github/workflows/sims.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sims.yaml b/.github/workflows/sims.yaml index 8c231a312f..9140c66250 100644 --- a/.github/workflows/sims.yaml +++ b/.github/workflows/sims.yaml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: - go-version: "1.23" + go-version: "1.22.7" check-latest: true - name: test-sim-multi-seed-short run: make test-sim-multi-seed-short \ No newline at end of file From 68a44ab1caf19ddc77c7a4b62af3862eff6af243 Mon Sep 17 00:00:00 2001 From: ledanghuy1811 Date: Fri, 20 Dec 2024 15:22:39 +0700 Subject: [PATCH 18/22] chore: update changelog for v0.50.3 --- .../49-upgrade-cometbft-dependency.md | 2 ++ ...consume-wasm-gas-with-gasless-contracts.md | 2 ++ ...ings-metadata-miss-uri-uriHash-filed.md.md | 2 ++ .../improvements/40-add-lcd-swagger-gen.md | 2 ++ .../42-set-up-interchain-tests.md | 1 + .../44-add-ibc-interchain-tests.md | 2 ++ ...nge-param-tokenfactory-interchain-tests.md | 2 ++ .../48-add-ica-interchain-tests.md | 2 ++ ...-metadata-tokenfactory-interchain-tests.md | 2 ++ .../55-add-query-gasless-contract.md | 2 ++ .changelog/v0.50.3/summary.md | 8 +++++ CHANGELOG_ORAI.md | 36 +++++++++++++++++++ 12 files changed, 63 insertions(+) create mode 100644 .changelog/v0.50.3/bug-fixes/49-upgrade-cometbft-dependency.md create mode 100644 .changelog/v0.50.3/bug-fixes/56-unconsume-wasm-gas-with-gasless-contracts.md create mode 100644 .changelog/v0.50.3/bug-fixes/60-set-tokenfactory-bindings-metadata-miss-uri-uriHash-filed.md.md create mode 100644 .changelog/v0.50.3/improvements/40-add-lcd-swagger-gen.md create mode 100644 .changelog/v0.50.3/improvements/42-set-up-interchain-tests.md create mode 100644 .changelog/v0.50.3/improvements/44-add-ibc-interchain-tests.md create mode 100644 .changelog/v0.50.3/improvements/45-add-change-param-tokenfactory-interchain-tests.md create mode 100644 .changelog/v0.50.3/improvements/48-add-ica-interchain-tests.md create mode 100644 .changelog/v0.50.3/improvements/52-add-set-metadata-tokenfactory-interchain-tests.md create mode 100644 .changelog/v0.50.3/improvements/55-add-query-gasless-contract.md create mode 100644 .changelog/v0.50.3/summary.md diff --git a/.changelog/v0.50.3/bug-fixes/49-upgrade-cometbft-dependency.md b/.changelog/v0.50.3/bug-fixes/49-upgrade-cometbft-dependency.md new file mode 100644 index 0000000000..921dfdee73 --- /dev/null +++ b/.changelog/v0.50.3/bug-fixes/49-upgrade-cometbft-dependency.md @@ -0,0 +1,2 @@ +- Update to cometbft to v0.38.15 + ([\#49](https://github.com/oraichain/wasmd/pull/49)) \ No newline at end of file diff --git a/.changelog/v0.50.3/bug-fixes/56-unconsume-wasm-gas-with-gasless-contracts.md b/.changelog/v0.50.3/bug-fixes/56-unconsume-wasm-gas-with-gasless-contracts.md new file mode 100644 index 0000000000..1636a6c3e8 --- /dev/null +++ b/.changelog/v0.50.3/bug-fixes/56-unconsume-wasm-gas-with-gasless-contracts.md @@ -0,0 +1,2 @@ +- Unconsume wasm gas if execute gas less contract + ([\#56](https://github.com/oraichain/wasmd/pull/56)) \ No newline at end of file diff --git a/.changelog/v0.50.3/bug-fixes/60-set-tokenfactory-bindings-metadata-miss-uri-uriHash-filed.md.md b/.changelog/v0.50.3/bug-fixes/60-set-tokenfactory-bindings-metadata-miss-uri-uriHash-filed.md.md new file mode 100644 index 0000000000..d225ce9cdb --- /dev/null +++ b/.changelog/v0.50.3/bug-fixes/60-set-tokenfactory-bindings-metadata-miss-uri-uriHash-filed.md.md @@ -0,0 +1,2 @@ +- Can not set uri + uri_hash metatdata for token factory bindings + ([\#60](https://github.com/oraichain/wasmd/issues/60)) \ No newline at end of file diff --git a/.changelog/v0.50.3/improvements/40-add-lcd-swagger-gen.md b/.changelog/v0.50.3/improvements/40-add-lcd-swagger-gen.md new file mode 100644 index 0000000000..c364ba272b --- /dev/null +++ b/.changelog/v0.50.3/improvements/40-add-lcd-swagger-gen.md @@ -0,0 +1,2 @@ +- Add LCD swagger gen with modules from wasmd, cosmos-sdk, ibc, and ethermint + ([\#40](https://github.com/oraichain/wasmd/pull/40)) \ No newline at end of file diff --git a/.changelog/v0.50.3/improvements/42-set-up-interchain-tests.md b/.changelog/v0.50.3/improvements/42-set-up-interchain-tests.md new file mode 100644 index 0000000000..bdf72b821e --- /dev/null +++ b/.changelog/v0.50.3/improvements/42-set-up-interchain-tests.md @@ -0,0 +1 @@ +- Set up interchain tests ([\#42](https://github.com/oraichain/wasmd/pull/42)) \ No newline at end of file diff --git a/.changelog/v0.50.3/improvements/44-add-ibc-interchain-tests.md b/.changelog/v0.50.3/improvements/44-add-ibc-interchain-tests.md new file mode 100644 index 0000000000..defa87eb1a --- /dev/null +++ b/.changelog/v0.50.3/improvements/44-add-ibc-interchain-tests.md @@ -0,0 +1,2 @@ +- Add interchain test for ibc hooks + ([\#44](https://github.com/oraichain/wasmd/pull/44)) \ No newline at end of file diff --git a/.changelog/v0.50.3/improvements/45-add-change-param-tokenfactory-interchain-tests.md b/.changelog/v0.50.3/improvements/45-add-change-param-tokenfactory-interchain-tests.md new file mode 100644 index 0000000000..742ab4a453 --- /dev/null +++ b/.changelog/v0.50.3/improvements/45-add-change-param-tokenfactory-interchain-tests.md @@ -0,0 +1,2 @@ +- Add test param change token factory + ([\#45](https://github.com/oraichain/wasmd/pull/45)) \ No newline at end of file diff --git a/.changelog/v0.50.3/improvements/48-add-ica-interchain-tests.md b/.changelog/v0.50.3/improvements/48-add-ica-interchain-tests.md new file mode 100644 index 0000000000..e9c575b330 --- /dev/null +++ b/.changelog/v0.50.3/improvements/48-add-ica-interchain-tests.md @@ -0,0 +1,2 @@ +- Add test create interchain account + ([\#48](https://github.com/oraichain/wasmd/pull/48)) \ No newline at end of file diff --git a/.changelog/v0.50.3/improvements/52-add-set-metadata-tokenfactory-interchain-tests.md b/.changelog/v0.50.3/improvements/52-add-set-metadata-tokenfactory-interchain-tests.md new file mode 100644 index 0000000000..5a7c3a1742 --- /dev/null +++ b/.changelog/v0.50.3/improvements/52-add-set-metadata-tokenfactory-interchain-tests.md @@ -0,0 +1,2 @@ +- Add test set meta data token factory + ([\#52](https://github.com/oraichain/wasmd/pull/52)) \ No newline at end of file diff --git a/.changelog/v0.50.3/improvements/55-add-query-gasless-contract.md b/.changelog/v0.50.3/improvements/55-add-query-gasless-contract.md new file mode 100644 index 0000000000..97d6e1bb94 --- /dev/null +++ b/.changelog/v0.50.3/improvements/55-add-query-gasless-contract.md @@ -0,0 +1,2 @@ +- Fix issue can't query gas less contract + ([\#55](https://github.com/oraichain/wasmd/pull/55)) \ No newline at end of file diff --git a/.changelog/v0.50.3/summary.md b/.changelog/v0.50.3/summary.md new file mode 100644 index 0000000000..14a81d283d --- /dev/null +++ b/.changelog/v0.50.3/summary.md @@ -0,0 +1,8 @@ + + +Upgrade Oraichain mainnet to v0.50.3 to fix cometbft vulnarabilty, gasless contract and set metadata tokenfactory bindings bug. +Otherwise, v0.50.3 also supports interchain tests. diff --git a/CHANGELOG_ORAI.md b/CHANGELOG_ORAI.md index 6931f1a932..c02436c704 100644 --- a/CHANGELOG_ORAI.md +++ b/CHANGELOG_ORAI.md @@ -1,5 +1,41 @@ # CHANGELOG +## v0.50.3 + + + +Upgrade Oraichain mainnet to v0.50.3 to fix cometbft vulnarabilty, gasless contract and set metadata tokenfactory bindings bug. +Otherwise, v0.50.3 also supports interchain tests. + +### BUG FIXES + +- Can not set uri + uri_hash metatdata for token factory bindings + ([\#60](https://github.com/oraichain/wasmd/issues/60)) +- Unconsume wasm gas if execute gas less contract + ([\#56](https://github.com/oraichain/wasmd/pull/56)) +- Update to cometbft to v0.38.15 + ([\#49](https://github.com/oraichain/wasmd/pull/49)) + +### IMPROVEMENTS + +- Add LCD swagger gen with modules from wasmd, cosmos-sdk, ibc, and ethermint + ([\#40](https://github.com/oraichain/wasmd/pull/40)) +- Add interchain test for ibc hooks + ([\#44](https://github.com/oraichain/wasmd/pull/44)) +- Add test create interchain account + ([\#48](https://github.com/oraichain/wasmd/pull/48)) +- Add test param change token factory + ([\#45](https://github.com/oraichain/wasmd/pull/45)) +- Add test set meta data token factory + ([\#52](https://github.com/oraichain/wasmd/pull/52)) +- Fix issue can't query gas less contract + ([\#55](https://github.com/oraichain/wasmd/pull/55)) +- Set up interchain tests ([\#42](https://github.com/oraichain/wasmd/pull/42)) + ## v0.50.2