| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | objectstore/loose, receivepack/service, repository: Lint whitespace | 2026-03-22 | 2 | -0/+2 | |
| | | |||||
| * | objectstore/*, repository, receivepack/service: don't take ownership of root | 2026-03-22 | 3 | -15/+7 | |
| | | |||||
| * | objectstore{,/packed}: Document lifetime and integrity behavior | 2026-03-22 | 7 | -16/+33 | |
| | | |||||
| * | objectstore{,/loose}: Document contracts more clearly | 2026-03-22 | 9 | -33/+130 | |
| | | |||||
| * | objectstore: Clarify docs | 2026-03-13 | 1 | -2/+13 | |
| | | |||||
| * | Revert "object/header: Rename from objectheader" | 2026-03-10 | 10 | -26/+26 | |
| | | | | | This reverts commit 85f1212724e037e6934203f04a3f6231ac609503. | ||||
| * | object/header: Rename from objectheader | 2026-03-10 | 10 | -26/+26 | |
| | | |||||
| * | *: format/pack -> packfile; format/delta -> delta; delete format | 2026-03-10 | 10 | -10/+10 | |
| | | |||||
| * | *: Fix lints v0.1.82 | 2026-03-08 | 1 | -1/+1 | |
| | | |||||
| * | *: Fix lints | 2026-03-08 | 1 | -0/+1 | |
| | | |||||
| * | objectstore: Refresh v0.1.80 | 2026-03-08 | 15 | -109/+305 | |
| | | | | | | | * Add manual Refresh for various objectstore's * RefreshPolicy option * Refreshable MRU and atomic snapshotting | ||||
| * | Urgh I made some wrong amends and I'm too tired to separate the commits out ↵ | 2026-03-07 | 15 | -47/+196 | |
| | | | | | | | | | | | | | | this time ancestor: Split out of reachability mergebase: Add merge base routines internal/commitquery: Add commit query context engine thingy internal/peel: Shared tag peeling errors: Shared object query errors internal/testgit: Add rooted repo helpers; remove raw path access objectstore/memory: Add in-memory object store objectid: Add Compare helper | ||||
| * | *: Lint v0.1.68 | 2026-03-06 | 1 | -0/+2 | |
| | | |||||
| * | objectstore: Add notes on a Cursor v0.1.63 | 2026-03-06 | 1 | -0/+6 | |
| | | |||||
| * | objectstore/packed: Split files | 2026-03-06 | 23 | -369/+416 | |
| | | |||||
| * | *: Fix lints | 2026-03-05 | 1 | -1/+1 | |
| | | |||||
| * | internal/compress: Import flate and such from klauspost/compress | 2026-03-05 | 5 | -5/+5 | |
| | | |||||
| * | objectstore/chain: Add an actual chain object store v0.1.45 | 2026-03-04 | 7 | -0/+214 | |
| | | |||||
| * | *: Fix lints v0.1.43 | 2026-03-04 | 1 | -0/+1 | |
| | | |||||
| * | objectstore/packed: Make more tests iterate algorithms | 2026-03-04 | 1 | -10/+12 | |
| | | |||||
| * | objectstore/packed: Split | 2026-03-04 | 4 | -157/+164 | |
| | | |||||
| * | objectstore/loose: Split | 2026-03-04 | 4 | -183/+204 | |
| | | |||||
| * | objectstore/mix: Separate | 2026-03-04 | 8 | -257/+305 | |
| | | |||||
| * | objectstore/mix: Rename from objectstore/chain | 2026-03-04 | 1 | -52/+52 | |
| | | |||||
| * | objectstore/packed: Split | 2026-03-04 | 3 | -142/+151 | |
| | | |||||
| * | *: Lint | 2026-03-04 | 31 | -62/+490 | |
| | | |||||
| * | objectstore/packed: Check pack/idx checksums here. | 2026-03-03 | 2 | -2/+31 | |
| | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
| * | *: Fix the broken comments for overescaping that python script | 2026-02-22 | 2 | -3/+3 | |
| | | |||||
| * | internal/lru: Rename from internal/cache/lru | 2026-02-22 | 1 | -1/+1 | |
| | | |||||
| * | objectstore/chain: Fix lints v0.1.32 | 2026-02-22 | 1 | -59/+59 | |
| | | |||||
| * | objectstore/chain: MRU especially to reduce loose object syscall cost v0.1.31 | 2026-02-22 | 1 | -39/+122 | |
| | | |||||
| * | format/delta/apply, etc.: ReadHeaderSizes should use ByteReader | 2026-02-22 | 1 | -1/+3 | |
| | | |||||
| * | objectstore/packed: Pre-allocate instead of ReadAll | 2026-02-22 | 1 | -10/+17 | |
| | | |||||
| * | objectstore/*, repository: Add ReadSize v0.1.28 | 2026-02-21 | 5 | -0/+88 | |
| | | | | | | For cases where knowing the type is unnecessary and incurs extra overhead. | ||||
| * | objectstore/packed: Don't use full delta reconstruction just to read headers | 2026-02-21 | 5 | -24/+84 | |
| | | |||||
| * | objectstore/packed: Improve delta base caching | 2026-02-21 | 4 | -80/+108 | |
| | | |||||
| * | objectstore/packed: Best-effort touchCandidate | 2026-02-21 | 1 | -1/+4 | |
| | | |||||
| * | objectstore/packed: Optimize pack candidate lookup and locking | 2026-02-21 | 3 | -40/+116 | |
| | | |||||
| * | objectstore/packed: Separate idx candidate lookup vs actually opening it | 2026-02-21 | 2 | -110/+116 | |
| | | |||||
| * | objectstore/packed: Lazily parse idx metadata | 2026-02-21 | 2 | -69/+144 | |
| | | |||||
| * | objectstore/packed: Verify that the index matches the pack | 2026-02-21 | 1 | -0/+33 | |
| | | |||||
| * | objectstore/packed: Use constants/functions from format/pack | 2026-02-21 | 5 | -85/+23 | |
| | | |||||
| * | format/delta/apply: Move core delta apply algorithm here | 2026-02-21 | 2 | -169/+4 | |
| | | |||||
| * | objectstore/{packed,loose}: Use internal zlib v0.1.26 | 2026-02-21 | 5 | -5/+6 | |
| | | |||||
| * | objectstore/packed: Use SplitSeq | 2026-02-21 | 1 | -1/+1 | |
| | | |||||
| * | objectstore/{loose,packed}: Use iolimit v0.1.23 | 2026-02-21 | 4 | -16/+30 | |
| | | |||||
| * | objectstore/loose, repository: Use a Reader-based API v0.1.22 | 2026-02-21 | 4 | -161/+97 | |
| | | |||||
| * | objectstore/packed: Fix ReadHeader to return resolved delta object size v0.1.21 | 2026-02-21 | 1 | -2/+70 | |
| | | |||||
| * | objectstore/packed: Add test for mismatched verify-pick -v size | 2026-02-21 | 1 | -0/+78 | |
| | | |||||
| * | repository, {ref,object}store: Make stores own their roots | 2026-02-21 | 2 | -10/+10 | |
| | | |||||
