Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vbatts/tar-split
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5ef0dd8
Choose a base ref
...
head repository: vbatts/tar-split
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1f44cc4
Choose a head ref
  • 8 commits
  • 7 files changed
  • 3 contributors

Commits on Aug 26, 2023

  1. fix: utility typo

    testwill committed Aug 26, 2023
    Configuration menu
    Copy the full SHA
    bd00927 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #69 from testwill/typo

    fix: utility typo
    vbatts authored Aug 26, 2023
    Configuration menu
    Copy the full SHA
    fe4605a View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2024

  1. Add tar/asm.IterateHeaders

    This allows reading the metadata contained in tar-split
    without expensively recreating the whole tar stream
    including full contents.
    
    We have two use cases for this:
    - In a situation where tar-split is distributed along with
      a separate metadata stream, ensuring that the two are
      exactly consistent
    - Reading the tar headers allows making a ~cheap check
      of consistency of on-disk layers, just checking that the
      files exist in expected sizes, without reading the full
      contents.
    
    This can be implemented outside of this repo, but it's
    not ideal:
    - The function necessarily hard-codes some assumptions
      about how tar-split determines the boundaries of
      SegmentType/FileType entries (or, indeed, whether it
      uses FileType entries at all). That's best maintained
      directly beside the code that creates this.
    - The ExpectedPadding() value is not currently exported,
      so the consumer would have to heuristically guess where
      the padding ends.
    
    Signed-off-by: Miloslav Trmač <[email protected]>
    mtrmac committed Sep 11, 2024
    Configuration menu
    Copy the full SHA
    99c8914 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Merge pull request #71 from mtrmac/iterate

    Add tar/asm.IterateHeaders
    vbatts authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    93a41cf View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2024

  1. github: drop go1.17, and add go1.21 & go1.22

    Signed-off-by: Vincent Batts <[email protected]>
    vbatts committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    84c1d45 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #72 from vbatts/go-versions

    github: drop go1.17, and add go1.21 & go1.22
    vbatts authored Sep 27, 2024
    Configuration menu
    Copy the full SHA
    ac25d96 View commit details
    Browse the repository at this point in the history
  3. go*: update modules

    Signed-off-by: Vincent Batts <[email protected]>
    vbatts committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    f39ca64 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #70 from vbatts/update-mods

    Update mods
    vbatts authored Sep 27, 2024
    Configuration menu
    Copy the full SHA
    1f44cc4 View commit details
    Browse the repository at this point in the history
Loading