Skip to content

Commit 38d100e

Browse files
Merge branch 'rc/v0.54' into mdrop
2 parents 8c93071 + 34dc67c commit 38d100e

File tree

743 files changed

+10501
-4464
lines changed

Some content is hidden

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

743 files changed

+10501
-4464
lines changed

.github/workflows/actions-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions:
1414
jobs:
1515
contracts:
1616
name: Contracts (nightly)
17-
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v3.3.0
17+
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v3.3.1
1818
with:
1919
rust-toolchain: nightly-2024-05-22
2020
path-to-sc-meta: framework/meta

.github/workflows/actions.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,23 @@ permissions:
1414
jobs:
1515
contracts:
1616
name: Contracts
17-
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v3.3.0
17+
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@4ec1f927bd99ed90a816ded805daa75fd2040258
1818
with:
1919
rust-toolchain: stable
2020
path-to-sc-meta: framework/meta
2121
mx-scenario-go-version: v2.1.0-alpha
2222
coverage-args: --ignore-filename-regex='meta/src' --ignore-filename-regex='wasm-adapter' --ignore-filename-regex='benchmarks/' --ignore-filename-regex='tests/' --output ./coverage.md
2323
secrets:
24-
token: ${{ secrets.GITHUB_TOKEN }}
24+
token: ${{ secrets.GITHUB_TOKEN }}
25+
26+
formatting:
27+
name: cargo fmt
28+
runs-on: ubuntu-latest
29+
steps:
30+
- uses: actions/checkout@v4
31+
# Ensure rustfmt is installed and setup problem matcher
32+
- uses: actions-rust-lang/setup-rust-toolchain@v1
33+
with:
34+
components: rustfmt
35+
- name: Rustfmt Check
36+
uses: actions-rust-lang/rustfmt@v1

.github/workflows/lldb-formatter-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: robinraju/release-downloader@v1.5
2323
with:
2424
repository: vadimcn/vscode-lldb
25-
latest: true
25+
tag: v1.10.0
2626
fileName: codelldb-x86_64-linux.vsix
2727

2828
- name: Setup vscode-lldb

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Generated by Cargo
22
# will have compiled files and executables
33
**/target/**
4+
**/dist
45

56
# Remove Cargo.lock from the framework, but not from the wasm contracts.
67
# In contracts it helps with tracing builds.

CHANGELOG.md

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

30+
## [sc 0.53.2] - 2024-10-02
31+
- `StakingModule` fix.
32+
33+
## [sc 0.53.1, sdk 0.6.1] - 2024-10-01
34+
- Interactor:
35+
- Allow signature to be empty in TransactionOnNetwork;
36+
- Allow return data to be empty in VMOutputApi.
37+
3038
## [sc 0.53.0 codec 0.21.0, vm 0.10.0, sdk 0.6.0, scenario-format 0.23.0] - 2024-09-04
3139
- Unified syntax:
3240
- Whitebox testing;

0 commit comments

Comments
 (0)