Skip to content

Commit 4cc7be8

Browse files
sc 0.50.2
1 parent 128d2d4 commit 4cc7be8

File tree

272 files changed

+407
-395
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+407
-395
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,17 @@ They are:
2626
- `multiversx-chain-scenario-format`, in short `scenario-format`, scenario JSON serializer/deserializer, 1 crate.
2727
- `multiversx-sdk`, in short `sdk`, allows communication with the chain(s), 1 crate.
2828

29+
30+
## [sc 0.50.2] - 2024-05-24
31+
- Unified transaction syntax:
32+
- Better compilation error messages for malformed transactions;
33+
- Deprecated methods `async_call` and `async_call_promises`, which are kept for backwards compatibility, but causing confusion among developers;
34+
- Contract upgrade available in tests.
35+
- `sc-meta` proxy compare option, which checks that proxies are up to date. Useful for CI.
36+
- `TypeAbi` - removed `Unmanaged` associated type trait bounds, and implemented it for more types.
37+
- Removed jitter from interactor transaction fetch.
38+
- Fixed an issue in the snippets generator.
39+
2940
## [sc 0.50.1] - 2024-05-16
3041
- `sc-meta all snippets` generates unified syntax.
3142
- Proxy generator can reference multi-contract variant.

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/benchmarks/large-storage/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ publish = false
99
path = "src/large_storage.rs"
1010

1111
[dependencies.multiversx-sc]
12-
version = "0.50.1"
12+
version = "0.50.2"
1313
path = "../../../framework/base"
1414

1515
[dev-dependencies.multiversx-sc-scenario]
16-
version = "0.50.1"
16+
version = "0.50.2"
1717
path = "../../../framework/scenario"

contracts/benchmarks/large-storage/meta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ publish = false
88
path = ".."
99

1010
[dependencies.multiversx-sc-meta]
11-
version = "0.50.1"
11+
version = "0.50.2"
1212
path = "../../../../framework/meta"
1313
default-features = false

contracts/benchmarks/large-storage/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ panic = "abort"
2828
path = ".."
2929

3030
[dependencies.multiversx-sc-wasm-adapter]
31-
version = "0.50.1"
31+
version = "0.50.2"
3232
path = "../../../../framework/wasm-adapter"
3333

3434
[workspace]

contracts/benchmarks/mappers/benchmark-common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ publish = false
99
path = "src/lib.rs"
1010

1111
[dependencies.multiversx-sc]
12-
version = "0.50.1"
12+
version = "0.50.2"
1313
path = "../../../../framework/base"
1414

1515
[dev-dependencies.multiversx-sc-scenario]
16-
version = "0.50.1"
16+
version = "0.50.2"
1717
path = "../../../../framework/scenario"

contracts/benchmarks/mappers/linked-list-repeat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ path = "../benchmark-common"
1313

1414

1515
[dependencies.multiversx-sc]
16-
version = "0.50.1"
16+
version = "0.50.2"
1717
path = "../../../../framework/base"
1818

1919
[dev-dependencies.multiversx-sc-scenario]
20-
version = "0.50.1"
20+
version = "0.50.2"
2121
path = "../../../../framework/scenario"

contracts/benchmarks/mappers/linked-list-repeat/meta/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ publish = false
99
path = ".."
1010

1111
[dependencies.multiversx-sc-meta]
12-
version = "0.50.1"
12+
version = "0.50.2"
1313
path = "../../../../../framework/meta"
1414
default-features = false

contracts/benchmarks/mappers/linked-list-repeat/wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ panic = "abort"
2828
path = ".."
2929

3030
[dependencies.multiversx-sc-wasm-adapter]
31-
version = "0.50.1"
31+
version = "0.50.2"
3232
path = "../../../../../framework/wasm-adapter"
3333

3434
[workspace]

contracts/benchmarks/mappers/map-repeat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ path = "../benchmark-common"
1313

1414

1515
[dependencies.multiversx-sc]
16-
version = "0.50.1"
16+
version = "0.50.2"
1717
path = "../../../../framework/base"
1818

1919
[dev-dependencies.multiversx-sc-scenario]
20-
version = "0.50.1"
20+
version = "0.50.2"
2121
path = "../../../../framework/scenario"

0 commit comments

Comments
 (0)