Skip to content

Commit

Permalink
Merge branch 'rc/v0.54' into chain-simulator-interactor
Browse files Browse the repository at this point in the history
  • Loading branch information
BiancaIalangi committed Sep 17, 2024
2 parents 0dc0540 + 390d18d commit fd25e34
Show file tree
Hide file tree
Showing 471 changed files with 7,807 additions and 4,650 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
contracts:
name: Contracts (nightly)
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v3.2.0
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v3.3.0
with:
rust-toolchain: nightly-2024-05-22
path-to-sc-meta: framework/meta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
contracts:
name: Contracts
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v3.1.0
uses: multiversx/mx-sc-actions/.github/workflows/contracts.yml@v3.3.0
with:
rust-toolchain: stable
path-to-sc-meta: framework/meta
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/plotter-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches:
- master
pull_request:

permissions:
checks: write
pull-requests: write

jobs:
template_test_current:
name: Plotter tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Install rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
target: wasm32-unknown-unknown

- name: Run plotter tests
run: |
cd tools/plotter
cargo test
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,28 @@ 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.53.0 codec 0.21.0, vm 0.10.0, sdk 0.6.0, scenario-format 0.23.0] - 2024-09-04
- Unified syntax:
- Whitebox testing;
- Proxy fix for ManagedOption;
- TestTokenIdentifier syntactic sugar.
- New ResultHandler: `ReturnsLogs`.
- Interactor:
- Fix on API fetch process status;
- Fix on ReturnsNewTokenIdentifier edge cases solved;
- Fix on ESDTTransfer for transfer step;
- Support for Keystore + password.
- Framework API support: EI 1.4 crypto functions.
- `sc-meta`:
- New `wallet` command: PEM and keystore generator and conversions;
- New `report` command:
- Generate json or Markdown report based on size, path, allocator and panic messages;
- Compare reports;
- Convert reports.
- VecMapper update with index.
- Substitution list: AddressToIdMapper
- Dependencies updated.

## [sc 0.52.3] - 2024-08-06
- Pause module events.

Expand Down
Loading

0 comments on commit fd25e34

Please sign in to comment.