-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Rust Toolchain to 1.77, Suppress Warnings, and Enhance Runtime #778
Merged
asiniscalchi
merged 7 commits into
feature/upgrade-polkadot-sdk-to-stable2407
from
using_rust_1.77
Sep 13, 2024
Merged
Update Rust Toolchain to 1.77, Suppress Warnings, and Enhance Runtime #778
asiniscalchi
merged 7 commits into
feature/upgrade-polkadot-sdk-to-stable2407
from
using_rust_1.77
Sep 13, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/describe |
github-actions
bot
changed the title
Using rust 1.77
Update Rust Toolchain to 1.77 and Suppress Warnings
Sep 13, 2024
PR Description updated to latest commit (5327c65) |
magecnion
approved these changes
Sep 13, 2024
/describe |
github-actions
bot
changed the title
Update Rust Toolchain to 1.77 and Suppress Warnings
Update Rust Toolchain to 1.77, Suppress Warnings, and Enhance Runtime
Sep 13, 2024
PR Description updated to latest commit (ed08db0) |
asiniscalchi
merged commit Sep 13, 2024
43737f3
into
feature/upgrade-polkadot-sdk-to-stable2407
5 of 7 checks passed
asiniscalchi
added a commit
that referenced
this pull request
Nov 29, 2024
* uplift to stable2407 * paritytech/polkadot-sdk#4831 * paritytech/polkadot-sdk#3820 * polkadot-evm/frontier#1253 * paritytech/polkadot-sdk#3952 * paritytech/polkadot-sdk#3872 * fix rpc_builder type * paritytech/polkadot-sdk#4410 * paritytech/polkadot-sdk#4097 * use stable rust toolchain * paritytech/polkadot-sdk#3964 * cargo fmt * clippy and lint issues * e2e-test estimate gas when delegating * only run staking e2e-test so it's easier for reviewing by external * only run staking e2e-test so it's easier for reviewing by external * restore run all e2e tests * Update Rust Toolchain to 1.77, Suppress Warnings, and Enhance Runtime (#778) * using runt 1.77 * fix clippy errors * fixing clippy * update to runtime 2200 * update proyect version to 0.22.0 * add missing migration * removed the upgrade of versioning * update cargo.lock * using runtime * fix command * fix compilation * fix metadata test * missing Config associated type * modify MaxPageSize to the original till we need to increase it * use latest release for zombienet tests * go back to stable2407-3 release for zombienet tests * go back to previous MaxPageSize --------- Co-authored-by: Alessandro Siniscalchi <[email protected]> Co-authored-by: luispdm <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Type
Enhancement, Bug fix
Description
Changes walkthrough 📝
12 files
eth.rs
Suppress deprecation warnings in Ethereum compatibility module
node/src/eth.rs
#[allow(deprecated)]
attribute to suppress deprecation warnings.service.rs
Suppress deprecation warnings in service module
node/src/service.rs
#[allow(deprecated)]
attribute to suppress deprecation warnings.lib.rs
Remove unnecessary Clippy lint allowance
pallets/asset-metadata-extender/src/lib.rs
#[allow(clippy::manual_inspect)]
attribute.lib.rs
Remove unnecessary Clippy lint allowance
pallets/laos-evolution/src/lib.rs
#[allow(clippy::manual_inspect)]
attribute.lib.rs
Remove unnecessary Clippy lint allowance
pallets/parachain-staking/src/lib.rs
#[allow(clippy::manual_inspect)]
attribute.mock.rs
Remove unnecessary Clippy lint allowance
pallets/parachain-staking/src/mock.rs
#[allow(clippy::manual_inspect)]
attribute.tests.rs
Clean up and simplify staking tests
pallets/parachain-staking/src/tests.rs
Balances::burn
call.lib.rs
Remove unnecessary Clippy lint allowance
pallets/precompiles-benchmark/src/lib.rs
#[allow(clippy::manual_inspect)]
attribute.treasury.rs
Clean up unused imports in treasury configuration
runtime/laos/src/configs/treasury.rs
currency::UNIT
.lib.rs
Update runtime specification version
runtime/laos/src/lib.rs
spec_version
from 2100 to 2200.migrations.rs
Add migration for XCMP queue to version 5
runtime/laos/src/migrations.rs
MigrateV4ToV5
.V5Config
forRuntime
.config.ts
Update runtime spec version in E2E tests
e2e-tests/tests/config.ts
RUNTIME_SPEC_VERSION
from 2100 to 2200.1 files
Cargo.toml
Bump project version to 0.22.0
Cargo.toml
1 files
rust-toolchain
Update Rust toolchain to version 1.77
rust-toolchain