Skip to content

Commit

Permalink
Merge pull request #1647 from multiversx/release-50-2
Browse files Browse the repository at this point in the history
Release: sc 0.50.2
  • Loading branch information
andrei-marinica committed May 24, 2024
2 parents 128d2d4 + f26c854 commit 4b34c45
Show file tree
Hide file tree
Showing 363 changed files with 698 additions and 686 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ They are:
- `multiversx-chain-scenario-format`, in short `scenario-format`, scenario JSON serializer/deserializer, 1 crate.
- `multiversx-sdk`, in short `sdk`, allows communication with the chain(s), 1 crate.


## [sc 0.50.2] - 2024-05-24
- Unified transaction syntax:
- Better compilation error messages for malformed transactions;
- Deprecated methods `async_call` and `async_call_promises`, which are kept for backwards compatibility, but causing confusion among developers;
- Contract upgrade available in tests.
- `sc-meta` proxy compare option, which checks that proxies are up to date. Useful for CI.
- `TypeAbi` - removed `Unmanaged` associated type trait bounds, and implemented it for more types.
- Removed jitter from interactor transaction fetch.
- Fixed an issue in the snippets generator.

## [sc 0.50.1] - 2024-05-16
- `sc-meta all snippets` generates unified syntax.
- Proxy generator can reference multi-contract variant.
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions contracts/benchmarks/large-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = "src/large_storage.rs"

[dependencies.multiversx-sc]
version = "0.50.1"
version = "0.50.2"
path = "../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.50.1"
version = "0.50.2"
path = "../../../framework/scenario"
2 changes: 1 addition & 1 deletion contracts/benchmarks/large-storage/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/meta"
default-features = false
6 changes: 3 additions & 3 deletions contracts/benchmarks/large-storage/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/benchmarks/large-storage/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/wasm-adapter"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/benchmark-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ publish = false
path = "src/lib.rs"

[dependencies.multiversx-sc]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/scenario"
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "../benchmark-common"


[dependencies.multiversx-sc]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/scenario"
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.50.1"
version = "0.50.2"
path = "../../../../../framework/meta"
default-features = false

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.50.1"
version = "0.50.2"
path = "../../../../../framework/wasm-adapter"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/map-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "../benchmark-common"


[dependencies.multiversx-sc]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/scenario"
2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/map-repeat/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.50.1"
version = "0.50.2"
path = "../../../../../framework/meta"
default-features = false
6 changes: 3 additions & 3 deletions contracts/benchmarks/mappers/map-repeat/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/map-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.50.1"
version = "0.50.2"
path = "../../../../../framework/wasm-adapter"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/queue-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "../benchmark-common"


[dependencies.multiversx-sc]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/scenario"
2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/queue-repeat/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.50.1"
version = "0.50.2"
path = "../../../../../framework/meta"
default-features = false
6 changes: 3 additions & 3 deletions contracts/benchmarks/mappers/queue-repeat/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/queue-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.50.1"
version = "0.50.2"
path = "../../../../../framework/wasm-adapter"

[workspace]
Expand Down
4 changes: 2 additions & 2 deletions contracts/benchmarks/mappers/set-repeat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ path = "../benchmark-common"


[dependencies.multiversx-sc]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.50.1"
version = "0.50.2"
path = "../../../../framework/scenario"
2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/set-repeat/meta/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ publish = false
path = ".."

[dependencies.multiversx-sc-meta]
version = "0.50.1"
version = "0.50.2"
path = "../../../../../framework/meta"
default-features = false
6 changes: 3 additions & 3 deletions contracts/benchmarks/mappers/set-repeat/wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contracts/benchmarks/mappers/set-repeat/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ panic = "abort"
path = ".."

[dependencies.multiversx-sc-wasm-adapter]
version = "0.50.1"
version = "0.50.2"
path = "../../../../../framework/wasm-adapter"

[workspace]
Expand Down
Loading

0 comments on commit 4b34c45

Please sign in to comment.