Skip to content

Commit 684d643

Browse files
authored
build(deps): bump wasmvm into v1.5.3 (#1344)
## Description Closes: #XXXX This PR bumps wasmvm into v1.5.3 <!-- Add a description of the changes that this PR introduces and the files that are the most critical to review. --> --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://docs.cosmos.network/v0.44/building-modules/intro.html) - [ ] included the necessary unit and integration [tests](https://github.com/desmos-labs/desmos/blob/master/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable) <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Updated the Docker image to include the latest version of `libwasmvm_muslc` libraries, ensuring improved performance and bug fixes. - Upgraded the `github.com/CosmWasm/wasmvm` package to enhance functionality and reliability. - **Bug Fixes** - Addressed integrity verification by updating SHA256 checksums for the new library version. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 55aca17 commit 684d643

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

contrib/images/desmos-builder/Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ WORKDIR /code
1212
COPY . /code/
1313

1414
# See https://github.com/CosmWasm/wasmvm/releases
15-
ADD https://github.com/CosmWasm/wasmvm/releases/download/v1.5.1/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
16-
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep b89c242ffe2c867267621a6469f07ab70fc204091809d9c6f482c3fdf9293830
15+
ADD https://github.com/CosmWasm/wasmvm/releases/download/v1.5.3/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a
16+
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep 0aaa6e39e9f57305a4f8b74d9a0f87d7872ee2c5f2055770c7993e522761967f
1717

18-
ADD https://github.com/CosmWasm/wasmvm/releases/download/v1.5.1/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a
19-
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep c0f4614d0835be78ac8f3d647a70ccd7ed9f48632bc1374db04e4df2245cb467
18+
ADD https://github.com/CosmWasm/wasmvm/releases/download/v1.5.3/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a
19+
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep 34b8941acf0b695d286b6644b07e2d2f7318787cc8bd28db363cb34b62ff11dc
2020

2121
# Copy the library you want to the final location that will be found by the linker flag `-lwasmvm_muslc`
2222
RUN cp /lib/libwasmvm_muslc.${arch}.a /usr/local/lib/libwasmvm_muslc.a

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
cosmossdk.io/math v1.3.0
1111
cosmossdk.io/simapp v0.0.0-20230323161446-0af178d721ff
1212
github.com/CosmWasm/wasmd v0.45.0
13-
github.com/CosmWasm/wasmvm v1.5.2
13+
github.com/CosmWasm/wasmvm v1.5.3
1414
github.com/armon/go-metrics v0.4.1
1515
github.com/btcsuite/btcd/btcec/v2 v2.3.3
1616
github.com/cometbft/cometbft v0.37.5

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ github.com/ChainSafe/go-schnorrkel v1.0.0 h1:3aDA67lAykLaG1y3AOjs88dMxC88PgUuHRr
237237
github.com/ChainSafe/go-schnorrkel v1.0.0/go.mod h1:dpzHYVxLZcp8pjlV+O+UR8K0Hp/z7vcchBSbMBEhCw4=
238238
github.com/CosmWasm/wasmd v0.45.0 h1:9zBqrturKJwC2kVsfHvbrA++EN0PS7UTXCffCGbg6JI=
239239
github.com/CosmWasm/wasmd v0.45.0/go.mod h1:RnSAiqbNIZu4QhO+0pd7qGZgnYAMBPGmXpzTADag944=
240-
github.com/CosmWasm/wasmvm v1.5.2 h1:+pKB1Mz9GZVt1vadxB+EDdD1FOz3dMNjIKq/58/lrag=
241-
github.com/CosmWasm/wasmvm v1.5.2/go.mod h1:Q0bSEtlktzh7W2hhEaifrFp1Erx11ckQZmjq8FLCyys=
240+
github.com/CosmWasm/wasmvm v1.5.3 h1:wcmkey/WkTGwCTHGBD+fRS3cbhhipR9q34kbCZUQSsc=
241+
github.com/CosmWasm/wasmvm v1.5.3/go.mod h1:Q0bSEtlktzh7W2hhEaifrFp1Erx11ckQZmjq8FLCyys=
242242
github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
243243
github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
244244
github.com/DataDog/zstd v1.4.5 h1:EndNeuB0l9syBZhut0wns3gV1hL8zX8LIu6ZiVHWLIQ=

0 commit comments

Comments
 (0)