1. Dec 27, 2020
  2. Dec 24, 2020
    • thiolliere's avatar
      Add `pallet` attribute macro to declare pallets (#6877) · 0d6953cc
      thiolliere authored
      
      
      * rename system Config to system Trait.
      
      command used:
      ```
      find frame/ bin/ test-utils/ utils/ -name *.rs -exec sed -i 's/system::Trait>::/system::Config>::/g' {} \;
      find frame/ bin/ test-utils/ utils/ -name *.rs -exec sed -i 's/impl frame_system::Trait for /impl frame_system::Config for /g' {} \;
      find frame/ bin/ test-utils/ utils/ -name *.rs -exec sed -i 's/impl system::Trait for /impl system::Config for /g' {} \;
      ```
      plus some manual ones especially for frame-support tests and frame-system
      
      * make construct_runtime handle Pallet and Module
      
      pallets can now be implemented on struct named Pallet or Module, both
      definition are valid.
      This is because next macro will generate only Pallet placeholder.
      
      * introduce pallet attribute macro
      
      currently just with tests, frame_system and other example hasn't been
      upgraded
      
      * allow to print some upgrade helper from decl_storage
      
      * Improved error msg, typo.
      
      Co-authored-by: default avatarShawn Tabrizi <[email protected]>
      
      * Improved error msg, typo.
      
      Co-authored-by: default avatarShawn Tabrizi <[email protected]>
      
      * Improved error message on unexpected attributes + ui test
      
      * add test for transactional
      
      * various typo
      
      * some tips when spans are lost
      
      * allow pallet to depend on other pallet instances
      
      * make event type metadata consistent with call and constant
      
      * error messages
      
      * ignore doc example
      
      * fix pallet upgrade template
      
      * fixup
      
      * fix doc
      
      * fix indentation
      
      * Apply suggestions code formatting
      
      Co-authored-by: default avatarKian Paimani <[email protected]>
      
      * some renames + fix compilation
      
      * remove unsupported genesis config type alias
      
      * merge fixup
      
      * fix ui tests
      
      * additional doc
      
      * implement StorageInstance with new syntax
      
      * fix line width
      
      * fix doc: because pallet doc goes below reexport doc
      
      * Update frame/support/procedural/src/pallet/parse/event.rs
      
      Co-authored-by: default avatarAndrew Jones <[email protected]>
      
      * Update frame/system/src/lib.rs
      
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      
      * Update frame/support/test/tests/pallet_ui.rs
      
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      
      * improve doc as suggested
      
      * revert construct_runtime Pallet part.
      
      This revert the changes on construct_runtime. Now construct_runtime is
      unchanged and instead pallet macro create a type alias
      `type Module<..> = Pallet<..>` to be used by construct_runtime
      
      * refactor with less intricated code
      
      * fix ui test with new image
      
      * fix ui tests
      
      * add minor tests
      
      Co-authored-by: default avatarShawn Tabrizi <[email protected]>
      Co-authored-by: default avatarKian Paimani <[email protected]>
      Co-authored-by: default avatarAndrew Jones <[email protected]>
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      0d6953cc
  3. Dec 23, 2020
  4. Dec 22, 2020
  5. Dec 21, 2020
    • Bruno Škvorc's avatar
      Typo fix: eror => error (#7773) · 5c70d7bb
      Bruno Škvorc authored
      5c70d7bb
    • Bastian Köcher's avatar
      Make it possible to calculate the storage root as often as you want (#7714) · 22b34bbc
      Bastian Köcher authored
      * Make it possible to calculate the storage as often as you want
      
      So, until now each Substrate based blockchain has calculated the storage
      root once, at the end of the block. Now there is Frontier that wants to
      calculate some intermediate storage root. However this failed on block
      import. The problem with that was the extrinsics root. When building the
      block we stored `Default::default()` as extrinsics root, because yeah,
      we don't know the extrinsics root before finishing the block. At the end
      this extrinsics root was then calculated. But on block import we passed
      the already known extrinsics root. This was no problem, as we removed
      this value at the end of the block. However when you all the storage
      root in between, that changes the storage root between block building
      and block import.
      
      This pr changes this behavior. It removes the `ExtrinsicsRoot` storage
      entry and also doesn't pass it anymore to `System::initialize`. By doing
      it, we remove the difference in the storage and fix the storage root mismatch.
      
      * Fix bug with incorrectly calculating the extrinscs root
      
      * Review feedback
      22b34bbc
    • honeywest's avatar
      optimize biguint div closure (#7754) · 48bf02ad
      honeywest authored
      * optimize biguint div closure
      
      * optimize biguint sub and fix note
      
      * change and add biguint split test
      
      * add biguint div_unit test
      
      * update biguint sub v to v1
      
      * add biguint shift_check
      48bf02ad
    • Kian Paimani's avatar
      Allow Staking tests to run with session length other than 1 (#7719) · 9e2d7b74
      Kian Paimani authored
      
      
      * fix periodic session
      
      * Allow staking tests to run with session lengths other than 1.
      
      * Update frame/staking/src/mock.rs
      
      Co-authored-by: default avatarGuillaume Thiolliere <[email protected]>
      
      * Fix all tests with session length 5.
      
      * Test for active != current
      
      * Better doc
      
      * Update frame/staking/src/lib.rs
      
      Co-authored-by: default avatarGuillaume Thiolliere <[email protected]>
      
      * also set the timestamp properly.
      
      * trigger CI
      
      * Revert "trigger CI"
      
      This reverts commit 0f254944cdad848aa6e63bd8a618db95447a8e68.
      
      * Update frame/staking/src/lib.rs
      
      Co-authored-by: default avatarGuillaume Thiolliere <[email protected]>
      9e2d7b74
    • honeywest's avatar
      update substrate to sc in docs (#7767) · 532cce01
      honeywest authored
      532cce01
  6. Dec 19, 2020
  7. Dec 18, 2020
    • Bastian Köcher's avatar
      aa5184d7
    • Bastian Köcher's avatar
      Update common block in sync after importing blocks of a peer, please read UPDATE (#7733) · 330f5c0d
      Bastian Köcher authored
      
      
      * Update common block in sync after importing blocks of a peer
      
      This updates the sync code to update the common block of a peer, after
      we have imported blocks from this peer. This fixes a bug for when we are
      connected to one or more nodes that are doing a full sync as our node.
      Nodes in full sync will not announce new blocks, as we don't send import
      notifications on full sync. The problem as now that we were connected to
      some peer that reported some low number as its best and we tried to sync
      these blocks. But, as we did not update the common block of this peer,
      we would sync these blocks over and over again. Being captured in some
      time warp.
      The solution to this problem is that we increase the common number as we
      import blocks from this peer.
      
      * Test
      
      * Test name..
      
      * Fix test
      
      * Cleanup some code and write some new regression test
      
      * Implement the ancestor search
      
      * Check that the common number is smaller than the last finalized block
      
      * Update client/network/src/protocol/sync.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      * Update client/network/src/protocol/sync.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      * Update client/network/src/protocol/sync.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      * Change the way we build the status messages
      
      * Start some new test...
      
      * Finish test
      
      * Rename test
      
      * Update client/network/src/protocol.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      330f5c0d
  8. Dec 17, 2020
  9. Dec 16, 2020
    • RK's avatar
      Issue 7143 | Refactor Treasury Pallet into Bounties, Tips, and Proposals (#7536) · 987a9723
      RK authored
      
      
      * wk2046 | D5 | treasury refactor to bounties and tips
      
      * wk2046 | D5 | treasury refactor to bounties and tips | p2
      
      * fix test compilation, ignoring events
      
      * initialize treasury in genesis
      
      * wk2046 | D7 | treasury refactor | fix bounties test build issues
      
      * wk2047 | D1 | treasury refactor | tips pallet bringup
      
      * wk2047 | D2 | treasury refactor | bounties  pallet | unit test bringup
      
      * wk2047 | D2 | treasury refactor | bounties  pallet | unit test bringup | p2
      
      * wk2047 | D2 | treasury refactor | pallet-tips| test_last_reward_migration | test failure - analysis
      
      * wk2047 | D3 | treasury refactor | pallet-tips| test_last_reward_migration | test failure - fix
      
      * wk2047 | D3 | treasury refactor | pallet-bounties | on_initialize() fix
      
      * wk2047 | D3 | treasury refactor | pallet-bounties | on_initialize() fix | p2
      
      * wk2047 | D4 | treasury refactor | pallet-bounties + pallet-treasury | spend_fund runtime hooks
      
      * wk2047 | D4 | treasury refactor | pallet-bounties + pallet-treasury | spend_fund runtime hooks | p2
      
      * wk2047 | D4 | treasury refactor | pallet-bounties + pallet-treasury | spend_fund runtime hooks | p3
      
      * wk2047 | D5 | treasury refactor | pallet-bounties + pallet-treasury | spend_fund runtime hooks | p4
      
      * wk2047 | D6 | treasury refactor | review comments fix
      
      * some fixes
      
      * fix bounties instantiable
      
      * remove instantiable from tips and bounties
      
      * fix compile for benchmarks
      
      * cargo run --release --features=runtime-benchmarks --manifest-path=bin/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_treasury --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/treasury/src/weights.rs --template=./.maintain/frame-weight-template.hbs
      
      * Update lib.rs
      
      * cargo run --release --features=runtime-benchmarks --manifest-path=bin/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_tips --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/tips/src/weights.rs --template=./.maintain/frame-weight-template.hbs
      
      * cargo run --release --features=runtime-benchmarks --manifest-path=bin/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_bounties --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/bounties/src/weights.rs --template=./.maintain/frame-weight-template.hbs
      
      * add back `on_initialize_bounties`
      
      * patch up bounties benchmarks
      
      * cargo run --release --features=runtime-benchmarks --manifest-path=bin/node/cli/Cargo.toml -- benchmark --chain=dev --steps=50 --repeat=20 --pallet=pallet_bounties --extrinsic=* --execution=wasm --wasm-execution=compiled --heap-pages=4096 --output=./frame/bounties/src/weights.rs --template=./.maintain/frame-weight-template.hbs
      
      * Remove development TODO from public doc comment (#7500)
      
      * refactor subtrait/elevated trait as not needed (#7497)
      
      * Fix comments of indices pallet events (#7511)
      
      Arguments for IndexAssigned and IndexFrozen were inverted in comments.
      
      * Skip slot lenience on first block in BABE (#7515)
      
      The genesis header doesn't have the BABE pre-digest and we insert `0` as
      slot number. The slot lenience calculation will return the maximum in
      this situation. Besides returning the maximum which is not bad at all,
      it also prints some a debug message that can be confusing in the first
      moment. To prevent printing this debug message, we now just return early
      when we see that the parent block is the genesis block.
      
      * slots: incrementally backoff claiming slots if finality lags behind (#7186)
      
      * babe: backoff authoring blocks when finality lags
      
      * babe: move backoff authoring params to default constructor
      
      * babe: deduplicate the test a bit
      
      * babe: set backoff constants in service
      
      * babe: use better names for backoff authoring block parameters
      
      * babe: remove last unwrap
      
      * babe: slight style tweak
      
      * babe: fix comment
      
      * slots: move backoff block authorship logic to SimpleSlotWorker
      
      * aura: append SlotInfo in on_slot
      
      * slots: use the correct types for parameters
      
      * slots: fix review comments
      
      * aura: add missing backoff authoring blocks parameters
      
      * slots: add comments for default values
      
      * slots: add additional checks in test
      
      * slots: update implementation for new master
      
      * slots: revert the change to SlotInfo
      
      * Fix review comments
      
      * slots: rework unit tests for backing off claiming slots
      
      * slots: add test for asymptotic behaviour for slot claims
      
      * slots: address review comments
      
      * slots: add test for max_interval
      
      * slots: add assertion for intervals between between claimed slots
      
      * slots: remove rustfmt directive
      
      * slots: another attempt at explaining authoring_rate
      
      * slots: up unfinalized_slack to 50 by default
      
      * slots: add tests for time to reach max_interval
      
      * slots: fix typo in comments
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      
      * slots: additional tweaks to comments and info calls
      
      * slots: rename to BackoffAuthoringOnFinalizedHeadLagging
      
      * slots: make the backing off strategy generic
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      
      * slots: implement backoff trait for () for simplicity
      
      * slots: move logging inside backing off function to make it more specific
      
      * aura: add missing function parameter
      
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      
      * Export app-crypto specific keystore functions (#7489)
      
      * Export app-crypto specific keystore functions
      
      * Also add back the insert function
      
      * Switch KeystoreContainer to an enum
      
      * Only export the bare minimal for LocalKeystore and fix service compile
      
      * fix: should return Arc
      
      * Add docs stating that functions only available in local keystore
      
      * Remove insert and generate functions
      
      * fix: generate function should be available in test
      
      * Add keypair function to trait
      
      * Revert "Add keypair function to trait"
      
      This reverts commit ad921b09
      
      .
      
      * Add note for local_keystore function in service
      
      * Update doc for the --chain flag (#7520)
      
      * contracts: Add missing instruction to the `Schedule` (#7527)
      
      * Don't log with colors when we are writing to a tty (#7525)
      
      * Don't log with colors when we are writing to a tty
      
      This fixes a regression that was introduced by the switch to tracing.
      Before we killed all colors before writing to a tty, this pr brings the
      behaviour back.
      
      * Remove accidentally added crate
      
      * Review feedback
      
      * More feedback
      
      * Update client/cli/src/logging.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      * Update client/cli/src/logging.rs
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      Co-authored-by: default avatarAndré Silva <[email protected]>
      
      * MemoryId -> u32 (#7534)
      
      * Enable local addresses in DHT when chain type == `Local` | `Development` (#7538)
      
      * Enable local addresses in DHT when chain type == `Local` | `Development`
      
      This pr changes when to add local addresses to DHT. Instead of only
      checking if `--discover-local` and `--dev` are present, we now also
      check if the chain type is `Local` or `Development`.
      
      * Update the docs!
      
      * Update tiny-bip39 to v0.8 (#7539)
      
      It would improve secret zeroization due to
      https://github.com/maciejhirsz/tiny-bip39/pull/22, and would also remove
      one of the points where we depend on `failure` crate, which is
      deprecated (see https://github.com/rust-lang-nursery/failure/pull/347
      
      )
      
      * make LocalCallExecutor public (#7528)
      
      * Fix some weirdness in `offchain_worker` (#7541)
      
      We call `offchain_worker` with the state of the imported block and pass
      the header of this block. However in the runtime we call all
      `offchain_worker` functions with the number of the parent block. Besides
      that we also pass all digests and not only the pre runtime digests. In
      the context where the offchain worker is executed we have all digests, so
      there is no real reason to only pass pre runtime digests. Another fix is
      that we also insert the hash of the current header into the block hash map.
      
      * Use inbound peerslot slots when a substream is received, rather than a connection (#7464)
      
      * Use inbound peerslot slots when a substream is received, rather than a connection
      
      * Refactor PeerState
      
      * Some bugfixes
      
      * Fix warnings so that CI runs, gmlrlblbl
      
      * Bugfixes
      
      * Update docs
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarRoman Borschel <[email protected]>
      
      * Clean up Banned state
      
      * Refactor connections state
      
      * Fix possibility of Enabled with no Opening or Open connection
      
      * Line width
      
      * Add some debug_asserts! and fix TODO
      
      * Refactor legacy handler
      
      * Rewrite group.rs entirely [part 1]
      
      * Rewrite group.rs entirely [part 2]
      
      * Remove faulty assertion
      
      Because of the asynchronous nature of the behaviour <-> handler communications, it is possible to receive notifications while in the Closing state
      
      * Don't poll the legacy substream is not Open
      
      * Tolerate when not all substreams are accepted
      
      * Remove TODOs
      
      * Dummy commit to make CI log interesting things
      
      * Try race condition fix
      
      * Revert "Try race condition fix"
      
      This reverts commit 0675c659.
      
      * Correctly rebuild pending_opening
      
      * Minor tweaks
      
      * Printlns for CI debugging
      
      * Revert "Printlns for CI debugging"
      
      This reverts commit e7852a23.
      
      * Revert "Dummy commit to make CI log interesting things"
      
      This reverts commit 259ddd74
      
      .
      
      * mv group.rs ../handler.rs
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarMax Inden <[email protected]>
      
      * Banned => Backoff
      
      * Mention the actual PeerStates
      
      * OpenDesired -> OpenDesiredByRemote
      
      * OpeningThenClosing
      
      * Add doc links to PeerState
      
      * Simplify increment logic
      
      * One more debug_assert
      
      * debug_assert!
      
      * OpenDesiredByRemote
      
      * Update client/network/src/protocol/generic_proto/behaviour.rs
      
      Co-authored-by: default avatarMax Inden <[email protected]>
      
      Co-authored-by: default avatarRoman Borschel <[email protected]>
      Co-authored-by: default avatarMax Inden <[email protected]>
      
      * *: Update to libp2p v0.30.0 (#7508)
      
      * *: Update to libp2p v0.30.0
      
      * Cargo.lock: Update
      
      * *: Update to libp2p v0.30.1
      
      * make ClientConfig public (#7544)
      
      * sc-basic-authorship: remove useless dependencies (#7550)
      
      Signed-off-by: default avatarkoushiro <[email protected]>
      
      * Add slashing events to elections-phragmen. (#7543)
      
      * Add slashing events to elections-phragmen.
      
      * Fix build
      
      * Apply suggestions from code review
      
      * Update frame/elections-phragmen/src/lib.rs
      
      * Update frame/elections-phragmen/src/lib.rs
      
      Co-authored-by: default avatarGuillaume Thiolliere <[email protected]>
      
      Co-authored-by: default avatarGuillaume Thiolliere <[email protected]>
      
      * Remove necessity to pass ConsensusEngineId when registering notifications protocol (#7549)
      
      * Remove necessity to pass ConsensusEngineId when registering notifications protocol
      
      * Line width
      
      * Fix tests protocol name
      
      * Other renames
      
      * Doc update
      
      * Change issue in TODO
      
      * sc-cli: replace bip39 with tiny-bip39 (#7551)
      
      Signed-off-by: default avatarkoushiro <[email protected]>
      
      * Add extra docs to on_initialize (#7552)
      
      * Add some extra on_initialize docs.
      
      * Address review comments.
      
      * More Extensible Multiaddress Format (#7380)
      
      * More extensible multiaddress format
      
      * update name
      
      * Don't depend on indices to define multiaddress type
      
      * Use MultiAddress in Node Template too!
      
      * reduce traits, fix build
      
      * support multiple `StaticLookup`
      
      * bump tx version
      
      * feedback
      
      * Fix weight template to remove ugliness in rust doc (#7565)
      
      fixed weight template
      
      * Cargo.lock: Run cargo update (#7553)
      
      * Cargo.lock: Run cargo update
      
      * Cargo.lock: Downgrade cc to v1.0.62
      
      * Cargo.lock: Revert wasm-* updates
      
      * .github: Add dependabot config and thus enable dependabot (#7509)
      
      * .github: Add dependabot config and thus enable dependabot
      
      * Update .github/dependabot.yml
      
      Co-authored-by: default avatarPierre Krieger <[email protected]>
      
      Co-authored-by: default avatarPierre Krieger <[email protected]>
      
      * Thread-local parameter_types for testing. (#7542)
      
      * Thread-local parameter_types for testing.
      
      * Better docs.
      
      * Some minors
      
      * Merge'em
      
      * Update frame/support/src/lib.rs
      
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      
      * Align more to basti's trick
      
      * Update frame/support/src/lib.rs
      
      * Update frame/support/src/lib.rs
      
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      
      * Bump wasm-bindgen-test from 0.3.12 to 0.3.17 (#7567)
      
      * Bump wasm-bindgen-test from 0.3.12 to 0.3.17
      
      Bumps [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) from 0.3.12 to 0.3.17.
      - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
      - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/master/CHANGELOG.md)
      - [Commits](https://github.com/rustwasm/wasm-bindgen/commits
      
      )
      
      Signed-off-by: default avatardependabot[bot] <[email protected]>
      
      * Update wasm-bindgen pin to 0.2.68
      
      Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
      Co-authored-by: default avatarPierre Krieger <[email protected]>
      
      * wk2047 | D6 | treasury refactor | review comments fix | p2
      
      * wk2048 | D1 | treasury refactor | review comments fix | p3
      
      * Update bin/node/runtime/src/lib.rs
      
      Co-authored-by: default avatarShawn Tabrizi <[email protected]>
      
      * Update bin/node/runtime/src/lib.rs
      
      Co-authored-by: default avatarShawn Tabrizi <[email protected]>
      
      * wk2048 | D3 | treasury refactor | review comments fix | p4
      
      * wk2048 | D3 | treasury refactor | review comments fix | p5
      
      * wk2048 | D4 | treasury refactor | review comments fix |  removal of deadcode | p6
      
      * remove broken link
      
      * wk2048 | D5 | treasury refactor | review comments fix | bountise doc string | p7
      
      * wk2048 | D5 | treasury refactor | review comments fix | p8
      
      * docs and formatting
      
      * Update frame/tips/src/benchmarking.rs
      
      Co-authored-by: default avatarKian Paimani <[email protected]>
      
      * formatting nits
      
      * Trait -> Config
      
      * trait -> config in benchmarks
      
      * clean up weight docs
      
      * Trait -> Config in Runtime
      
      * fix test build
      
      * try to fix polkadot build check
      
      * fix traits
      
      * Update lib.rs
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarGuillaume Thiolliere <[email protected]>
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarGuillaume Thiolliere <[email protected]>
      
      * fix trait location
      
      * nits
      
      * uncomment on_initialize for bounties benchmarks
      
      * update weights
      
      Co-authored-by: default avatarShawn Tabrizi <[email protected]>
      Co-authored-by: default avatarParity Benchmarking Bot <[email protected]>
      Co-authored-by: default avatarCaio <[email protected]>
      Co-authored-by: default avatarGuillaume Thiolliere <[email protected]>
      Co-authored-by: default avatarAntoine Le Calvez <[email protected]>
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      Co-authored-by: default avatarJon Häggblad <[email protected]>
      Co-authored-by: default avatarWei Tang <[email protected]>
      Co-authored-by: default avatarSergei Shulepov <[email protected]>
      Co-authored-by: default avatarAlexander Theißen <[email protected]>
      Co-authored-by: default avatarAndré Silva <[email protected]>
      Co-authored-by: default avatarPierre Krieger <[email protected]>
      Co-authored-by: default avatarKirill Pimenov <[email protected]>
      Co-authored-by: default avatarAndrew Plaza <[email protected]>
      Co-authored-by: default avatarRoman Borschel <[email protected]>
      Co-authored-by: default avatarMax Inden <[email protected]>
      Co-authored-by: default avatarQinxuan Chen <[email protected]>
      Co-authored-by: default avatarKian Paimani <[email protected]>
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      Co-authored-by: default avatarBastian Köcher <[email protected]>
      Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
      Co-authored-by: default avatarAddie Wagenknecht <[email protected]>
      987a9723
  10. Dec 15, 2020
  11. Dec 14, 2020
  12. Dec 12, 2020
  13. Dec 11, 2020
  14. Dec 10, 2020