Commits
- Commit:
fb8e08fd0336dfc0bb04096a31ce3e326bf6d1e8
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
fix bogus "reference not found" error from 'got send'
When a reference exists on the server but not locally, 'got send' could
fail to ignore this reference as intended, raising an error instead.
Add a test case for this isssue.
- Commit:
32cda8560bceecc6155bc6011c69e9e9a7c262c0
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
fix a typo in CHANGES, spotted by teajaygray@rap.social
- Commit:
4f1dbb57646800ee4f7eff32dfb0c485b3b27945
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: set next version
- Commit:
da69fe0ae676579b435b0b40011b518a878c6830
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: release 0.105
- Commit:
310e4938778d496fa2c0a1c40a71473cc4ec2843
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
bump version number
- Commit:
1b17bb01f2ad64f2448e73a69dce0e40f93506b8
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
CHANGES for 0.105
- Commit:
a134a611e62c3eab4f349a70ee1815fde02fda46
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
whitespace
- Commit:
ad24f7125f40392151477f227319ba2262d39f8c
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
plug memory leaks in 'got fetch' and 'got send'
In addition to the previous commit [c450903bc2] that plugged fetch and
send leaks, free what would be the path entry's path member, which is
leaked when attempting to add a duplicate. And in the fetch case, free
refname and id when got_pathlist_insert() returns err.
ok stsp@
- Commit:
060e4bc5aff897f77640114eac72635dcd4e4f67
- From:
- Omar Polo <op@omarpolo.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
make gotwebd.css styling consistent across all window sizes
Patch by op@, who is at the wrong computer right now
- Commit:
8e44806733c74485c2f87f9f3b3370d43f0f1e1b
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
slight code simplification, seeing that clear_meta(NULL) is fine
- Commit:
46f2b277e08063e0367378a880286d33f61a9b22
- From:
- Kyle Ackerman <kack@kyleackerman.net>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
plug a memory leak in got_pack_create()
Patch by: Kyle Ackerman
- Commit:
26eea884dfbcf5c11ea6783e71ed280c25932048
- From:
- Bradley Taunt <bt@btxx.org>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
minor gotwebd.css styling changes for some QoL updates on mobile devices
Patch by Bradley Taunt
ok op@
- Commit:
5a6829a24229eb0dfb73fdb62bcc65ea6333ac1b
- From:
- Kyle Ackerman <kack@kyleackerman.net>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
plug memory leaks in 'got fetch' and 'got send'
Check for duplicate items added to pathlists, and free associated data
in case we were attempting to add a duplicate.
Patch by: Kyle Ackerman
- Commit:
4e35f3f5e6cd19658dea0cee4657bf3f209f1e64
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
add a todo item for the 'got send' command
- Commit:
27ae6a548a31420c571ee11d199c7625d0e8d731
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
do not call fmemopen(3) with a zero size argument
Calling fmemopen(3) with a size of zero leads to an "Invalid argument" error.
One symptom of this issue are failing gotd notifications:
gotd[48539]: render notification: fmemopen: Invalid argument
Add an email notification test case which triggers the above error.
Reported by Mischa Peters
- Commit:
daf4cb35f2cef3ba7b74aa8900e9c762e48a32ec
- From:
- Omar Polo <op@omarpolo.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
plug some leak around imsg_init() error paths
tested and ok stsp@
- Commit:
5735c9f6fa945e745aa45bc164ccccb7fddbefca
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
tidy up error handling and reporting in repo_write_dispatch() a bit
ok op@
- Commit:
5d7b9e8954738f88485c70d09f14249ebf444e3d
- From:
- Omar Polo <op@omarpolo.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
plug fd leak on OOM
- Commit:
e23a5f1189bb1c81c7b6b5d2eaa9fcfc0c693fb3
- From:
- Omar Polo <op@omarpolo.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
delete trailing whitespaces
done mechanically with
$ find . -iname \*.[ch] -exec sed -i -E 's/[[:space:]]+$//' {} +
with some revert for bundled files and a manual tweak for got-fetch-http.c
- Commit:
3a8066da0696df5a2907f116bd426ca6a2be7c21
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
regress: got {revert,unstage} -p binary file; ok stsp@
- Commit:
ca2bbf4aed5642675804f7ea566e7626fc88d992
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
don't iterate binary file changes with (un)stage/revert -p
As reported by Johannes Thyssen Tishman, 'got stage -p $binaryfile'
iterates each hunk, and produces unexpected behaviour when answering
'y'. Instead, present the standard "Binary files differ" message and
only allow staging (or unstaging or reverting) the entire binary file.
Includes tests for stage -p but unstage and revert -p tests are still
needed.
tweak + ok stsp@
- Commit:
21615bb29b88b51d50b4e6ba7839751a79c6ae09
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
update EWAH todo item
- Commit:
34475e584aea630b61e819769a6fbae0e26588b6
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
add todo item for ewah bitmaps
- Commit:
28dfdaf275fe68efe88c33a705735910223bd21f
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
use a topological commit graph for the ancestry check in 'got send'
Fixes spurious "branch on server has a different ancestry" errors from
'got send' when the repository history contains merge commits.
- Commit:
c256bb30533620d9a40360677d71dd1de453d38a
- From:
- Omar Polo <op@omarpolo.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
bump version number