Skip to content
  1. Jul 07, 2023
  2. Jul 06, 2023
  3. Jul 05, 2023
    • Marcin S.'s avatar
      PVF: add landlock sandboxing (#7303) · 2b9c4f82
      Marcin S. authored
      
      
      * Begin adding landlock + test
      
      * Move PVF implementer's guide section to own page, document security
      
      * Implement test
      
      * Add some docs
      
      * Do some cleanup
      
      * Fix typo
      
      * Warn on host startup if landlock is not supported
      
      * Clarify docs a bit
      
      * Minor improvements
      
      * Add some docs about determinism
      
      * Address review comments (mainly add warning on landlock error)
      
      * Update node/core/pvf/src/host.rs
      
      Co-authored-by: default avatarAndrei Sandu <[email protected]>
      
      * Update node/core/pvf/src/host.rs
      
      Co-authored-by: default avatarAndrei Sandu <[email protected]>
      
      * Fix unused fn
      
      * Update ABI docs to reflect latest discussions
      
      * Remove outdated notes
      
      * Try to trigger new test-linux-oldkernel-stable job
      
      Job introduced in https://github.com/paritytech/polkadot/pull/7371.
      
      ---------
      
      Co-authored-by: default avatarAndrei Sandu <[email protected]>
      2b9c4f82
    • Bastian Köcher's avatar
      Companion for Substrate#14511 (#7459) · a40417da
      Bastian Köcher authored
      * Companion for Substrate#14511
      
      https://github.com/paritytech/substrate/pull/14511
      
      * Make benchmarking build without any native runtime
      
      * Fix warning
      
      * update lockfile for {"substrate"}
      
      ---------
      
      Co-authored-by: parity-processbot <>
      a40417da
    • joe petrowski's avatar
  4. Jul 04, 2023
  5. Jul 03, 2023
  6. Jul 02, 2023
  7. Jun 30, 2023
  8. Jun 29, 2023
  9. Jun 28, 2023
  10. Jun 27, 2023
  11. Jun 26, 2023
  12. Jun 25, 2023
  13. Jun 23, 2023
  14. Jun 22, 2023
  15. Jun 21, 2023
  16. Jun 20, 2023
  17. Jun 18, 2023
  18. Jun 16, 2023
    • juangirini's avatar
      Companion for Soft deprecate GenesisConfig (#7288) · ced77b3d
      juangirini authored
      * update genesis config
      
      * fix wrong RuntimeGenesisConfig name
      
      * update lockfile for {"substrate"}
      
      ---------
      
      Co-authored-by: parity-processbot <>
      ced77b3d
    • Mira Ressel's avatar
      docs: update references to NetworkConfiguration::extra_sets (#7386) · e7560710
      Mira Ressel authored
      * docs: update references to NetworkConfiguration::extra_sets
      
      Since paritytech/substrate#14080, this struct field no longer exists,
      now the `add_notification_protocol()` function of
      `sc_network::config::FullNetworkConfiguration` is used.
      
      Also neuter the doc links for now; rustdoc can't resolve them
      (presumably because sc_network::config isn't in scope, though weirdly
      enough even spelling the link out as
      ``[`FullNetworkConfiguration`](struct@sc_network::config::FullNetworkConfiguration)``
      doesn't work?). Normally this wouldn't be an issue and rustdoc would
      just not generate links, but rust 1.70 has a bug that completely crashes
      rustdoc in this case.
      e7560710
    • Aaro Altonen's avatar
      Wait peers to connect before doing anything else (#7375) · 134655ee
      Aaro Altonen authored
      There is a race condition in `NetworkBridgeRx` between registering
      incoming peers and handling overseer signals. While the peer connection
      was sent to `NetworkBridgeRx` first, sometimes the peer would be added to
      `validation/collation_peers` with enough delay that the bridge handled
      an overseer signal that was meant do send notifications to the registered
      peer and as the peer was not present in the bridge, the notification was
      never sent and the test would hang.
      
      When peers are registered to `NetworkBridgeRx` using `connect_peer()`,
      wait until they show up in `shared.validation/collation_peers` before
      doing anything else.
      
      Co-authored-by: parity-processbot <>
      134655ee
  19. Jun 15, 2023