From 79e801fac5b0cb3c77d8c4ee4f2639ced5e5cbb4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Apr 2024 12:53:01 +0800 Subject: [PATCH] build(deps): Bump cosmwasm-std from 1.5.3 to 1.5.4 (#448) Bumps [cosmwasm-std](https://github.com/CosmWasm/cosmwasm) from 1.5.3 to 1.5.4.
Release notes

Sourced from cosmwasm-std's releases.

v1.5.4

The release notes are available in CHANGELOG.md. For upgrading contracts also consult MIGRATING.md.\n\nAttached there are some build artifacts generated at this tag. Those are for development purposes only! Please use crates.io to find the packages of this release.

Changelog

Sourced from cosmwasm-std's changelog.

[1.5.4]

Fixed

Added

#2092: CosmWasm/cosmwasm#2092 #2098: CosmWasm/cosmwasm#2098 #2107: CosmWasm/cosmwasm#2107

Changed

#2098: CosmWasm/cosmwasm#2098 #2107: CosmWasm/cosmwasm#2107

Fixed

#2062: CosmWasm/cosmwasm#2062

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cosmwasm-std&package-manager=cargo&previous-version=1.5.3&new-version=1.5.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 12 ++++++------ contracts/test-contract/Cargo.toml | 2 +- packages/bindings-test/Cargo.toml | 2 +- packages/bindings/Cargo.toml | 2 +- packages/mock/Cargo.toml | 2 +- packages/std-derive/Cargo.toml | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 869ee0b5..0dfc4fdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -193,9 +193,9 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" [[package]] name = "cosmwasm-crypto" -version = "1.5.3" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9934c79e58d9676edfd592557dee765d2a6ef54c09d5aa2edb06156b00148966" +checksum = "e6b4c3f9c4616d6413d4b5fc4c270a4cc32a374b9be08671e80e1a019f805d8f" dependencies = [ "digest 0.10.7", "ecdsa", @@ -207,9 +207,9 @@ dependencies = [ [[package]] name = "cosmwasm-derive" -version = "1.5.3" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc5e72e330bd3bdab11c52b5ecbdeb6a8697a004c57964caeb5d876f0b088b3c" +checksum = "c586ced10c3b00e809ee664a895025a024f60d65d34fe4c09daed4a4db68a3f3" dependencies = [ "syn 1.0.109", ] @@ -240,9 +240,9 @@ dependencies = [ [[package]] name = "cosmwasm-std" -version = "1.5.3" +version = "1.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef8666e572a3a2519010dde88c04d16e9339ae751b56b2bb35081fe3f7d6be74" +checksum = "712fe58f39d55c812f7b2c84e097cdede3a39d520f89b6dc3153837e31741927" dependencies = [ "base64", "bech32", diff --git a/contracts/test-contract/Cargo.toml b/contracts/test-contract/Cargo.toml index 420f4e19..baf4c1e8 100644 --- a/contracts/test-contract/Cargo.toml +++ b/contracts/test-contract/Cargo.toml @@ -33,7 +33,7 @@ optimize = """docker run --rm \ """ [dependencies] -cosmwasm-std = { version = "1.5.3", features = ["stargate"]} +cosmwasm-std = { version = "1.5.4", features = ["stargate"]} cw2 = "1.1.1" thiserror = { version = "1.0" } desmos-bindings = { path = "../../packages/bindings", version = "3.0.0" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index 19768be9..06bf6020 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -7,7 +7,7 @@ publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cosmwasm-std = { version = "1.5.3", features = ["stargate"]} +cosmwasm-std = { version = "1.5.4", features = ["stargate"]} desmos-bindings = { path = "../bindings", version = "3.0.0" } test-contract = { path = "../../contracts/test-contract", version = "1.0.0" } serde = "1.0.197" diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index 260b8166..26d7d5b3 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -22,7 +22,7 @@ all-features = true [dependencies] chrono = {version = "0.4.34", default-features = false} -cosmwasm-std = { version = "1.5.3", features = ["stargate"]} +cosmwasm-std = { version = "1.5.4", features = ["stargate"]} cosmwasm-schema = "1.5.3" serde = { version = "1.0.197", default-features = false, features = ["derive"] } prost = {version = "0.12.3", default-features = false, features = ["prost-derive"]} diff --git a/packages/mock/Cargo.toml b/packages/mock/Cargo.toml index fd59ee4d..14a204d6 100644 --- a/packages/mock/Cargo.toml +++ b/packages/mock/Cargo.toml @@ -8,5 +8,5 @@ version = "3.0.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cosmwasm-std = {version = "1.5.3", features = ["stargate"]} +cosmwasm-std = {version = "1.5.4", features = ["stargate"]} diff --git a/packages/std-derive/Cargo.toml b/packages/std-derive/Cargo.toml index 566ad903..4e565c94 100644 --- a/packages/std-derive/Cargo.toml +++ b/packages/std-derive/Cargo.toml @@ -17,7 +17,7 @@ quote = "1.0.33" syn = "2.0.52" [dev-dependencies] -cosmwasm-std = {version = "1.5.3", features = ["stargate"]} +cosmwasm-std = {version = "1.5.4", features = ["stargate"]} prost = "0.12" serde = "1.0.197" trybuild = {version = "1.0.89", features = ["diff"]}