Skip to content

Commit 77cf565

Browse files
Merge pull request #2148 from multiversx/release-61
Release: sc 0.61.0, chain 0.18.0, sdk 0.11.3
2 parents 45636ac + b8b8466 commit 77cf565

File tree

376 files changed

+1380
-1354
lines changed

Some content is hidden

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

376 files changed

+1380
-1354
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ They are:
3333
- `multiversx-sdk-dapp`
3434

3535

36+
## [sc 0.61.0, chain 0.18.0, sdk 0.11.3] - 2025-09-04
37+
- BLS crypto function support in the Rust VM. Functionality is guarded by the `bls` feature flag.
38+
- Managed buffer slices out of bounds handled in the framework.
39+
- Interactor - fixed log management.
40+
41+
3642
## [sc 0.60.0, chain 0.17.0, sdk 0.11.2] - 2025-08-08
3743
- Block info hooks:
3844
- Rust VM support for the new block/round info hooks: `getBlockTimestampMs`, `getPrevBlockTimestampMs`, `getBlockRoundTimeMs`, `epochStartBlockTimestampMs`, `epochStartBlockNonce`, `epochStartBlockRound`;
@@ -42,6 +48,7 @@ They are:
4248
- Reverted routing non-fallible transfer execute through the fallible vm hook. This preserves pre-Barnard behavior for most cases.
4349
- `sc-meta install mx-scenario-go` retries several times in case of connection issues.
4450

51+
4552
## [sc 0.59.1, codec 0.23.1, chain 0.16.1, sdk 0.11.1] - 2025-07-24
4653
- Governance proxy improvements.
4754
- Codec: added support for using u128.

Cargo.lock

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

chain/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "multiversx-chain-core"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
edition = "2021"
55

66
authors = [

chain/vm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "multiversx-chain-vm"
3-
version = "0.17.0"
3+
version = "0.18.0"
44
edition = "2021"
55

66
authors = [
@@ -42,7 +42,7 @@ anyhow = "1.0"
4242
multiversx-bls = { version = "0.1.0", optional = true }
4343

4444
[dependencies.multiversx-chain-core]
45-
version = "=0.17.0"
45+
version = "=0.18.0"
4646
path = "../core"
4747

4848
[dependencies.multiversx-chain-vm-executor]

chain/wasmer-prod/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ description = "MultiversX VM adapter for the Wasmer Production executor"
1010
path = "src/wasmer_prod.rs"
1111

1212
[dependencies.multiversx-chain-core]
13-
version = "=0.17.0"
13+
version = "=0.18.0"
1414
path = "../core"
1515

1616

1717
[dependencies.multiversx-chain-vm]
18-
version = "=0.17.0"
18+
version = "=0.18.0"
1919
path = "../vm"
2020

2121
[dependencies.multiversx-chain-vm-executor]

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.60.0"
12+
version = "0.61.0"
1313
path = "../../../framework/base"
1414

1515
[dev-dependencies.multiversx-sc-scenario]
16-
version = "0.60.0"
16+
version = "0.61.0"
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-lib]
11-
version = "0.60.0"
11+
version = "0.61.0"
1212
path = "../../../../framework/meta-lib"
1313
default-features = false

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

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

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.60.0"
31+
version = "0.61.0"
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.60.0"
12+
version = "0.61.0"
1313
path = "../../../../framework/base"
1414

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

0 commit comments

Comments
 (0)