Skip to content

Commit

Permalink
Merge branch 'main' into cheme/state_polka_v1
Browse files Browse the repository at this point in the history
  • Loading branch information
cheme authored Feb 14, 2024
2 parents 2562c33 + 3a134a5 commit 887198b
Show file tree
Hide file tree
Showing 35 changed files with 505 additions and 722 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,14 @@ name: Modify Changelog

on:
pull_request_target:
types:
- synchronize
- edited

jobs:

verifyChangelogIsUpdated:
verifyChangelog:
name: Verify that Changelog is Updated
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ github.token }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/up-to-date.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:

jobs:
updatePullRequests:
name: Keep PRs up to date
runs-on: ubuntu-latest
environment: master
steps:
Expand All @@ -17,6 +18,6 @@ jobs:
app_id: ${{ secrets.MERGE_APP_ID }}
private_key: ${{ secrets.MERGE_APP_KEY }}
- name: Update all the PRs
uses: paritytech/up-to-date-action@v0.1.0
uses: paritytech/up-to-date-action@v0.2.0
with:
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

### Changed

- Upgrade parachains runtime API from v7 to v8 in Kusama ([polkadot-fellows/runtimes#148](https://github.com/polkadot-fellows/runtimes/pull/148)). Context: https://paritytech.github.io/polkadot-sdk/book/protocol-validator-disabling.html
- Upgrade parachains runtime API from v7 to v8 in Kusama ([context](https://paritytech.github.io/polkadot-sdk/book/protocol-validator-disabling.html), [polkadot-fellows/runtimes#148](https://github.com/polkadot-fellows/runtimes/pull/148)).
- Fixed the lowering of Asset Hub existential deposits.
- MMR leaves generated by `pallet_mmr` point to the next-authority-set of the current block instead of the prior block [polkadot-fellows/runtimes#169](https://github.com/polkadot-fellows/runtimes/pull/169)

### Removed

- Removed the `SafeCallFilter` from the Relay Chain XCM config ([polkadot-fellows/runtimes#172](https://github.com/polkadot-fellows/runtimes/pull/172)).

## [1.1.1] 25.01.2024

Expand Down
105 changes: 63 additions & 42 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions chain-spec-generator/src/relay_chain_specs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,8 @@ pub fn polkadot_testnet_genesis(
paras: Default::default(),
xcm_pallet: Default::default(),
nomination_pools: Default::default(),
registrar: Default::default(),
transaction_payment: Default::default(),
}
}

Expand Down Expand Up @@ -367,6 +369,9 @@ pub fn kusama_testnet_genesis(
xcm_pallet: Default::default(),
nomination_pools: Default::default(),
nis_counterpart_balances: Default::default(),
registrar: Default::default(),
transaction_payment: Default::default(),
society: Default::default(),
}
}

Expand Down
Loading

0 comments on commit 887198b

Please sign in to comment.