git.delta.rocks / unique-network / refs/commits / c43adc7e9b45

difftreelog

docs(collator-selection) update CHANGELOG.md

Fahrrader2022-12-29parent: #d18d30e.patch.diff
in: master

4 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5843,7 +5843,7 @@
 
 [[package]]
 name = "pallet-configuration"
-version = "0.1.2"
+version = "0.1.3"
 dependencies = [
  "fp-evm",
  "frame-benchmarking",
modifiedpallets/collator-selection/CHANGELOG.mddiffbeforeafterboth
1## [3.0.0] - 2022-10-281# Change Log
22
3All notable changes to this project will be documented in this file.
4
5<!-- bureaucracy goes here -->
6
7## [4.0.0] - 2022-12-29
8
3### Added9### Added
410
5 - Entire functionality moved over from cumulus/pallet-collator-selection (v3.0.0).11- Entire functionality moved over from cumulus/pallet-collator-selection (v3.0.0). Refactored business logic:
12 - Added an extra step for candidacy, `get_license`, at which payment happens. The number of license holders is unlimited.
13 - Only licensed accounts can apply for candidacy with `onboard`. No extra deposits are made.
14 - Active candidates may `offboard`, but they will retain their license.
15 - Deposit is returned, and candidacy possibly removed with `release_license`.
16 - License can be forcibly forfeited and candidacy removed with `force_release_license`.
17 - Failing collators' deposits will now be fully slashed, and funds will be redirected to Treasury.
18 - Unify `MaxInvulnerables` and `MaxCandidates` into `MaxCollators`.
19 - Remove `MinCandidates`.
20 - Minimal amount of invulnerables is now 1.
21 - Both invulnerables and candidates count against the limits together, however invulnerables ignore `DesiredCollators`.
22 - `KickThreshold` is made configurable.
23 - `DesiredCollators`, `LicenseBond`, and `KickThreshold` are moved to and referenced from `pallet-configuration`.
24 - Naming changes to better reflect the new functionality.
25 - More minor changes, tests, benchmarks, etc.
modifiedpallets/configuration/CHANGELOG.mddiffbeforeafterboth
--- a/pallets/configuration/CHANGELOG.md
+++ b/pallets/configuration/CHANGELOG.md
@@ -1,4 +1,15 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+
 <!-- bureaucrate goes here -->
+
+## [0.1.3] - 2022-12-29
+
+### Added
+
+- The ability to configure pallet `collator-selection` via the `configuration` pallet.
+
 ## [0.1.2] - 2022-12-13
 
 ### Added
modifiedpallets/configuration/Cargo.tomldiffbeforeafterboth
--- a/pallets/configuration/Cargo.toml
+++ b/pallets/configuration/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "pallet-configuration"
-version = "0.1.2"
+version = "0.1.3"
 edition = "2021"
 
 [dependencies]