Skip to content

Commit

Permalink
Merge pull request #2328 from CosmWasm/co/merge-changelogs
Browse files Browse the repository at this point in the history
Merge changelogs
  • Loading branch information
chipshort authored Jan 7, 2025
2 parents c9220c2 + 49dc2e0 commit 6e98a68
Showing 1 changed file with 218 additions and 9 deletions.
227 changes: 218 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ and this project adheres to

## [Unreleased]

## Fixed

- cosmwasm-schema: The schema export now doesn't overwrite existing
`additionalProperties` values anymore ([#2310])

[#2310]: https://github.com/CosmWasm/cosmwasm/pull/2310

## [2.2.0] - 2024-12-17

### Added

- cosmwasm-std: Add `from_msgpack`, `to_msgpack_vec` and `to_msgpack_binary`.
Expand Down Expand Up @@ -66,19 +75,23 @@ and this project adheres to
- cosmwasm-vm: Automatically derive cache version from function hashes and the
Wasmer version ([#2250])

## Fixed

- cosmwasm-schema: The schema export now doesn't overwrite existing
`additionalProperties` values anymore ([#2310])

[#2118]: https://github.com/CosmWasm/cosmwasm/pull/2118
[#2211]: https://github.com/CosmWasm/cosmwasm/issues/2211
[#2246]: https://github.com/CosmWasm/cosmwasm/pull/2246
[#2247]: https://github.com/CosmWasm/cosmwasm/pull/2247
[#2255]: https://github.com/CosmWasm/cosmwasm/pull/2255
[#2260]: https://github.com/CosmWasm/cosmwasm/pull/2260
[#2250]: https://github.com/CosmWasm/cosmwasm/pull/2250
[#2310]: https://github.com/CosmWasm/cosmwasm/pull/2310

## [2.1.5] - 2024-12-10

- cosmwasm-vm: Add `Cache::store_code`

## [2.1.4] - 2024-09-23

### Fixed

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

## [2.1.3] - 2024-08-08

Expand Down Expand Up @@ -208,6 +221,78 @@ and this project adheres to
[#2160]: https://github.com/CosmWasm/cosmwasm/pull/2160
[#2182]: https://github.com/CosmWasm/cosmwasm/pull/2182

## [2.0.8] - 2024-12-10

- cosmwasm-vm: Add `Cache::store_code`

## [2.0.7] - 2024-09-23

### Fixed

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

## [2.0.6] - 2024-08-08

### Fixed

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

## [2.0.5] - 2024-08-08

### Fixed

- cosmwasm-vm: Fix CWA-2024-004

## [2.0.4] - 2024-06-03

### Fixed

- cosmwasm-std: Fix `Reply` deserialization on CosmWasm 1.x chains ([#2158])

[#2158]: https://github.com/CosmWasm/cosmwasm/pull/2158

### Changed

- cosmwasm-std: Add message_info and deprecate mock_info ([#2160])

[#2160]: https://github.com/CosmWasm/cosmwasm/pull/2160

## [2.0.3] - 2024-05-10

### Changed

- cosmwasm-std: Deprecate "compact" serialization of `Binary`, `HexBinary`,
`Checksum` ([#2128])

[#2128]: https://github.com/CosmWasm/cosmwasm/pull/2128

## [2.0.2] - 2024-04-24

### 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])

[#2092]: https://github.com/CosmWasm/cosmwasm/pull/2092
[#2098]: https://github.com/CosmWasm/cosmwasm/pull/2098
[#2107]: https://github.com/CosmWasm/cosmwasm/pull/2107

### Changed

- cosmwasm-std: Let `Timestamp::plus_nanos`/`::minus_nanos` use
`Uint64::strict_add`/`::strict_sub` and document overflows. ([#2098], [#2107])

[#2098]: https://github.com/CosmWasm/cosmwasm/pull/2098
[#2107]: https://github.com/CosmWasm/cosmwasm/pull/2107

## [2.0.1] - 2024-04-03

### Fixed
Expand Down Expand Up @@ -374,6 +459,111 @@ and this project adheres to
[#1952]: https://github.com/CosmWasm/cosmwasm/pull/1952
[#1953]: https://github.com/CosmWasm/cosmwasm/pull/1953

## [1.5.9] - 2024-12-10

### Added

- cosmwasm-vm: Add `Cache::store_code`

## [1.5.8] - 2024-09-23

### Fixed

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

## [1.5.7] - 2024-08-08

### Fixed

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

## [1.5.6] - 2024-08-08

### 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])

[#2014]: https://github.com/CosmWasm/cosmwasm/pull/2014
[#2198]: https://github.com/CosmWasm/cosmwasm/pull/2198

## [1.5.5] - 2024-05-10

### Changed

- cosmwasm-std: Deprecate "compact" serialization of `Binary`, `HexBinary`
([#2126])

[#2126]: https://github.com/CosmWasm/cosmwasm/pull/2126

## [1.5.4]

### 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])

[#2092]: https://github.com/CosmWasm/cosmwasm/pull/2092
[#2098]: https://github.com/CosmWasm/cosmwasm/pull/2098
[#2107]: https://github.com/CosmWasm/cosmwasm/pull/2107

### Changed

- cosmwasm-std: Let `Timestamp::plus_nanos`/`::minus_nanos` use
`Uint64::strict_add`/`::strict_sub` and document overflows. ([#2098], [#2107])

[#2098]: https://github.com/CosmWasm/cosmwasm/pull/2098
[#2107]: https://github.com/CosmWasm/cosmwasm/pull/2107

### Fixed

- cosmwasm-std: Correctly deallocate vectors that were turned into a `Region`
via `release_buffer` ([#2062])

[#2062]: https://github.com/CosmWasm/cosmwasm/pull/2062

## [1.5.3]

### Changed

- cosmwasm-vm: Read `Region` from Wasm memory as bytes and convert to `Region`
afterwards ([#2005])

[#2005]: https://github.com/CosmWasm/cosmwasm/pull/2005

## [1.5.2] - 2024-01-15

### Fixed

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

[#1978]: https://github.com/CosmWasm/cosmwasm/issues/1978

## [1.5.1] - 2024-01-10

### Fixed

- cosmwasm-vm: Fix CWA-2023-004.

### Added

- cosmwasm-vm: Add constructor `CacheOptions::new`

## [1.5.0] - 2023-10-31

### Added
Expand Down Expand Up @@ -969,13 +1159,32 @@ The CHANGELOG for versions before 1.0.0 was moved to

<!-- next-url -->

[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/v2.1.3...HEAD
[unreleased]: https://github.com/CosmWasm/cosmwasm/compare/v2.2.0...HEAD
[2.2.0]: https://github.com/CosmWasm/cosmwasm/compare/v2.1.5...v2.2.0
[2.1.5]: https://github.com/CosmWasm/cosmwasm/compare/v2.1.4...v2.1.5
[2.1.4]: https://github.com/CosmWasm/cosmwasm/compare/v2.1.3...v2.1.4
[2.1.3]: https://github.com/CosmWasm/cosmwasm/compare/v2.1.2...v2.1.3
[2.1.2]: https://github.com/CosmWasm/cosmwasm/compare/v2.1.1...v2.1.2
[2.1.1]: https://github.com/CosmWasm/cosmwasm/compare/v2.1.0...v2.1.1
[2.1.0]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.1...v2.1.0
[2.1.0]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.8...v2.1.0
[2.0.8]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.7...v2.0.8
[2.0.7]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.6...v2.0.7
[2.0.6]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.5...v2.0.6
[2.0.5]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.4...v2.0.5
[2.0.4]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.3...v2.0.4
[2.0.3]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.2...v2.0.3
[2.0.2]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/CosmWasm/cosmwasm/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.0...v2.0.0
[2.0.0]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.9...v2.0.0
[1.5.9]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.8...v1.5.9
[1.5.8]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.7...v1.5.8
[1.5.7]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.6...v1.5.7
[1.5.6]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.5...v1.5.6
[1.5.5]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.4...v1.5.5
[1.5.4]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.3...v1.5.4
[1.5.3]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.2...v1.5.3
[1.5.2]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.1...v1.5.2
[1.5.1]: https://github.com/CosmWasm/cosmwasm/compare/v1.5.0...v1.5.1
[1.5.0]: https://github.com/CosmWasm/cosmwasm/compare/v1.4.1...v1.5.0
[1.4.1]: https://github.com/CosmWasm/cosmwasm/compare/v1.4.0...v1.4.1
[1.4.0]: https://github.com/CosmWasm/cosmwasm/compare/v1.3.3...v1.4.0
Expand Down

0 comments on commit 6e98a68

Please sign in to comment.