Commit Briefs

Christian Weisgerber

switch from SIMPLEQ to equivalent STAILQ macros

The singly-linked tail queue macros were added to OpenBSD 6.9 and are more widely available on other systems. ok stsp


Christian Weisgerber

explicitly include <endian.h> for be32toh()





Stefan Sperling

fix imsg header includes in pack_create.c


Stefan Sperling

bump version number


Stefan Sperling

changes for 0.53



Stefan Sperling

sync dist file list







Stefan Sperling

expose got_pack_parse_ref_delta() for library-internal use

This will be needed by a future 'gotadmin listpack' command.


Stefan Sperling

expose got_packidx_get_object_offset() for library-internal use

This will be needed by a future 'gotadmin listpack' command.


Stefan Sperling

fix raw object size sent by got-read-pack




Tracey Emery

fix a leaky ibuf. ok stsp


Stefan Sperling

expose the reflist_insert() helper function as got_reflist_insert()

This will be needed by 'gotadmin pack'.



Stefan Sperling

allow the delta base file to lose its header between deltify_init and deltify

This simplifies pack file creation. A delta base could be read from a loose object, a packfile, or it might be available in a temporary file. All these cases can now be handled the same way. We may need to open, close, and re-open a given delta base multiple times while packing.