Commits


add support for first-parent history traversal to got-read-pack


add copyright year for files already touched in 2020


rename to parsed_tree_entries_free for clarity (don't use with got_tree_object)


plug a memory leak; parsed tree entries were not freed


reduce the amount of memcpy() and strdup() while parsing tree entries


cache delta data buffers in an LRU cache


stop storing decompressed delta data in struct got_delta; fetch it on demand


include <limits.h> instead of <sys/limits.h>; patch by Thomas Klausner


don't leak objects which can't be cached


remove unused include in got-read-pack


fix some leaks in got-read-pack


make got-read-pack actually use its object cache


rename got_error_prefix_errno() to got_error_from_errno()


while (1) -> for (;;)


got_error_from_errno -> got_error_prefix_errno also add got_error_prefix_errno2 and got_error_prefix_errno3 which should hopefully all be merged into a single function with variadic args (but can't alloc mem)


check for errors from close(2)


check for errors from fclose()


add missing error check in got-raed-pack's tag_request()


happy new copyright year


got_pack_get_object_size() -> got_pack_get_max_delta_object_size()


pass smallish blobs directly via imsg buffer


eliminate got_object_open() round-trip when opening blobs


eliminate got_object_open() round-trip when opening tags


eliminate got_object_open() round-trip when opening trees


there's no point in embedding the object header in commits