Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add availability-recovery from systematic chunks #1644

Merged
merged 176 commits into from
May 28, 2024

Commits on Sep 8, 2023

  1. Configuration menu
    Copy the full SHA
    051328a View commit details
    Browse the repository at this point in the history
  2. add copright header

    alindima committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    166aae5 View commit details
    Browse the repository at this point in the history
  3. fix clippy

    alindima committed Sep 8, 2023
    Configuration menu
    Copy the full SHA
    518d8fd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dae34a5 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2023

  1. address comments

    alindima committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    640c2d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ac18bab View commit details
    Browse the repository at this point in the history
  3. erasure-coding: add algorithm for systematic recovery

    Signed-off-by: alindima <alin@parity.io>
    alindima committed Sep 12, 2023
    Configuration menu
    Copy the full SHA
    2269f76 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2023

  1. WIP

    alindima committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    dca9ce4 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Sep 13, 2023
    Configuration menu
    Copy the full SHA
    9eeb93a View commit details
    Browse the repository at this point in the history

Commits on Sep 14, 2023

  1. continue implementation

    alindima committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    6f58c3a View commit details
    Browse the repository at this point in the history
  2. Fix some tests

    alindima committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    a805a85 View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    d83bf50 View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into alindima/refactor-a…

    …vailability-recovery-strategies
    alindima committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    2a5d6d5 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2023

  1. replace hashmap of chunks with btreemap

    this avoids sorting the chunks for systematic recovery,
    which is the hotpath we aim to optimise
    alindima committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    f3d407b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    67841bd View commit details
    Browse the repository at this point in the history
  3. some more improvements

    alindima committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    3810eab View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bf39ba0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    34408b5 View commit details
    Browse the repository at this point in the history
  6. modify and add metrics

    alindima committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    b68e671 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2023

  1. more review comments

    alindima committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    1569e49 View commit details
    Browse the repository at this point in the history
  2. fix test

    alindima committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    d5c32d1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cb42bef View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    06f00a2 View commit details
    Browse the repository at this point in the history
  5. av-recovery and av-distr: use relay parent from candidate_receipt

    when querying the runtime api
    alindima committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    2b58895 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2023

  1. Configuration menu
    Copy the full SHA
    f860b7d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b82b2a0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8585628 View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into alindima/refactor-a…

    …vailability-recovery-strategies
    alindima committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    2f9b767 View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'origin/alindima/refactor-availability-r…

    …ecovery-strategies' into alindima/add-systematic-chunks-av-recovery
    alindima committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    824f7e3 View commit details
    Browse the repository at this point in the history
  6. fix tests

    alindima committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    818d9c0 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6b8afcb View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2023

  1. fix clippy

    alindima committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    ce633b4 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    c1a5dbf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0fb256a View commit details
    Browse the repository at this point in the history
  4. fix clippy

    alindima committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    b2c92b3 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2023

  1. add client_features runtime API

    replace the AvChunksShufflingParams with a bitfield that
    enables/disables client-side features.
    This will be useful to coordinate enablement of different
    client features/optimisation in the future.
    alindima committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    3c3371a View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    3d82eb9 View commit details
    Browse the repository at this point in the history
  3. rustfmt

    alindima committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    d57396b View commit details
    Browse the repository at this point in the history
  4. fix test

    alindima committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    0a46a21 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e2ce0cd View commit details
    Browse the repository at this point in the history
  6. try fixing clippy again

    alindima committed Sep 22, 2023
    Configuration menu
    Copy the full SHA
    cc06a71 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2023

  1. fix copy-paste mistake

    alindima committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    a83b178 View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2023

  1. fix metrics and logs

    alindima committed Sep 27, 2023
    Configuration menu
    Copy the full SHA
    6e06d27 View commit details
    Browse the repository at this point in the history
  2. add new shuffling algorithm

    this enables better load distribution within a relay block
    alindima committed Sep 27, 2023
    Configuration menu
    Copy the full SHA
    ce10f68 View commit details
    Browse the repository at this point in the history
  3. add newtype for ChunkIndex

    also switched the type in ChunkFetchingRequest, because
    the Encode/Decode implementations should be identical
    alindima committed Sep 27, 2023
    Configuration menu
    Copy the full SHA
    b3ea7c9 View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Sep 27, 2023
    Configuration menu
    Copy the full SHA
    926bcb0 View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Sep 27, 2023
    Configuration menu
    Copy the full SHA
    6b6e924 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    f28e01e View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2023

  1. Configuration menu
    Copy the full SHA
    21811ef View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    ad43e4a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    67954e6 View commit details
    Browse the repository at this point in the history
  4. use Pallet::current_storage_version()::put() instead of explicitly

    specifying the version on upgrade
    alindima committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    c93985b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    201b09e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    9c51bf2 View commit details
    Browse the repository at this point in the history
  7. add comma

    alindima committed Sep 28, 2023
    Configuration menu
    Copy the full SHA
    fabc044 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    8ee0027 View commit details
    Browse the repository at this point in the history
  2. fix migration test

    alindima committed Oct 3, 2023
    Configuration menu
    Copy the full SHA
    4283214 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    77d5370 View commit details
    Browse the repository at this point in the history
  2. add some more tests

    alindima committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    a9ef2a4 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2023

  1. add more tests and small fix

    alindima committed Oct 11, 2023
    Configuration menu
    Copy the full SHA
    2035f30 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    eef1e14 View commit details
    Browse the repository at this point in the history
  2. bump novelpoly

    alindima committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    fac014c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7a71f0f View commit details
    Browse the repository at this point in the history
  4. improve migrate_to_v10 test

    alindima committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    6973295 View commit details
    Browse the repository at this point in the history
  5. address some review comments

    alindima committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    1af0657 View commit details
    Browse the repository at this point in the history
  6. some more tests

    alindima committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    38e1361 View commit details
    Browse the repository at this point in the history
  7. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Oct 16, 2023
    Configuration menu
    Copy the full SHA
    1d825df View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1318a21 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2023

  1. don't request chunks that past strategies deemed not available

    also add more tests
    alindima committed Oct 18, 2023
    Configuration menu
    Copy the full SHA
    a98cdd6 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2023

  1. more tests

    alindima committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    9dc87ae View commit details
    Browse the repository at this point in the history
  2. fix infinite request loop for network errors.

    Prior to this commit, the regular chunk recovery code (also on master)
    would be stuck in an infinite loop if all validators are not responsive
    or if they all return invalid chunks
    
    Introduces a fix and test.
    alindima committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    c462e25 View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    fc621f9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    716606e View commit details
    Browse the repository at this point in the history
  5. fix clippy

    alindima committed Oct 19, 2023
    Configuration menu
    Copy the full SHA
    c0b1c6c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    862501b View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    91a52fa View commit details
    Browse the repository at this point in the history
  2. use fatality in av-recovery

    alindima committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    8b0d583 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    25ba4fd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    850c0a3 View commit details
    Browse the repository at this point in the history
  5. deduplicate get_block_number

    alindima committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    ab4d8d1 View commit details
    Browse the repository at this point in the history
  6. address some review comments

    alindima committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    d9282ad View commit details
    Browse the repository at this point in the history
  7. more tests

    alindima committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    9deec5f View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Oct 25, 2023
    Configuration menu
    Copy the full SHA
    8494496 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5524385 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Oct 31, 2023
    Configuration menu
    Copy the full SHA
    d2babf7 View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Configuration menu
    Copy the full SHA
    13c4253 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    b8792ff View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Configuration menu
    Copy the full SHA
    81ebaa8 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    ef893c3 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2023

  1. Configuration menu
    Copy the full SHA
    f681e1e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    60f0e79 View commit details
    Browse the repository at this point in the history
  3. fix test compilation

    alindima committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    90fdec8 View commit details
    Browse the repository at this point in the history
  4. add license header

    alindima committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    68ad6a6 View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Nov 8, 2023
    Configuration menu
    Copy the full SHA
    4e22ef7 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    a943f25 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6e34e90 View commit details
    Browse the repository at this point in the history
  3. fix test

    alindima committed Nov 10, 2023
    Configuration menu
    Copy the full SHA
    5feed4a View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    949e732 View commit details
    Browse the repository at this point in the history
  2. add more tests for #2287

    alindima committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    db1225b View commit details
    Browse the repository at this point in the history
  3. add backers as backup for requesting systematic chunks

    each backer will only be used for requesting one chunk, to not overwhelm them
    alindima committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    b4a125b View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Nov 14, 2023
    Configuration menu
    Copy the full SHA
    d151626 View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Nov 20, 2023
    Configuration menu
    Copy the full SHA
    e58a405 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0906bf0 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Dec 12, 2023
    Configuration menu
    Copy the full SHA
    0ed37a8 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    2d0b587 View commit details
    Browse the repository at this point in the history
  2. update lockfile

    alindima committed Dec 19, 2023
    Configuration menu
    Copy the full SHA
    894880b View commit details
    Browse the repository at this point in the history

Commits on Dec 20, 2023

  1. integrate reed-solomon from master git branch

    will be switched to a standalone release before merging
    alindima committed Dec 20, 2023
    Configuration menu
    Copy the full SHA
    fada5d9 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Dec 20, 2023
    Configuration menu
    Copy the full SHA
    145097e View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    4233871 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Adapt code to new design from RFC

    - add CollationFetching new networking req protocol
    - use ValidatorIndex in av-store instead of chunk_index
    - switch to simpler mapping algorithm from RFC
    - code restructuring and refactoring
    - more tests
    alindima committed Jan 17, 2024
    Configuration menu
    Copy the full SHA
    965c139 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. fix av-store tests

    alindima committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    4530caa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1ee008c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    46486db View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Jan 18, 2024
    Configuration menu
    Copy the full SHA
    376619e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    199bc88 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. Configuration menu
    Copy the full SHA
    d923269 View commit details
    Browse the repository at this point in the history
  2. fix clippy

    alindima committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    bc22b81 View commit details
    Browse the repository at this point in the history
  3. fix some backing tests

    alindima committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    3edd33b View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    c9ab410 View commit details
    Browse the repository at this point in the history
  5. random small fixes

    alindima committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    2d2d868 View commit details
    Browse the repository at this point in the history
  6. try fixing zombienet test

    alindima committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    557e410 View commit details
    Browse the repository at this point in the history
  7. add v2 protocol to cumulus

    alindima committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    3df708b View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    e6de96a View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    278028b View commit details
    Browse the repository at this point in the history
  3. fix clippy

    alindima committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    65c8ecf View commit details
    Browse the repository at this point in the history
  4. address some review feedback

    alindima committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    951119e View commit details
    Browse the repository at this point in the history
  5. some more comments

    alindima committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    c94e7d5 View commit details
    Browse the repository at this point in the history
  6. fill prdoc

    alindima committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    e4cbf1d View commit details
    Browse the repository at this point in the history
  7. zombienet tests

    alindima committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    2f21035 View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. try fixing zombienet tests

    alindima committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    33d6162 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    ad975a6 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

  1. update implementer's guide

    alindima committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    eddae38 View commit details
    Browse the repository at this point in the history
  2. markdown format

    alindima committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    c2f0f23 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    9b49d40 View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    8f027fb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    826208f View commit details
    Browse the repository at this point in the history
  3. try fixing zombienet tests

    alindima committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    d25cc1c View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    4e958ba View commit details
    Browse the repository at this point in the history
  5. more zombienet

    alindima committed Feb 9, 2024
    Configuration menu
    Copy the full SHA
    dbc27b3 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. zombienet

    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    6aa3b16 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    bf93b63 View commit details
    Browse the repository at this point in the history
  3. fix yaml formatting

    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    2316316 View commit details
    Browse the repository at this point in the history
  4. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    0c57295 View commit details
    Browse the repository at this point in the history
  5. fix import

    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    df8a096 View commit details
    Browse the repository at this point in the history
  6. fix bench

    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    486cf64 View commit details
    Browse the repository at this point in the history
  7. clippy

    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    70e8840 View commit details
    Browse the repository at this point in the history
  8. fix image name

    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    ee93f68 View commit details
    Browse the repository at this point in the history
  9. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    8a2931c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    7d9e21a View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2024

  1. Configuration menu
    Copy the full SHA
    9000f5c View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Feb 26, 2024
    Configuration menu
    Copy the full SHA
    e2a95c2 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. fix yaml format

    alindima committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    eeab22a View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    e39ea78 View commit details
    Browse the repository at this point in the history
  2. fix merge commit

    alindima committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    a57f5fd View commit details
    Browse the repository at this point in the history
  3. fix bench

    alindima committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    6948ea1 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    91a6180 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    da66e88 View commit details
    Browse the repository at this point in the history
  3. fix zombienet tests

    alindima committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    d20ced9 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2024

  1. Configuration menu
    Copy the full SHA
    3ace495 View commit details
    Browse the repository at this point in the history
  2. add semver to prdoc

    alindima committed May 10, 2024
    Configuration menu
    Copy the full SHA
    78a7959 View commit details
    Browse the repository at this point in the history
  3. try fixing prdoc

    alindima committed May 10, 2024
    Configuration menu
    Copy the full SHA
    da8ca22 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Configuration menu
    Copy the full SHA
    84ca508 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed May 16, 2024
    Configuration menu
    Copy the full SHA
    5dc877e View commit details
    Browse the repository at this point in the history

Commits on May 21, 2024

  1. update lockfile

    alindima committed May 21, 2024
    Configuration menu
    Copy the full SHA
    345d896 View commit details
    Browse the repository at this point in the history
  2. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed May 21, 2024
    Configuration menu
    Copy the full SHA
    01795b0 View commit details
    Browse the repository at this point in the history
  3. unify fatality versions

    alindima committed May 21, 2024
    Configuration menu
    Copy the full SHA
    0ed57f8 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2024

  1. Configuration menu
    Copy the full SHA
    8acc2c1 View commit details
    Browse the repository at this point in the history
  2. more details to prdoc

    alindima committed May 24, 2024
    Configuration menu
    Copy the full SHA
    7ddf494 View commit details
    Browse the repository at this point in the history
  3. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed May 24, 2024
    Configuration menu
    Copy the full SHA
    5bd966f View commit details
    Browse the repository at this point in the history
  4. prdoc fixup

    alindima committed May 24, 2024
    Configuration menu
    Copy the full SHA
    c721152 View commit details
    Browse the repository at this point in the history
  5. fix

    alindima committed May 24, 2024
    Configuration menu
    Copy the full SHA
    6faa1ee View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed May 27, 2024
    Configuration menu
    Copy the full SHA
    25dc880 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5669eec View commit details
    Browse the repository at this point in the history
  3. use higher glutton PoV sizes for tests

    this is needed in order to trigger chunk requests because
    PoVs smaller than 4Mibs will prefer fetching from backers
    alindima committed May 27, 2024
    Configuration menu
    Copy the full SHA
    99f09e3 View commit details
    Browse the repository at this point in the history
  4. bump zombienet version

    pepoviola committed May 27, 2024
    Configuration menu
    Copy the full SHA
    ce08e60 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Merge remote-tracking branch 'origin/master' into alindima/add-system…

    …atic-chunks-av-recovery
    alindima committed May 28, 2024
    Configuration menu
    Copy the full SHA
    fdbc31f View commit details
    Browse the repository at this point in the history