| Commit message (Expand) | Author | Age | Files | Lines |
| * | README: U+202F, not U+2009 | Runxi Yu | 2026-03-05 | 1 | -4/+4 |
| * | README: lineage | Runxi Yu | 2026-03-05 | 1 | -0/+13 |
| * | README: Clarify benchmarks | Runxi Yu | 2026-03-05 | 1 | -6/+5 |
| * | README: Add benchmark data | Runxi Yu | 2026-03-05 | 1 | -0/+14 |
| * | README: We should have wt/index/merge/co/rebase later | Runxi Yu | 2026-03-04 | 1 | -0/+5 |
| * | README: Compression agility | Runxi Yu | 2026-03-04 | 1 | -0/+1 |
| * | README: More updates v0.1.46 | Runxi Yu | 2026-03-04 | 1 | -6/+16 |
| * | README: Add to-do list | Runxi Yu | 2026-03-04 | 2 | -18/+48 |
| * | objectstore/chain: Add an actual chain object store v0.1.45 | Runxi Yu | 2026-03-04 | 7 | -0/+214 |
| * | *: Add package-level docs v0.1.44 | Runxi Yu | 2026-03-04 | 4 | -0/+6 |
| * | *: Fix lints v0.1.43 | Runxi Yu | 2026-03-04 | 3 | -4/+5 |
| * | Revert "ci: Use latest golangci-lint"•••This reverts commit 19115efe233a3838a5b689de47092cbe8d43339c.
| Runxi Yu | 2026-03-04 | 1 | -3/+5 |
| * | ci: Use latest golangci-lint | Runxi Yu | 2026-03-04 | 1 | -5/+3 |
| * | config: More tests for each algorithm | Runxi Yu | 2026-03-04 | 1 | -94/+118 |
| * | refstore/packed: Make more tests iterate algorithms | Runxi Yu | 2026-03-04 | 1 | -4/+6 |
| * | objectstore/packed: Make more tests iterate algorithms | Runxi Yu | 2026-03-04 | 1 | -10/+12 |
| * | objectid: Make more tests iterate algorithms | Runxi Yu | 2026-03-04 | 1 | -73/+73 |
| * | refstore/reftable: Delete reftable support for now | Runxi Yu | 2026-03-04 | 9 | -1487/+0 |
| * | objectstore/packed: Split | Runxi Yu | 2026-03-04 | 4 | -157/+164 |
| * | objectstore/loose: Split | Runxi Yu | 2026-03-04 | 4 | -183/+204 |
| * | refstore/chain: Split | Runxi Yu | 2026-03-04 | 6 | -156/+175 |
| * | refstore/packed: Split | Runxi Yu | 2026-03-04 | 6 | -104/+124 |
| * | repository: Split | Runxi Yu | 2026-03-04 | 4 | -166/+186 |
| * | objectstore/mix: Separate | Runxi Yu | 2026-03-04 | 8 | -257/+305 |
| * | objectstore/mix: Rename from objectstore/chain | Runxi Yu | 2026-03-04 | 2 | -54/+54 |
| * | objectstore/packed: Split | Runxi Yu | 2026-03-04 | 3 | -142/+151 |
| * | diff/trees: Split | Runxi Yu | 2026-03-04 | 2 | -170/+176 |
| * | zlib: Split files | Runxi Yu | 2026-03-04 | 4 | -135/+159 |
| * | config: Splitting | Runxi Yu | 2026-03-04 | 3 | -638/+654 |
| * | repository: Split open-related functions | Runxi Yu | 2026-03-04 | 2 | -201/+212 |
| * | objectid: File splitting | Runxi Yu | 2026-03-04 | 3 | -131/+139 |
| * | lint: Quick fix | Runxi Yu | 2026-03-04 | 3 | -9/+9 |
| * | ci: apk upgrade | Runxi Yu | 2026-03-04 | 1 | -0/+3 |
| * | *: Lint | Runxi Yu | 2026-03-04 | 129 | -214/+2049 |
| * | *: gofumpt | Runxi Yu | 2026-03-04 | 6 | -11/+11 |
| * | refstore/packed: Use os.Root v0.1.42 | Runxi Yu | 2026-03-03 | 3 | -20/+43 |
| * | reachability: Refactor v0.1.41 | Runxi Yu | 2026-03-03 | 8 | -313/+344 |
| * | config: Fix lints v0.1.40 | Runxi Yu | 2026-03-03 | 1 | -6/+8 |
| * | object, repository: Ignore erroneous new staticcheck | Runxi Yu | 2026-03-03 | 2 | -0/+4 |
| * | reachability: Add basic reachability API | Runxi Yu | 2026-03-03 | 4 | -0/+1193 |
| * | TODO: Looks like receive also needs reachability | Runxi Yu | 2026-03-03 | 1 | -0/+1 |
| * | TODO: What we need before we do the network protocols? | Runxi Yu | 2026-03-03 | 1 | -0/+17 |
| * | objectstore/packed: Check pack/idx checksums here.•••We previously had helpers in format/pack/checksum that checks
.pack/.idx-related checksums with []byte-based APIs. But it only really
makes sense to use those []byte-based APIs on mmap's (otherwise it'd be
horribly inefficient).
Since the packed object-store only needs to check that the .pack and
.idx trailer match, we move the relevant part into objectstore/packed.
The rest are deleted for now; we'll definitely need a streaming version
for the pack verification (when ingesting packfiles from the network)
(though we might just make it a streaming API (writer? reader? not
decided yet) that *produces* a hash, then verify it in the caller; this
way we could reuse the function in the pack-producing routines). The
others might get the []byte-based APIs back, or perhaps they too get
streaming APIs.
Remember that "reading objects from a packed object store",
"creating/writing packfiles", and "ingesting an incoming pack (which
usually involves creating an .idx for it)", are all very different
tasks.
| Runxi Yu | 2026-03-03 | 3 | -110/+31 |
| * | config: Add fuzz, regression tests, and updates v0.1.39 | Runxi Yu | 2026-03-01 | 7 | -63/+565 |
| * | object: Rename ident to signature v0.1.38 | Runxi Yu | 2026-02-22 | 5 | -34/+34 |
| * | *: Fix the broken comments for overescaping that python script | Runxi Yu | 2026-02-22 | 3 | -4/+4 |
| * | show-object: Fix defer v0.1.37 | Runxi Yu | 2026-02-22 | 1 | -5/+13 |
| * | repository: Accept root instead of repopath v0.1.36 | Runxi Yu | 2026-02-22 | 9 | -51/+150 |
| * | internal/lru: Rename from internal/cache/lru | Runxi Yu | 2026-02-22 | 4 | -4/+2 |
| * | adler32: Use binary.BigEndian to avoid the gosec warning v0.1.35 | Runxi Yu | 2026-02-22 | 1 | -2/+1 |