Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Cerebellum-Network/blockchain-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.4.0
Choose a base ref
...
head repository: Cerebellum-Network/blockchain-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.5.0-rc1
Choose a head ref
  • 2 commits
  • 11 files changed
  • 1 contributor

Commits on Dec 20, 2024

  1. Feat: Polkadot v1.7 to v1.8 upgrade

    ayushmishra2005 committed Dec 20, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    ayushmishra2005 Ayush Mishra
    Copy the full SHA
    249e197 View commit details
  2. Merge pull request #506 from Cerebellum-Network/release/6.5.0

    Feat: Polkadot v1.7 to v1.8 upgrade
    ayushmishra2005 authored Dec 20, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    c3a190f View commit details
Showing with 821 additions and 573 deletions.
  1. +5 −1 .github/workflows/ci.yaml
  2. +4 −0 CHANGELOG.md
  3. +679 −446 Cargo.lock
  4. +123 −123 Cargo.toml
  5. +2 −0 node/cli/Cargo.toml
  6. +1 −1 node/cli/src/command.rs
  7. +1 −0 pallets/ddc-clusters-gov/src/mock.rs
  8. +1 −0 pallets/ddc-clusters/src/mock.rs
  9. +1 −0 pallets/ddc-staking/src/mock.rs
  10. +2 −1 runtime/cere-dev/src/lib.rs
  11. +2 −1 runtime/cere/src/lib.rs
6 changes: 5 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -55,7 +55,11 @@ jobs:
- name: Check Build
run: |
cargo update -p home --precise 0.5.9 && cargo build --release --features try-runtime
- name: Check Try-Runtime
- name: Check Try-Runtime Testnet
run: |
try-runtime --runtime ./target/release/wbuild/cere-runtime/cere_runtime.compact.compressed.wasm \
on-runtime-upgrade --disable-idempotency-checks live --uri wss://archive.testnet.cere.network:443
- name: Check Try-Runtime Mainnet
run: |
try-runtime --runtime ./target/release/wbuild/cere-runtime/cere_runtime.compact.compressed.wasm \
on-runtime-upgrade --disable-idempotency-checks live --uri wss://archive.mainnet.cere.network:443
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [C] Changes is `Cere` Runtime
- [D] Changes is `Cere Dev` Runtime

## [6.5.0]

- [C,D] Update Substrate from `v1.7` to `v1.8`.

## [6.4.0]

- [C,D] Update Substrate from `v1.6` to `v1.7`.
Loading