aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* README: More updates v0.1.46Gravatar Runxi Yu2026-03-041-6/+16
* README: Add to-do listGravatar Runxi Yu2026-03-042-18/+48
* objectstore/chain: Add an actual chain object store v0.1.45Gravatar Runxi Yu2026-03-047-0/+214
* *: Add package-level docs v0.1.44Gravatar Runxi Yu2026-03-044-0/+6
* *: Fix lints v0.1.43Gravatar Runxi Yu2026-03-043-4/+5
* Revert "ci: Use latest golangci-lint"•••This reverts commit 19115efe233a3838a5b689de47092cbe8d43339c. Gravatar Runxi Yu2026-03-041-3/+5
* ci: Use latest golangci-lintGravatar Runxi Yu2026-03-041-5/+3
* config: More tests for each algorithmGravatar Runxi Yu2026-03-041-94/+118
* refstore/packed: Make more tests iterate algorithmsGravatar Runxi Yu2026-03-041-4/+6
* objectstore/packed: Make more tests iterate algorithmsGravatar Runxi Yu2026-03-041-10/+12
* objectid: Make more tests iterate algorithmsGravatar Runxi Yu2026-03-041-73/+73
* refstore/reftable: Delete reftable support for nowGravatar Runxi Yu2026-03-049-1487/+0
* objectstore/packed: SplitGravatar Runxi Yu2026-03-044-157/+164
* objectstore/loose: SplitGravatar Runxi Yu2026-03-044-183/+204
* refstore/chain: SplitGravatar Runxi Yu2026-03-046-156/+175
* refstore/packed: SplitGravatar Runxi Yu2026-03-046-104/+124
* repository: SplitGravatar Runxi Yu2026-03-044-166/+186
* objectstore/mix: SeparateGravatar Runxi Yu2026-03-048-257/+305
* objectstore/mix: Rename from objectstore/chainGravatar Runxi Yu2026-03-042-54/+54
* objectstore/packed: SplitGravatar Runxi Yu2026-03-043-142/+151
* diff/trees: SplitGravatar Runxi Yu2026-03-042-170/+176
* zlib: Split filesGravatar Runxi Yu2026-03-044-135/+159
* config: SplittingGravatar Runxi Yu2026-03-043-638/+654
* repository: Split open-related functionsGravatar Runxi Yu2026-03-042-201/+212
* objectid: File splittingGravatar Runxi Yu2026-03-043-131/+139
* lint: Quick fixGravatar Runxi Yu2026-03-043-9/+9
* ci: apk upgradeGravatar Runxi Yu2026-03-041-0/+3
* *: LintGravatar Runxi Yu2026-03-04129-214/+2049
* *: gofumptGravatar Runxi Yu2026-03-046-11/+11
* refstore/packed: Use os.Root v0.1.42Gravatar Runxi Yu2026-03-033-20/+43
* reachability: Refactor v0.1.41Gravatar Runxi Yu2026-03-038-313/+344
* config: Fix lints v0.1.40Gravatar Runxi Yu2026-03-031-6/+8
* object, repository: Ignore erroneous new staticcheckGravatar Runxi Yu2026-03-032-0/+4
* reachability: Add basic reachability APIGravatar Runxi Yu2026-03-034-0/+1193
* TODO: Looks like receive also needs reachabilityGravatar Runxi Yu2026-03-031-0/+1
* TODO: What we need before we do the network protocols?Gravatar Runxi Yu2026-03-031-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. Gravatar Runxi Yu2026-03-033-110/+31
* config: Add fuzz, regression tests, and updates v0.1.39Gravatar Runxi Yu2026-03-017-63/+565
* object: Rename ident to signature v0.1.38Gravatar Runxi Yu2026-02-225-34/+34
* *: Fix the broken comments for overescaping that python scriptGravatar Runxi Yu2026-02-223-4/+4
* show-object: Fix defer v0.1.37Gravatar Runxi Yu2026-02-221-5/+13
* repository: Accept root instead of repopath v0.1.36Gravatar Runxi Yu2026-02-229-51/+150
* internal/lru: Rename from internal/cache/lruGravatar Runxi Yu2026-02-224-4/+2
* adler32: Use binary.BigEndian to avoid the gosec warning v0.1.35Gravatar Runxi Yu2026-02-221-2/+1
* adler32: Fix comment lintGravatar Runxi Yu2026-02-221-1/+1
* adler32: Use adler32_test as the test package nameGravatar Runxi Yu2026-02-221-3/+5
* adler32: Rename constant symbols v0.1.34Gravatar Runxi Yu2026-02-221-15/+9
* adler32: Remove sse3 and arm64/neon•••I can't maintain it Gravatar Runxi Yu2026-02-227-523/+6
* adler32: Use proper instructions for avx2Gravatar Runxi Yu2026-02-221-213/+207
* adler32: Use reasonable label namesGravatar Runxi Yu2026-02-223-72/+72