Skip to content

Commit

Permalink
Merge branch 'master' into chain-sim-test-seq
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaicalinluca authored Nov 27, 2024
2 parents bdec087 + b41361a commit 22ac3ec
Show file tree
Hide file tree
Showing 437 changed files with 2,031 additions and 1,357 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ coverage.md
my-vm-tests.sh
quick.sh
template-test
install-debugger-test

# Zip output with example wasm binaries
examples-wasm.zip
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@ They are:
- `multiversx-sdk-http`
- `multiversx-sdk-dapp`

## [sc 0.54.4] - 2024-11-22
- `sc-meta`
- `install debugger` CLI that prepares VSCode extension for debugging;
- fixed a crash involving templates and installers.
- Deprecated `#[derive(TypeAbi)]` and added an additional warning in the macro.

## [sc 0.54.3] - 2024-11-18
- `#[storage_mapper_from_address]` fixes for: `FungibleTokenMapper`, `NonFungibleTokenMapper`, `TokenAttributesMapper`, `UniqueIdMapper`, `UserMapper`, `AddressToIdMapper`.

## [sc 0.54.2, codec 0.21.1, chain 0.11.1, sdk 0.7.1] - 2024-11-15
- Codec improvements:
Expand Down
78 changes: 44 additions & 34 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.54.2"
version = "0.54.4"
path = "../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.54.2"
version = "0.54.4"
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-lib]
version = "0.54.2"
version = "0.54.4"
path = "../../../../framework/meta-lib"
default-features = false
7 changes: 5 additions & 2 deletions contracts/benchmarks/large-storage/src/large_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
multiversx_sc::imports!();
multiversx_sc::derive_imports!();

#[derive(TypeAbi, TopEncode, TopDecode, NestedEncode, NestedDecode, Clone)]
#[type_abi]
#[derive(TopEncode, TopDecode, NestedEncode, NestedDecode, Clone)]
pub enum SampleEnum {
Value1,
Value2,
}
#[derive(TypeAbi, TopEncode, TopDecode, NestedEncode, NestedDecode, Clone)]

#[type_abi]
#[derive(TopEncode, TopDecode, NestedEncode, NestedDecode, Clone)]
pub struct Structure<M: ManagedTypeApi> {
pub field1: ManagedBuffer<M>,
pub field2: SampleEnum,
Expand Down
10 changes: 5 additions & 5 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.54.2"
version = "0.54.4"
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.54.2"
version = "0.54.4"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.54.2"
version = "0.54.4"
path = "../../../../framework/scenario"
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ multiversx_sc::derive_imports!();

pub type Nonce = u64;

#[derive(TopEncode, TopDecode, NestedEncode, NestedDecode, TypeAbi, Clone)]
#[type_abi]
#[derive(TopEncode, TopDecode, NestedEncode, NestedDecode, Clone)]
pub struct ExampleStruct<M>
where
M: ManagedTypeApi,
Expand Down
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.54.2"
version = "0.54.4"
path = "../../../../framework/base"

[dev-dependencies.multiversx-sc-scenario]
version = "0.54.2"
version = "0.54.4"
path = "../../../../framework/scenario"
Loading

0 comments on commit 22ac3ec

Please sign in to comment.