Commits
- Commit:
b68e64b1d55c9b06ac807e265083267f655ad65c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
label warnings shown by got-notify-http to avoid misinterpretation as errors
- Commit:
4897e5100fe5816a7d9986d212fded550ab2b62e
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
hide ssh debug output during fetch/send -v, keep showing it at -vv and -vvv
- Commit:
a17c421a8bc09e700ab3035c1c6091ae373daa9d
- From:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd.css: underline only the repo name, not the header too
- Commit:
597b96c6240c282002e9df7818cec05580637667
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fmt
- Commit:
4161c61bc1e300af612f9e887b4e8e3c5d02b5d2
- From:
- Bradley Taunt <bt@btxx.org>
- Via:
- Omar Polo <op@omarpolo.com>
- Date:
gotwebd: fix styling
diff from Bradley Taunt, thank you!
- Commit:
33fc334f899c8aea40a606e250bd06010d094c1b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
grant regress http-server script more time to start up
Otherwise I see spurious test failures on my arm64 builder.
- Commit:
fc967f40a735d6677d3b5d3c68f08ff23f373f30
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix typo in CHANGES
- Commit:
9530fd041d6cad2b6bd30d1e0ae2ea57e557e2b0
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
do not call imsgbuf_clear() before got_privsep_send_error() in helpers
Fixes cosmetic test failures, such as in cmdline/tree.sh.
- Commit:
81a2a66238493b3dd4cb68b5427617b12324797a
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix exit code of got-fetch-pack in case of errors
- Commit:
c3492d10555b6430f054e34e547cddc1baf6d1d6
- From:
- Omar Polo <op@omarpolo.com>
- Date:
bump version number
- Commit:
e9ace9bb970fdc8adf86e50c58320653ad6a14d2
- From:
- Omar Polo <op@omarpolo.com>
- Date:
CHANGES for 0.106
- Commit:
39b18c7c0c3039efb57a18c79cc86e677515b015
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
in gotd, use a polling loop around imsgbuf_write() instead of imsgbuf_flush()
Avoids potential endless loops with non-blocking I/O.
- Commit:
15fbb79b06dceefaebabb71fcd744fe8d47c6a9e
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix wrong function name in error message
- Commit:
fd8decfcec52d58463ceffa5d5298bb49f6b13b2
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
set GOT_NOTIFY_TIMEOUT to a more reasonable value to prevent test failures
- Commit:
d1e848871a89381c9d0e349abddd7339eb7e1551
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
prevent gotd from exiting with pending notifications if client disconnects
- Commit:
37b4ccba4a069ecbe9ee46da8b91850668400ccc
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
connect the notifier only if the session process is writing to the repo
fixes "gotd: unexpected imsg 40" in logs
- Commit:
32fdf3fddec1fabda12ee185d866d1db180cfe7d
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use GOT_NOTIFY_TIMEOUT for both notification helpers
Fixes timeout setting used by http notification helper during tests.
- Commit:
d63901c24a5fd0343f35bab89971bd373bf6748c
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add a missing allow_fdpass(); fixes serving of writes in gotd
- Commit:
faf7fad5925f20b61d71682cd984c40b3043484d
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use imsgbuf_flush instead of imsgbuf_write; fixes end-of-file errors
- Commit:
33c550942db6fa1f76a1581d4bc0d0493aad2fff
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
return an error instead of calling abort()
- Commit:
eae27e22da0f76777f865b7ed519858dd06257d1
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove dangling include statement
- Commit:
fd9f46f196aef97157fc2532b99e727b72ea32b2
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
convert got to new imsg API; build now requires OpenBSD -current
Patch by op@, committing on his behalf and will be adding fixes on top
- Commit:
6f86da294d3b81aba4c403d76e423598958c2100
- From:
- Kyle Ackerman <kack@kyleackerman.net>
- Via:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove got_pathlist_append()
Remove got_pathlist_append(). This leaves got_pathlist_insert() to add
items to a pathlist, making it very easy to swap got_pathlist from a
TAILQ to a RB_TREE.
Patch by Kyle Ackerman
- Commit:
799728f7aeb4842a6458eccfc51df84e5cbc40d0
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
gotwebd: improve performance of repository age calculations
Instead of sorting refs by name and then hunting for the youngest
commits in that list, obtain an appropriately sorted list via
got_ref_cmp_by_commit_timestamp_descending and then pick the first
ref from this list.
And in the case were we already know which ref to check, just open
this ref directly instead of listing all the refs.
Easier to read and should improve performance in both cases.
ok op, jamsek
- Commit:
ece731b025b35fd112ea1faebfabb163b61aacbe
- From:
- Omar Polo <op@omarpolo.com>
- Date:
remove unused imsgbuf
ok jamsek, stsp