From 403977787574eb4b24279676b5c49251ce41b790 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 14:32:32 +0000 Subject: [PATCH 1/2] build(deps): Bump cosmwasm-std from 1.4.1 to 1.5.0 (#361) Bumps [cosmwasm-std](https://github.com/CosmWasm/cosmwasm) from 1.4.1 to 1.5.0.
Release notes

Sourced from cosmwasm-std's releases.

v1.5.0-rc.0

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.

CHANGELOG

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Changed

#1874: CosmWasm/cosmwasm#1874 #1878: CosmWasm/cosmwasm#1878 #1879: CosmWasm/cosmwasm#1879 #1890: CosmWasm/cosmwasm#1890 #1896: CosmWasm/cosmwasm#1896 #1898: CosmWasm/cosmwasm#1898 #1902: CosmWasm/cosmwasm#1902

[1.5.0-rc.0]

Added

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cosmwasm-std&package-manager=cargo&previous-version=1.4.1&new-version=1.5.0)](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)
--- Cargo.lock | 27 +++++++++++++++++++++------ 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, 26 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e04e2031..d56065b7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -76,6 +76,12 @@ dependencies = [ "serde", ] +[[package]] +name = "bech32" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445" + [[package]] name = "bindings-test" version = "1.0.0" @@ -187,11 +193,12 @@ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" [[package]] name = "cosmwasm-crypto" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a6fb22494cf7d23d0c348740e06e5c742070b2991fd41db77bba0bcfbae1a723" +checksum = "d8bb3c77c3b7ce472056968c745eb501c440fbc07be5004eba02782c35bfbbe3" dependencies = [ "digest 0.10.7", + "ecdsa", "ed25519-zebra", "k256", "rand_core 0.6.4", @@ -200,9 +207,9 @@ dependencies = [ [[package]] name = "cosmwasm-derive" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e199424486ea97d6b211db6387fd72e26b4a439d40cc23140b2d8305728055b" +checksum = "fea73e9162e6efde00018d55ed0061e93a108b5d6ec4548b4f8ce3c706249687" dependencies = [ "syn 1.0.109", ] @@ -233,11 +240,12 @@ dependencies = [ [[package]] name = "cosmwasm-std" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7d89d680fb60439b7c5947b15f9c84b961b88d1f8a3b20c4bd178a3f87db8bae" +checksum = "04d6864742e3a7662d024b51a94ea81c9af21db6faea2f9a6d2232bb97c6e53e" dependencies = [ "base64", + "bech32", "bnum", "cosmwasm-crypto", "cosmwasm-derive", @@ -248,6 +256,7 @@ dependencies = [ "serde", "serde-json-wasm", "sha2 0.10.8", + "static_assertions", "thiserror", ] @@ -1270,6 +1279,12 @@ dependencies = [ "der", ] +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + [[package]] name = "strum_macros" version = "0.25.3" diff --git a/contracts/test-contract/Cargo.toml b/contracts/test-contract/Cargo.toml index 92252778..0e27bfee 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.4.1", features = ["stargate"]} +cosmwasm-std = { version = "1.5.0", features = ["stargate"]} cw2 = "1.1.1" thiserror = { version = "1.0" } desmos-bindings = { path = "../../packages/bindings", version = "2.0.0" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index db0f40d8..735ee8db 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.4.1", features = ["stargate"]} +cosmwasm-std = { version = "1.5.0", features = ["stargate"]} desmos-bindings = { path = "../bindings", version = "2.0.0" } test-contract = { path = "../../contracts/test-contract", version = "1.0.0" } serde = "1.0.190" diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index 70edea8e..c95c9b00 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -22,7 +22,7 @@ all-features = true [dependencies] chrono = {version = "0.4.31", default-features = false} -cosmwasm-std = { version = "1.4.1", features = ["stargate"]} +cosmwasm-std = { version = "1.5.0", features = ["stargate"]} cosmwasm-schema = "1.4.1" serde = { version = "1.0.190", default-features = false, features = ["derive"] } prost = {version = "0.12.1", default-features = false, features = ["prost-derive"]} diff --git a/packages/mock/Cargo.toml b/packages/mock/Cargo.toml index 3fceee2e..c4fded8e 100644 --- a/packages/mock/Cargo.toml +++ b/packages/mock/Cargo.toml @@ -8,5 +8,5 @@ version = "2.0.1" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cosmwasm-std = {version = "1.4.1", features = ["stargate"]} +cosmwasm-std = {version = "1.5.0", features = ["stargate"]} diff --git a/packages/std-derive/Cargo.toml b/packages/std-derive/Cargo.toml index bd68e01e..2c77f1a1 100644 --- a/packages/std-derive/Cargo.toml +++ b/packages/std-derive/Cargo.toml @@ -17,7 +17,7 @@ quote = "1.0.33" syn = "2.0.38" [dev-dependencies] -cosmwasm-std = {version = "1.4.1", features = ["stargate"]} +cosmwasm-std = {version = "1.5.0", features = ["stargate"]} prost = "0.12" serde = "1.0.190" trybuild = {version = "1.0.85", features = ["diff"]} From be3fadae60b1f9deb697413d38fd87c0e636cdb8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Nov 2023 14:37:33 +0000 Subject: [PATCH 2/2] build(deps): Bump cosmwasm-schema from 1.4.1 to 1.5.0 (#360) Bumps [cosmwasm-schema](https://github.com/CosmWasm/cosmwasm) from 1.4.1 to 1.5.0.
Release notes

Sourced from cosmwasm-schema's releases.

v1.5.0-rc.0

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-schema's changelog.

CHANGELOG

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[Unreleased]

Changed

#1874: CosmWasm/cosmwasm#1874 #1878: CosmWasm/cosmwasm#1878 #1879: CosmWasm/cosmwasm#1879 #1890: CosmWasm/cosmwasm#1890 #1896: CosmWasm/cosmwasm#1896 #1898: CosmWasm/cosmwasm#1898 #1902: CosmWasm/cosmwasm#1902

[1.5.0-rc.0]

Added

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cosmwasm-schema&package-manager=cargo&previous-version=1.4.1&new-version=1.5.0)](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)
--- Cargo.lock | 8 ++++---- contracts/test-contract/Cargo.toml | 2 +- packages/bindings/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d56065b7..fd54a641 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -216,9 +216,9 @@ dependencies = [ [[package]] name = "cosmwasm-schema" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fef683a9c1c4eabd6d31515719d0d2cc66952c4c87f7eb192bfc90384517dc34" +checksum = "0df41ea55f2946b6b43579659eec048cc2f66e8c8e2e3652fc5e5e476f673856" dependencies = [ "cosmwasm-schema-derive", "schemars", @@ -229,9 +229,9 @@ dependencies = [ [[package]] name = "cosmwasm-schema-derive" -version = "1.4.1" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9567025acbb4c0c008178393eb53b3ac3c2e492c25949d3bf415b9cbe80772d8" +checksum = "43609e92ce1b9368aa951b334dd354a2d0dd4d484931a5f83ae10e12a26c8ba9" dependencies = [ "proc-macro2", "quote", diff --git a/contracts/test-contract/Cargo.toml b/contracts/test-contract/Cargo.toml index 0e27bfee..215c2a36 100644 --- a/contracts/test-contract/Cargo.toml +++ b/contracts/test-contract/Cargo.toml @@ -37,4 +37,4 @@ cosmwasm-std = { version = "1.5.0", features = ["stargate"]} cw2 = "1.1.1" thiserror = { version = "1.0" } desmos-bindings = { path = "../../packages/bindings", version = "2.0.0" } -cosmwasm-schema = { version = "1.4.1" } \ No newline at end of file +cosmwasm-schema = { version = "1.5.0" } \ No newline at end of file diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index c95c9b00..a31a8a6b 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -23,7 +23,7 @@ all-features = true [dependencies] chrono = {version = "0.4.31", default-features = false} cosmwasm-std = { version = "1.5.0", features = ["stargate"]} -cosmwasm-schema = "1.4.1" +cosmwasm-schema = "1.5.0" serde = { version = "1.0.190", default-features = false, features = ["derive"] } prost = {version = "0.12.1", default-features = false, features = ["prost-derive"]} prost-types = {version = "0.12.1", default-features = false}