Skip to content

Conversation

@figure-renovate
Copy link
Contributor

@figure-renovate figure-renovate bot commented Dec 27, 2022

This PR contains the following updates:

Package Type Update Change
cosmwasm-std (source) dev-dependencies minor =1.0.0 -> =1.5.11

Release Notes

CosmWasm/cosmwasm (cosmwasm-std)

v1.5.11

Compare Source

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.

v1.5.10

Compare Source

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.

v1.5.9

Compare Source

Added
  • cosmwasm-vm: Add Cache::store_code

v1.5.8

Compare Source

Fixed
  • cosmwasm-vm: Fix CWA-2024-007 and CWA-2024-008.

v1.5.7

Compare Source

Fixed
  • cosmwasm-vm: Problem with caching related to CWA-2024-004. Please upgrade
    directly to this version instead of the previous one.

v1.5.6

Compare Source

Fixed
  • cosmwasm-vm: Fix CWA-2024-004
Changed
  • cosmwasm-std: Backport PR that changed the version pinned dependency
    k256 = { version = "=0.13.1", features = ["ecdsa"] } to the open version
    range ^0.13.3 by avoiding a normalization of the public key in
    secp256k1_recover_pubkey. (#​2014, #​2198)

v1.5.5

Compare Source

Changed
  • cosmwasm-std: Deprecate "compact" serialization of Binary, HexBinary
    (#​2126)

v1.5.4

Compare Source

Fixed
  • cosmwasm-std: Fix CWA-2024-002
Added
  • cosmwasm-std: Implement &T + T and &T op &T for Uint64, Uint128,
    Uint256 and Uint512; improve panic message for Uint64::add and
    Uint512::add (#​2092)
  • cosmwasm-std: Add Uint{64,128,256,512}::strict_add and ::strict_sub which
    are like the Add/Sub implementations but const. (#​2098, #​2107)
Changed
  • cosmwasm-std: Let Timestamp::plus_nanos/::minus_nanos use
    Uint64::strict_add/::strict_sub and document overflows. (#​2098, #​2107)
Fixed
  • cosmwasm-std: Correctly deallocate vectors that were turned into a Region
    via release_buffer (#​2062)

v1.5.3

Compare Source

Changed
  • cosmwasm-vm: Read Region from Wasm memory as bytes and convert to Region
    afterwards (#​2005)

v1.5.2

Compare Source

Fixed
  • cosmwasm-vm: Fix memory increase issue (1.3 -> 1.4 regression) by avoiding the
    use of a long running Wasmer Engine. (#​1978)

v1.5.1

Compare Source

Fixed
  • cosmwasm-vm: Fix CWA-2023-004.
Added
  • cosmwasm-vm: Add constructor CacheOptions::new

v1.5.0

Compare Source

Added
  • cosmwasm-std: Add addr_make and with_prefix for
    cosmwasm_std::testing::MockApi (#​1905).
  • cosmwasm-std: Add abs and unsigned_abs for Int{64,128,256,512}
    (#​1854).
  • cosmwasm-std: Add From<Int{64,128,256}> for Int512,
    TryFrom<Int{128,256,512}> for Int64, TryFrom<Int{256,512}> for Int128,
    TryFrom<Int512> for Int256 and Int256::from_i128 for const contexts
    (#​1861).
  • cosmwasm-std: Add Int{64,128,256}::{checked_multiply_ratio, full_mul}
    (#​1866)
  • cosmwasm-std: Add is_negative for Int{64,128,256,512} (#​1867).
  • cosmwasm-std: Add TryFrom<Uint{256,512}> for Uint64 and
    TryFrom<Uint{A}> for Int{B} where A >= B (#​1870).
  • cosmwasm-std: Add to_json_{vec,binary,string} and from_json and deprecate
    to_{vec,binary} in favor of to_json_{vec,binary} and from_{slice,binary}
    in favor of from_json. (#​1886)
  • cosmwasm-std: Add SignedDecimal and SignedDecimal256 (#​1807).
  • cosmwasm-vm: Allow float operations with NaN canonicalization (#​1864).
Changed
  • cosmwasm-vm: Added .module extension to file names in the file system cache
    (#​1913).

v1.4.5

Compare Source

Attached 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.

v1.4.4

Compare Source

Attached 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.

v1.4.3

Compare Source

Attached 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.

v1.4.2

Compare Source

v1.4.1

Compare Source

v1.4.0

Compare Source

Added
  • cosmwasm-std: Implement Not for Uint{64,128,256} (#​1799).
  • cosmwasm-std: Add iterators for Coins (#​1806).
  • cosmwasm-std: Make abs_diff const for Uint{256,512} and
    Int{64,128,256,512}. It is now const for all integer types.
  • cosmwasm-std: Implement TryFrom<Decimal256> for Decimal (#​1832)
  • cosmwasm-std: Add StdAck. (#​1512)
  • cosmwasm-std: Add new imports db_next_{key, value} for iterating storage
    keys / values only and make Storage::{range_keys, range_values} more
    efficient. This requires the cosmwasm_1_4 feature to be enabled. (#​1834)
  • cosmwasm-std: Add
    DistributionQuery::{DelegationRewards, DelegationTotalRewards, DelegatorValidators}.
    This requires the cosmwasm_1_4 feature to be enabled. (#​1788)
  • cosmwasm-std: Export module cosmwasm_std::storage_keys with
    namespace_with_key, to_length_prefixed and to_length_prefixed_nested to
    make it easier to use the strandard storage key layout documented in
    STORAGE_KEYS.md
    in other libraries such as cw-storage-plus or indexers. (#​1676)
Changed
  • cosmwasm-vm: Avoid using loupe for getting the Module size in the file
    system cache to prepare for the Wasmer 3 upgrade.
  • cosmwasm-vm: When enabling print_debug the debug logs are now printed to
    STDERR instead of STDOUT by default (#​1667).
  • cosmwasm-vm: Add Instance::set_debug_handler/unset_debug_handler to allow
    customizing the handling of debug messages emitted by the contract (#​1667).
  • cosmwasm-vm: Upgrade Wasmer to version 4.1. (#​1674, #​1693, #​1701,
    #​1793)
  • cosmwasm-check: Update clap dependency to version 4 (#​1677)
  • cosmwasm-vm: Use wasmparser for initial validation instead of parity-wasm
    (#​1786)
  • cosmwasm-std: Make constructors Decimal{,256}::{percent,permille,bps} const
  • cosmwasm-std: Use new db_next_key import to make skip and nth
    implementation of range iterators more efficient. This requires the
    cosmwasm_1_4 feature to be enabled. (#​1838)

v1.3.4

Compare Source

v1.3.3

Compare Source

Added
  • cosmwasm-std: Implement into_empty for QuerierWrapper, Deps and
    DepsMut.

v1.3.2

Compare Source

Fixed
  • cosmwasm-std: Export CoinFromStrError, CoinsError and DivisionError

v1.3.1

Compare Source

Fixed
  • cosmwasm-std: Export DelegatorWithdrawAddressResponse,
    DenomMetadataResponse and AllDenomMetadataResponse which were added in
    1.3.0 (#​1795).
Changed
  • cosmwasm-std: Query responses are now exported, even if the corresponding
    cargo feature is not enabled (#​1795).

v1.3.0

Compare Source

Fixed
  • cosmwasm-vm: Add missing cache stats increment when calling pin.
Added
  • cosmwasm-std: Implement BankQuery::AllDenomMetadata to allow querying all
    the denom metadata and BankQuery::DenomMetadata to query a specific one. In
    order to use this query in a contract, the cosmwasm_1_3 feature needs to be
    enabled for the cosmwasm_std dependency. This makes the contract
    incompatible with chains running anything lower than CosmWasm 1.3.0.
    (#​1647)
  • cosmwasm-std: Add DistributionQuery::DelegatorWithdrawAddress. Also needs
    the cosmwasm_1_3 feature (see above). (#​1593)
  • cosmwasm-std: Add DistributionMsg::FundCommunityPool. Also needs the
    cosmwasm_1_3 feature (see above). (#​1747)
  • cosmwasm-std: Add FromStr impl for Coin. (#​1684)
  • cosmwasm-std: Add Coins helper to handle multiple coins. (#​1687)
  • cosmwasm-vm: Add Cache::save_wasm_unchecked to save Wasm blobs that have
    been checked before. This is useful for state-sync where we know the Wasm code
    was checked when it was first uploaded. (#​1635)
  • cosmwasm-vm: Allow sign extension Wasm opcodes in static validation. This
    allows contracts to be compiled with Rust 1.70.0 and above. (#​1727)
  • cosmwasm-std: Add trait functions Storage::range_keys and
    Storage::range_values. The default implementations just use
    Storage::range. Later this can be implemented more efficiently. (#​1748)
  • cosmwasm-std: Add Int64, Int128, Int256 and Int512 signed integer
    types. (#​1718)
Changed
  • cosmwasm-vm: Add checks for table section of Wasm blob (#​1631).
  • cosmwasm-vm: Limit number of imports during static validation (#​1629).
  • cosmwasm-vm: Add target (triple + CPU features) into the module cache
    directory to avoid using modules compiled for a different system. Bump
    MODULE_SERIALIZATION_VERSION to "v6". (#​1664)
  • cosmwasm-vm: Add .wasm extension to stored wasm files (#​1686).
Deprecated
  • cosmwasm-storage: All exports are deprecated because this crate will be
    removed with CosmWasm 2.0 (#​1596).

v1.2.8

Compare Source

v1.2.7

Compare Source

Added
  • cosmwasm-std: Add << and <<= implementation for Uint{64,128,256,512}
    types. (#​1723)
  • cosmwasm-std: Add Timestamp::{plus,minus}_{minutes, hours, days}. (#​1729)
  • cosmwasm-std: Add Decimal::bps and Decimal256::bps to create a decimal
    from a basis point value (#​1715).
Changed
  • cosmwasm-std: Coin uses shorter Coin { 123 "ucosm" } format for Debug
    (#​1704)

v1.2.6

Compare Source

Changed

v1.2.5

Compare Source

Added
  • cosmwasm-std: Implement PartialEq for Addr == &Addr and &Addr == Addr as
    well as Event == &Event and &Event == Event (#​1672).
  • cosmwasm-std: Add #[must_use] annotations to Uint64, Uint128, Uint256,
    Uint512, Decimal and Decimal256 math operations (#​1678)
Deprecated
  • cosmwasm-std: The PartialEq implementations between Addr and &str/String
    are deprecated because they are not considered to be safe. In almost all cases
    you want to convert both sides of the equation to Addr first. If you really
    want to do a string comparison, use Addr::as_str() explicitly. (#​1671)

v1.2.4

Compare Source

Fixed
  • cosmwasm-vm: Add call depths limit

v1.2.3

Compare Source

  • cosmwasm-vm: Use saturating increments for Stats fields to ensure we don't
    run into overflow issues.

v1.2.2

Compare Source

Added
  • cosmwasm-std: Add an IBC querier implementation to testing::MockQuerier
    (#​1620, #​1624).
  • cosmwasm-std: Add #[must_use] annotations to Timestamp math functions.
Fixed
  • all: Fix backtraces feature for newer versions of Rust. This still requires
    Rust nightly (#​1613).
  • cosmwasm-std: Add missing export CheckedMultiplyFractionError (#​1608).

v1.2.1

Compare Source

Added
  • cosmwasm-std: Add Decimal{,256}::to_uint_floor and ::to_uint_ceil for
    efficient and explicit decimal to uint conversion (#​1603).
Fixed
  • cosmwasm-std: Make fields of WeightedVoteOption public to allow constructing
    it (#​1597).
Changed
  • cosmwasm-std: Improve readability of Debug output for Decimal and
    Decimal256 (#​1600).

v1.2.0

Compare Source

Added
  • cosmwasm-std: Add GovMsg::VoteWeighted. In order to use this in a contract,
    the cosmwasm_1_2 feature needs to be enabled for the cosmwasm_std
    dependency. This makes the contract incompatible with chains running versions
    of CosmWasm earlier than 1.2.0 (#​1481).
  • cosmwasm-std: Add instantiate2_address which allows calculating the
    predictable addresses for MsgInstantiateContract2 (#​1437, #​1554).
  • cosmwasm-std: Add WasmMsg::Instantiate2 (requires cosmwasm_1_2, see
    GovMsg::VoteWeighted above) to instantiate contracts at a predictable
    address (#​1436, #​1554)).
  • cosmwasm-schema: In contracts, cosmwasm schema will now output a separate
    JSON Schema file for each entrypoint in the raw subdirectory (#​1478,
    #​1533).
  • cosmwasm-std: Upgrade serde-json-wasm dependency to 0.5.0 which adds map
    support to to_vec/to_binary and friends.
  • cosmwasm-std: Implement AsRef<[u8]> for Binary and HexBinary (#​1550).
  • cosmwasm-std: Allow constructing SupplyResponse via a Default
    implementation (#​1552, #​1560).
  • cosmwasm-std: Add Never type which cannot be instantiated. This can be used
    as the error type for ibc_packet_receive or ibc_packet_ack to gain
    confidence that the implementations never errors and the transaction does not
    get reverted. (#​1513)
  • cosmwasm-std: Add new WasmQuery::CodeInfo to get the checksum of a code ID
    (#​1561).
  • cosmwasm-vm: Add Cache::remove_wasm to remove obsolete Wasm blobs and their
    compiled modules.
  • cosmwasm-std: Implement fraction multiplication and division. Assists with
    Uint & Decimal arithmetic and exposes methods for flooring/ceiling result
    (#​1485, #​1566).
Changed
  • cosmwasm-vm: Avoid exposing OS specific file system errors in order to test
    cosmwasm-vm on Windows. This gives us confidence for integrating cosmwasm-vm
    in a libwasmvm build on Windows. This change is likely to be consensus
    breaking as error messages change. (#​1406)
  • cosmwasm-vm: Use Display representation for embedding Wasmer
    InstantiationErrors (#​1508).
Fixed
  • cosmwasm-schema: Nested QueryMsg with generics is now supported by the
    QueryResponses macro (#​1516).
  • cosmwasm-schema: A nested QueryMsg no longer causes runtime errors if it
    contains doc comments.
  • cosmwasm-std/cosmwasm-vm: Increase length limit for address conversion in
    MockApi to support addresses longer than 54 bytes (#​1529).

v1.1.10

Compare Source

Attached 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.

v1.1.9

Compare Source

Fixed
  • cosmwasm-schema: Fix type fully qualified path to symbol QueryResponses in
    macro cosmwasm_schema::generate_api! (#​1527).

v1.1.8

Fixed
  • cosmwasm-schema: Fix type params on QueryMsg causing a compiler error when
    used with the QueryResponses derive macro.

v1.1.6

Compare Source

Added
  • cosmwasm-std: Add From implementations to convert between
    CanonicalAddr/Binary as well as CanonicalAddr/HexBinary (#​1463).
  • cosmwasm-std: Add From implementations to convert u8 arrays to
    CanonicalAddr (#​1463).
  • cosmwasm-std: Implement PartialEq between CanonicalAddr and
    HexBinary/Binary (#​1463).
Changed
  • all: Bump a few dependency versions to make the codebase compile with
    -Zminimal-versions (#​1465).
  • cosmwasm-profiler: Package was removed 🪦. It served its job showing us that
    we cannot properly measure different runtimes for different Wasm opcodes.
  • cosmwasm-schema: schema generation is now locked to produce strictly
    draft-07 schemas
  • cosmwasm-schema: QueryResponses derive now sets the JsonSchema trait bound
    on the generated impl block. This allows the contract dev to not add a
    JsonSchema trait bound on the type itself.

v1.1.5

Compare Source

Added
  • cosmwasm-std: Add wrapping_add, wrapping_sub, wrapping_mul and
    wrapping_pow to Uint256/Uint512.
  • cosmwasm-schema: Better error messaging when attempting to compile schema
    generator for wasm32
  • cosmwasm-vm: In the secp256k1_verify, secp256k1_recover_pubkey,
    ed25519_verify and ed25519_batch_verify import implementations we now exit
    early if the gas left is not sufficient to perform the operation.
Changed
  • cosmwasm-std: Remove non_exhaustive from IBC types IbcChannelOpenMsg,
    IbcChannelConnectMsg and IbcChannelCloseMsg in order to allow exhaustive
    matching over the possible scenarios without an unused fallback case
    (#​1449).

v1.1.4

Compare Source

Fixed
  • cosmwasm-schema: Properly analyze schemas generated for untagged enums

v1.1.3

Compare Source

Fixed
  • cosmwasm-schema: IntegrityError is now public

v1.1.2

Compare Source

Added
  • cosmwasm-std: Add testing macro assert_approx_eq! for comparing two integers
    to be relatively close to each other (#​1417).
  • cosmwasm-std: Add HexBinary which is like Binary but encodes to hex
    strings in JSON. Add StdError::InvalidHex error case. (#​1425)
Fixed
  • cosmwasm-vm: Bump MODULE_SERIALIZATION_VERSION to "v4" because the module
    serialization format changed between Wasmer 2.2 and 2.3 (#​1426).
  • cosmwasm-schema: The QueryResponses derive macro now supports QueryMsgs
    with generics. (#​1429)

v1.1.1

Compare Source

Fixed
  • cosmwasm-schema: Using QueryResponses with a QueryMsg containing a
    unit-like variant will no longer crash. The different variant types in Rust
    are:
    enum QueryMsg {
        UnitLike,
        Tuple(),
        Struct {},
    }
    It's still recommended to only use struct variants, even if there are no
    fields.
Changed
  • cosmwasm-schema: It is no longer necessary to specify serde or schemars as
    a dependency in order to make cosmwasm-schema macros work.

v1.1.0

Compare Source

Added
  • cosmwasm-std: Implement PartialEq for Binary and u8 arrays.
  • cosmwasm-std: Add Uint{64,128,256,512}::one.
  • cosmwasm-std: Add Uint{64,128,256,512}::abs_diff and
    Decimal{,256}::abs_diff (#​1334).
  • cosmwasm-std: Implement From<Decimal> for Decimal256.
  • cosmwasm-std: Implement Rem/RemAssign for Decimal/Decimal256.
  • cosmwasm-std: Implement checked_add/_sub/_div/_rem for
    Decimal/Decimal256.
  • cosmwasm-std: Implement pow/saturating_pow for Decimal/Decimal256.
  • cosmwasm-std: Implement ceil/floor for Decimal/Decimal256.
  • cosmwasm-std: Implement PartialEq for reference on one side and owned value
    on the other for all Uint and Decimal types
  • cosmwasm-std: Implement saturating_add/sub/mul for
    Decimal/Decimal256.
  • cosmwasm-std: Implement BankQuery::Supply to allow querying the total supply
    of a native token. In order to use this query in a contract, the
    cosmwasm_1_1 feature needs to be enabled for the cosmwasm_std dependency.
    This makes the contract incompatible with chains running CosmWasm 1.0.
    (#​1356)
  • cosmwasm-std: Implement MIN const value for all Uint and Decimal types
  • cosmwasm-std: Implement checked_div_euclid for Uint256/Uint512
  • cosmwasm-std: Add QuerierWrapper::query_wasm_contract_info - this is just a
    convenience helper for querying WasmQuery::ContractInfo.
  • cosmwasm-check: This is a new binary package that allows running various
    CosmWasm compatibility checks on compiled .wasm files. See
    https://crates.io/crates/cosmwasm-check for usage info.
Changed
  • cosmwasm-vm/cosmwasm-profiler: Upgrade Wasmer to 2.3.0.
  • cosmwasm-std: Enable the abort feature by default. This provides more
    helpful panic messages via a custom panic handler.
  • cosmwasm-std: Make Decimal{,256}::DECIMAL_PLACES a public u32 value.
  • cosmwasm-crypto: Bumped k256 0.10.4 -> 0.11 and digest 0.9 -> 0.10
    (#​1374).
  • cosmwasm-vm: Rename features to capabilities, including
    1. features_from_csv to capabilities_from_csv;
    2. CacheOptions::supported_features to
      CacheOptions::available_capabilities;
    3. MockInstanceOptions::supported_features to
      MockInstanceOptions::available_capabilities
    4. Instance::required_features to Instance::required_capabilities
    5. AnalysisReport::required_features to
      AnalysisReport::required_capabilities.
Deprecated
  • cosmwasm-vm: The check_contract example was deprecated. Please use the new
    crate cosmwasm-check instead
    (#​1371).

v1.0.1

Compare Source

Attached 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.


Configuration

📅 Schedule: Branch creation - "on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@figure-renovate figure-renovate bot requested a review from a team December 27, 2022 18:55
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 1dd4916 to 9c423c5 Compare January 25, 2023 02:38
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.1.9 Update Rust crate cosmwasm-std from 1.0.0 to 1.2.0 Jan 25, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 9c423c5 to 88afe71 Compare January 31, 2023 03:41
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.2.0 Update Rust crate cosmwasm-std from 1.0.0 to 1.2.1 Jan 31, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 88afe71 to b3dda57 Compare March 8, 2023 23:55
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.2.1 Update Rust crate cosmwasm-std from 1.0.0 to 1.2.2 Mar 8, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from b3dda57 to 0945fb3 Compare March 22, 2023 12:35
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.2.2 Update Rust crate cosmwasm-std from 1.0.0 to 1.2.3 Mar 22, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 0945fb3 to 1cfefd7 Compare April 19, 2023 03:29
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.2.3 Update Rust crate cosmwasm-std from 1.0.0 to 1.2.4 Apr 19, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 1cfefd7 to f9f0103 Compare May 3, 2023 05:41
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.2.4 Update Rust crate cosmwasm-std from 1.0.0 to 1.2.5 May 3, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from f9f0103 to 36dc031 Compare June 5, 2023 20:02
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.2.5 Update Rust crate cosmwasm-std from 1.0.0 to 1.2.6 Jun 5, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 36dc031 to 5fec2b1 Compare June 19, 2023 07:55
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.2.6 Update Rust crate cosmwasm-std from 1.0.0 to 1.2.7 Jun 19, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 5fec2b1 to 322a98c Compare July 21, 2023 12:44
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.2.7 Update Rust crate cosmwasm-std from 1.0.0 to 1.3.0 Jul 21, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 322a98c to ada63df Compare July 26, 2023 13:40
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.3.0 Update Rust crate cosmwasm-std from 1.0.0 to 1.3.1 Jul 26, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from ada63df to 75e23dd Compare August 15, 2023 19:54
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.3.1 Update Rust crate cosmwasm-std from 1.0.0 to 1.3.2 Aug 15, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 75e23dd to e59edd2 Compare August 22, 2023 22:04
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.3.2 Update Rust crate cosmwasm-std from 1.0.0 to 1.3.3 Aug 22, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from e59edd2 to bdf820d Compare September 4, 2023 09:35
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.3.3 Update Rust crate cosmwasm-std from 1.0.0 to 1.4.0 Sep 4, 2023
@figure-renovate figure-renovate bot changed the title Update Rust crate cosmwasm-std from 1.0.0 to 1.4.0 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.4.0 Sep 15, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from bdf820d to d23ce16 Compare October 9, 2023 19:17
@figure-renovate figure-renovate bot requested a review from a team as a code owner October 9, 2023 19:17
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.4.0 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.4.1 Oct 9, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from d23ce16 to 6d94aa6 Compare October 31, 2023 09:50
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.4.1 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.0 Oct 31, 2023
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 6d94aa6 to f8c6616 Compare January 10, 2024 15:35
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.0 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.1 Jan 10, 2024
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from f8c6616 to 226e037 Compare January 16, 2024 02:01
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.1 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.2 Jan 16, 2024
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 226e037 to aba336a Compare January 22, 2024 19:17
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from aba336a to b202af2 Compare January 31, 2024 12:29
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.2 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.3 Jan 31, 2024
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from b202af2 to e5d40db Compare April 24, 2024 13:44
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.3 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.4 Apr 24, 2024
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from e5d40db to c56251e Compare May 10, 2024 15:52
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.4 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.5 May 10, 2024
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from c56251e to 8dc3537 Compare August 8, 2024 18:47
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.5 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.7 Aug 8, 2024
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 8dc3537 to 56f7e92 Compare September 23, 2024 10:58
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.7 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.8 Sep 23, 2024
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 56f7e92 to 01daa3f Compare December 10, 2024 16:47
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.8 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.9 Dec 10, 2024
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 01daa3f to 489b9a7 Compare February 4, 2025 11:50
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.9 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.10 Feb 4, 2025
@figure-renovate figure-renovate bot force-pushed the renovate/cosmwasm-std-1.x branch from 489b9a7 to f044db4 Compare March 6, 2025 05:12
@figure-renovate figure-renovate bot changed the title chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.10 chore(deps): update rust crate cosmwasm-std from 1.0.0 to 1.5.11 Mar 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant