Blob


1 * got 0.52; 2021-04-05
2 - fix error checking in dial_ssh()
3 - increase pack index cache size from 16 to 64 to improve performance
4 - fix off-by-one in got_repo_cache_pack() causing the wrong pack to be evicted
5 - cap pack file cache size at 1/8 of the current open file desciptor limit
6 - when reading a pack index byte-swap fields at compile-time where possible
7 - diff: reduce duplicate code (kn)
8 - fix "mandoc -T lint" WARNINGS and ERRORS, add missing word (kn)
9 - fix open file descriptor leak in error path of read_object_header_privsep()
11 * got 0.51; 2021-03-23
12 - deltify.c: explicitly include <endian.h> for be64toh()
13 - rebase/histedit -l: error out if no backups for the requested branch exist
14 - fix use of uninitialized stat buffer during status crawl (found by naddy)
16 * got 0.50; 2021-03-22
17 - use Myers diff instead of Patience diff when merging files with diff3
18 - port file deltification code from git9; a prerequisite for writing pack files
19 - implement raw object data access; another prerequisite for writing pack files
20 - improve got log -x documentation (jrick)
21 - improve got ref -d documentation
22 - fix strftime(3) short buffer checks (jrick)
23 - ensure that old commits remain referenced after rebase and histedit
24 - new got rebase -l option which lists past rebase operations
25 - new got histedit -l option which lists past histedit operations
27 * got 0.49; 2021-02-11
28 - implicitly mark all files in work tree as up-to-date after 'got integrate'
29 - tog: fix behaviour if 'n' is pressed before search is started (found by naddy)
30 - in 'got clone', allow -l together with -q, for consistency with 'got fetch'
31 - add 'got commit -F' option to commit with a log message stored in a file
32 - simplify error message shown when 'got rebase' has nothing to do
33 - tolerate tag objects which lack tagger timestamp information (found by naddy)
34 - got info: fix a pasto in an error message (naddy)
35 - include remote branches in the output of 'got branch -l' (suggested by helg)
37 * got 0.48; 2021-01-22
38 - use POSIX [s1 = s2] syntax instead of [s1 == s2] (patch by Ryo ONODERA)
39 - tog log: terminate author field at '>' in case there is no '@' (naddy)
40 - replace fparseln(3) with getline(3), for better portability (naddy)
41 - make 'got clone' pin the fetched branch in got.conf(5)
42 - allow the 'got fetch' -l option together with the -q option
43 - store branches passed via 'got clone -b' in got.conf(5) and git-config(1)
44 - work around spurious ACK responses from git servers in got-fetch-pack
45 - add a 'fetch-all-branches' configuration setting to got.conf(5)
46 - add a 'reference' directive to remote repositories in got.conf(5)
47 - fix 'got up -c commit path' deleting unrelated files (found by Timo Myyrä)
48 - fix 'tog blame' segfault upon empty input file (found by naddy)
49 - let 'got clone' write gitconfig directives that match the generated got.conf
50 - fix a use after free in got_worktree_close() (naddy)
51 - make fclose(3) failure checks consistent; check 'fclose() == EOF' everywhere
52 - make close(2) failure checks consistent; check 'close() == -1' everywhere
53 - fix missing close(2) error check in got_worktree_close()
55 * got 0.47; 2020-12-27
56 - update got.1 CAVEATS section; prompted by feedback from otto@
57 - fix assignment to wrong pointer in got_ref_dup()
58 - fix performance on repositories with many references (e.g. freebsd src.git):
59 o implement an object ID map for reference lists
60 o use reflist object id maps in got log, tog log, and tog diff (with naddy)
61 o switch reflist to TAILQ; insert elements more efficiently for sorted input
63 * got 0.46; 2020-12-21
64 - reset tog blame view's scroll position if line count shrinks too much (naddy)
65 - replace unprintable characters with '.' before passing them to curses (naddy)
66 - allow editing of log message comments with 'got histedit'
67 - implicitly mark all files in work tree as up-to-date after rebase/histedit
68 - add fd field to got_repository, modify got_packidx_open to use fds (yzhong)
69 - more size_t for loop indices to avoid signedness warnings; by emaste@freebsd
70 - fix path existence check in got_object_tree_path_changed (reported by jrick)
71 - fix parsing of tag objects which lack a tag message; found in u-boot.git repo
72 - do not mix up repos if tog's -r option is used in a work tree (with naddy)
73 - avoid signed vs unsigned comparisons in fetch.c (with millert)
74 - introduce got_custom_error array to support multiple errors in flight
75 - switch to strerror_r(3) in error.c for thread-safety
77 * got 0.45; 2020-12-13
78 - new diff implementation from git.gameoftrees.org/diff.git (with neels)
79 - use Patience diff algorithm with fallback to Myers diff
80 - new blame algorithm which compares commit N-1 to N (with neels)
81 - handle binary files in got/tog diff commands; add -a options to force text
82 - consistently label removed files as "/dev/null" in diff headers
83 - prevent potential fclose(NULL) in error path of diff_blobs()
84 - use size_t for loop indices to avoid signedness warnings (by emaste@freebsd)
85 - in tests, replace echo with printf and stop option processing via "--" (naddy)
86 - fix test failure of test_tree_submodule_of_same_repo for packed repos (yzhong)
87 - add fd to got_worktree, modify got_fileindex_entry_update to use fds (yzhong)
88 - add histedit -f flag for folding shortcut (jrick)
89 - prevent log message loss of folded commits during histedit
90 - tog: plug two memory leaks in draw_file()
91 - tog: show current/total line numbers in diff view header
92 - tog: highlight matched search terms in diff and blame views
93 - tog: call pthread_cond_destroy(cond) just once when closing log view (naddy)
94 - tog: reset diff view's scroll position if diff context shrinks too much
95 - tog: make tog diff accept reference and tag arguments; add -w and -C options
96 - tog: new 'tog ref' subcommand which displays references in the repository
97 - tog: fix entry selection when moving to the parent in tree view (naddy)
98 - tog: fix page-down/page-up scrolling in the tree view (with naddy)
99 - tog: trim redundant parameters from many functions, and tidy up code (naddy)
100 - tog: log view now requests more commits when the window expands (naddy)
101 - tog: call pledge(2) directly in main() instead of per-command
102 - tog: fix bug on FreeBSD where pressing 'q' in a child view caused tog to exit
103 - tog: fix move to next/prev commit in diff view if log is not displayed (naddy)
104 - tog: make ^L in the log view stick to branches/tags selected via -c option
105 - tog: make tree view keep track of branches/tags specified via -c
106 - tog: fix crashes when the log view reloads displayed data
107 - tog: resize events go to child views as well as parent views (found by naddy)
108 - tog: move the tree view's selection cursor up if terminal shrinks too much
109 - tog: fix display of lines that end in "\r\n" (problem found by jrick)
110 - tog: accommodate newer ncurses where panel_userptr() returns const (naddy)
111 - tog: use getline(3) instead of fparseln(3) for better portability
113 * got 0.44; 2020-11-10
114 - detect unknown repository format extensions such as Git's sha256 extension
115 - prevent a NULL dereference if 'got log -p' runs against a root commit
116 - fix permissions mode bits for fetched pack files; patch by Alisdair MacLeod
117 - use fchmod(2) instead of chmod(2) (semarie, naddy)
118 - initialize sb.st_mode after stat(2) failure in got_worktree_resolve_path()
119 - clear staged file type in file index entries whenever staged status is cleared
120 - unlink temporary files in error cases of install_blob()
121 - fix replacing a file with a symlink during merges; problem found by jrick
122 - fix parsing of 'ON' keyword in gotweb parse.y; patch by Martin Vahlensieck
123 - remove unused variable in gotweb.c; patch by Martin Vahlensieck
125 * got 0.43; 2020-10-21
126 - do not treat the -h and -V flags as errors (naddy)
127 - allow regress test data to be stored in locations other than /tmp
128 - unveil repositories read-write when adding tags with 'got tag'
129 - rewrite test argument parsing with the POSIX getopts shell built-in (naddy)
130 - in tests, accommodate ls -l implementations that print "total 0" (naddy)
131 - fix a bug where 'got status' showed an unchanged empty file as changed
132 - handle non-const basename(3) and dirname(3) for POSIX compatibility
133 - properly handle nonexistent remote repository names given to 'got fetch'
135 * got 0.42; 2020-09-30
136 - add "branch" keyword to got.conf which specifies a list of branches to fetch
137 - rework got's commit-time log message modification check
138 - fix potential type mismatches between format specifiers and arguments (naddy)
139 - prefer the BSD extension to reset getopt over the GNU one (naddy)
140 - fix 'bad path' error from 'got clone' by unveiling the repository path again
142 * got 0.41; 2020-09-25
143 - make 'got ref -d' delete both loose and packed representations of the ref
144 - make dangling symbolic references show up in 'got ref -l'
145 - fix handling of slashes in got.conf repository paths (found by naddy)
146 - hide remote HEAD refs in gotweb in order to match got and tog output
147 - make 'got histedit' collapse folded add+delete operations (found by jrick)
148 - fix matching the first object ID listed in a pack index (found by jrick)
149 - let 'got clone' try to connect to server before creating repository contents
150 - fix default branch name written to Git config file by 'got clone'
151 - allow an interrupted 'got clone' to be resumed by 'got fetch'
152 - handle failed connection attempts to git:// servers (patch by jrick)
153 - make gotweb work in subdirectories of the web space (found by uwerler)
155 * got 0.40; 2020-09-21
156 - do not rely on <zlib.h> to pull in <unistd.h> (naddy)
157 - remove unused #includes from the new got-read-gotconfig/parse.y (naddy)
158 - document our default choice of text editor (suggested by Ricky Cintron)
159 - in tests, replace ksh syntax with POSIX arithmetic expressions (naddy)
160 - fix got.conf overriding GOT_AUTHOR even if no author is set in got.conf
161 - in tests, expand arguments in shell script for POSIX compatibility (naddy)
162 - fix crash in got_free_gotconfig()
163 - in cmd_checkout() handle basename(3) modifying its argument for portability
164 - print newline to clear the bottom line when tog exits (naddy)
165 - install got-read-gotconfig into gotweb's chroot environment
167 * got 0.39; 2020-09-14
168 - add -q option to tests for quiet output and use it for 'make regress'
169 - document how to re-create a corrupt or missing file index in got-worktree(5)
170 - fix some memory leaks in tog (tracey)
171 - add workaround for a performance issue when 'tog diff' shows a large diff
172 - add -s option to 'got status' which acts as a status code filter
173 - add -s option to 'got remove' which deletes files in a particular status
174 - plug a memory leak in got_privsep_recv_tree() in error case
175 - in got_object_commit_get_logmsg(), handle log messages which lack '\n'
176 - do not rely on <zlib.h> to pull in <unistd.h> (naddy)
177 - use POSIX standard endian functions and include <endian.h> (naddy)
178 - add got.conf(5) configuration file
179 - use modern POSIX timestamp fields in struct stat (naddy)
180 - use plain write() in place of dprintf() with a pre-formatted string (naddy)
181 - stop including <sys/syslimits.h> directly (naddy)
182 - switch regress function declarations from ksh to POSIX shell syntax (naddy)
184 * got 0.38; 2020-08-02
185 - add support for managing symbolic links under version control
186 - new -S option for 'got commit' and 'got stage' to skip symlink safety checks
187 - add a 'got info' command which displays work tree meta-data
188 - display more context in "no such entry found in tree" error messages
189 - fix spurious 'got cherrypick' error with a path prefix and an empty tree
190 - fix committing file additions from a work tree with a path prefix
191 - fix build error with clang 10 due to missing for-loop block grouping (naddy@)
192 - make 'got log' -R and -P options work in combination
194 * got 0.37; 2020-07-23
195 - cope with directory entries returned from readdir(3) with type DT_UNKNOWN
196 - fix merging with files that do not contain a newline character
197 - heed .{cvs,git}ignore if a path is given on the 'got status' command line
198 - plug memory leak that occurred when files were deleted during checkout/update
199 - add new parse.y code for future use and restructure gotweb's parse.y
200 - fix an error return in gotweb (by Martin Vahlensieck)
201 - document how to use commit messages prepared in a file (by Scott Bennett)
202 - make 'got/tog tree' show symlink targets like 'ls -lF' does: link@ -> target
203 - allow creation of commits which carry unmodified submodule tree entries along
204 - some error, usage, and progress message improvements
206 * got 0.36; 2020-05-05
207 - fix "no such entry found in tree" error with got log -p and an added path
208 - show a list of paths changed in a commit with 'got log -P' and in tog
209 - prevent false positive tree entry differences due to bogus file mode bits
210 - write directory tree entry mode bits in the same way as Git does (0040000)
212 * got 0.35; 2020-04-25
213 - don't pass "-p 22" to ssh; makes ssh_config's Port option work (semarie)
214 - fix a file index corruption problem with 'got rebase' (found by tracey)
215 - fix 'got log -r' loading refs from the wrong repo if invoked in a work tree
216 - filter out "remotes/*/HEAD" references in got/tog log output
218 * got 0.34; 2020-04-19
219 - make use of new convenience API functions of kcgi 0.12 in gotweb
220 - make 'got update' skip conflicted files (prevents loss of local changes)
221 - show a summary of conflicts and related problems after updating/merging files
222 - add 'got log' -x option to stop logging when a specific commit was traversed
223 - add 'got log' -R option to reverse commit display order
224 - clarify wording in got.1 related to local changes/commits/branches
225 - show bad object ID in "object not found" error messages where possible
227 * got 0.33; 2020-04-14
228 - normalize tree entry modes to 0100644 or 0100755 when writing tree objects
229 - fix "searching..." displayed in tog log view while merely scrolling down
230 - in got.1, clarify how 'got update' deals with local (aka uncommitted) changes
232 * got 0.32; 2020-03-28
233 - be nice to unaware users who attempt to use got commands in a Git work tree
234 - show 'searching...' during 'tog log' search even if no new commits are loaded
235 - display "no matches found" if no commit matches a 'tog log' search
236 - display "no more matches" if 'tog log' search cannot find any more matches
237 - make 'tog log' consistently scroll a page upon page-down key (found by naddy)
238 - make 'got fetch' create or restore remote HEAD reference if it is missing
239 - make 'got fetch -d' delete branches from both refs/heads and refs/remotes
241 * got 0.31; 2020-03-25
242 - take status line into account during page up/down in 'tog log' (naddy)
243 - make 'got tree' use the current branch if invoked in a work tree (tracey)
244 - compute pack file's checksum during download and check it in got-fetch-pack
245 - make got-index-pack compute and verify the pack file's checksum as well
246 - stop verifying pack file checksum in the main process during clone/fetch
247 - fix bogus 'reference HEAD not found' error (reported by Matthias aka _xhr_)
248 - make 'got clone' create refs/remotes/origin/HEAD, as 'git clone' does
249 - make 'got fetch' handle updates to refs/remotes/*/HEAD
251 * got 0.30; 2020-03-22
252 - add support for git and git+ssh network protocols (patch by ori@)
253 - add 'got clone' and 'got fetch' commands
254 - don't error out if rebase sees no merged paths; elide the commit instead
255 - prevent 'got commit' from committing empty sub-directories (found by tracey)
256 - allow limiting the output of 'got ref -l' to a single ref or a namespace
257 - add -c option to 'got ref' which now expects just one argument after options
258 - plug a memory leak in got-read-pack
259 - remove 'Next' link from tags on gotweb summary page if no tags exist (tracey)
261 * got 0.29; 2020-03-06
262 - trim directories in got remove -R (tracey)
263 - prevent commits from being listed more than once in a histedit script
264 - fix histedit 'rebase commit ID mismatch' error when splitting a commit
265 - be helpful when users try to check out work trees without a known branch
266 - map 'tog path' to 'tog log path' if possible (requested by mpi)
267 - when "bad path" errors occur always show the path in question
268 - show merged commit ID upon merge conflict during rebase and histedit
270 * got 0.28; 2020-02-25
271 - improve man page documentation of rebase and histedit
272 - disallow 'got rebase' while a histedit operation is in progress
273 - switch 'got tag' commit argument to a new -c option
274 - let 'got branch' switch and update the work tree
275 - improve documentation of -r flags in tog man page (naddy)
276 - add 'got histedit -m' option which makes it easy to edit log messages
277 - switch 'tog diff' repository path argument to a new -r option (naddy)
278 - fix 'tog diff object1 object2' when run inside a work tree (naddy)
279 - document semantics of got log and tog log path arguments
280 - add ^B/^F key bindings (page up/down) to 'tog blame' and 'tog tree' (naddy)
281 - disable compiler warnings in release builds to avoid -Werror build breakage
283 * got 0.27; 2020-02-21
284 - fix gotweb build with -O2 on sparc64 (tracey; reported by kmos)
285 - add next/prev navigation to gotweb commit briefs and commits pages (tracey)
286 - add new gotweb tags page and ability to navigate all tags (tracey)
287 - ensure gotweb's libexec helpers inherit build flags from parent directories
288 - allow 'got ref' to manipulate refs which do not have a slash in their name
289 - add an optional path argument to 'tog tree'
290 - fix misplaced tog search prompt in split-screen views
292 * got 0.26; 2020-02-17
293 - initial release of gotweb(8), a repository server for web browsers (tracey)
294 - fix a segfault in 'got backout' (tracey, reported by semarie)
295 - switch 'tog tree' repository path argument to a new -r option
296 - fix 'got blame' and 'tog blame' on files added on worktree's current branch
297 - enable searching in tog diff view with the '/' key (tracey)
298 - ignore EROFS during checkout for repositories on read-only filesystems
299 - do not open log message editor if there are no changes during 'histedit -c'
300 - display branch name and first commit to be edited at top of histedit script
301 - fix bug where 'got revert -R' failed on added subtrees
302 - fix bug where 'got log PATH' failed to map PATH into the repository
303 - make 'tog log' show linear history by default; add -b option and B key
304 - make 'got log' show linear history by default; remove -f and add -b option
305 - do not display unversioned files during 'got revert -R'
306 - tweak default colors for directories and symlinks in 'tog tree'
307 - sleep for one nanosecond after syncing the file index to disk
308 - fix 'tog log -c' with tags
310 * got 0.25; 2020-01-14
311 - fix suspending and resuming tog with Ctrl-Z and fg (reported by naddy@)
312 - fix 'tog tree' usage displayed in error case (patch by naddy@)
313 - support Git-style "lightweight" tags as arguments for 'got diff'
314 - handle Git-style "lightweight" tags in got tag -l
315 - make got and tog accept a --version argument (prompted by tedu@)
316 - add -E option to 'got checkout' allowing use of a non-empty work tree path
317 - make 'tog log PATH' fail when a non-existent path is specified
318 - fix out of bounds access (patch by Martin <openbsd () academicsolutions ! ch>)
319 - fix switching to tog's tree view when logging a path (reported by naddy@)
321 * got 0.24; 2020-01-08
322 - do not open and close pack index files needlessly
323 - fix 'got log' and 'tog log' performance issue when lots of tags exist
324 - do history traversal in got-read-pack to improve 'got blame' performance
325 - plug memory leaks in got-read-commit, got-read-tree, and got-read-pack
326 - fix reading reference deltas with GOT_PACK_NO_MMAP builds
327 - disable got-read-pack's delta cache in GOT_NO_OBJ_CACHE builds
328 - make it possible to run regress tests with packed repositories
329 - more portable string comparison in Makefile.inc (patch by Edgar Pettijohn)
330 - prevent rebase with an out-of-date work tree
331 - make 'got checkout' and 'got update' work with read-only repositories
333 * got 0.23; 2019-12-16
334 - prevent status crawl from racing with paths changing in the filesystem
335 - add -k option to 'got remove' to keep files on disk (Tracey Emery)
336 - add -R option to 'got remove' for recursive deletion (Tracey Emery)
337 - add -I option to 'got add' to disregard ignore patterns (Tracey Emery)
338 - show numeric dates in ISO-8601/xkcd-1179 format in 'tog log' and 'got blame'
340 * got 0.22; 2019-12-01
341 - allow empty diff context context (-C0) in 'got diff' (kn@)
342 - add '-s search-pattern' option to 'got log' (kn@)
343 - forward rebased branch if there are no commits to rebase, instead of error
344 - parse remote repository URLs from gitconfig
345 - actually forbid new reference names with a leading '-', as intended
346 - convert tree entries from SIMPLEQ to an array for better performance
347 - compile static binaries in PROFILE build
349 * got 0.21; 2019-11-25
350 - add -R option to 'got add' for recursive addition (patch by Tracey Emery)
351 - reduce the amount of memcpy() and strdup() while parsing tree entries
352 - fix tog display issue caused by Tab in commit messages; reported by mpi@
353 - cache delta data buffers in an LRU cache to improve performance
354 - add -c option to 'got branch', replacing the optional second argument
356 * got 0.20; 2019-11-09
357 - fix reading pack files larger than 2GB
358 - try not to hide errors from helper programs when got exits
359 - use less empty padding space after author name in 'tog log'
360 - rename 'got init' and 'got import' default branch to "main" (patch by kmos@)
362 * got 0.19; 2019-11-08
363 - add optional colorized display mode to tog
364 - make 'tog log' show abbreviated commit IDs if the window is large enough
365 - fix staging of multiple files with -p
366 - show commit date's century in 'got blame' output (patch by Tracey Emery)
368 * got 0.18; 2019-10-21
369 - always show the input path when realpath(3) returns an error
370 - preserve log message when an error occurs during commit, tag, or import
371 - ignore empty files in refs directory instead of throwing errors
372 - show file mode differences (executable bit) when diffing in-repository trees
373 - fix handling of executable-bit changes during update, commit, and status
374 - improve tog's responsiveness after loading hundreds of thousands of commits
375 - fix tog performance bug which made searching through commits very slow
376 - add 'got integrate' command for merging a branch back to its parent branch
377 - show content from the merge-base file in 3-way merge conflicts, if available
378 - improved indication of 3-way merge inputs in conflict marker labels
379 - handle read errors in got_packidx_init_hdr (found by jj@ with scan-build)
380 - remove worklist code; it was only used to unlink files already unlinked
381 - show bad reference names in error messages to make such errors more clear
382 - add -w (ignore whitespace) option to 'got diff'
383 - improved coding style and error handling in diff3 code
385 * got 0.17; 2019-10-06
386 - make 'got branch' without args show work tree's branch (requested by benno)
387 - show temporary branch in 'got branch -l' during rebase and histedit
388 - refresh references when 'tog log' view is refreshed with Ctrl+L
389 - make 'got status' read .gitignore files; support **/ and /**/ in patterns
390 - handle empty trees during 'import' and 'checkout' (issue reported by sthen)
391 - show only whitelisted commit headers in 'got log' (semarie)
392 - properly handle getline(3) return type as ssize_t (hiltjo)
394 * got 0.16; 2019-09-23
395 - replace fgetln(3) with getline(3) for portability (patch by Steven McDonald)
396 - fix implicit time.h includes (patch by Steven McDonald)
397 - fix tiny memory leaks and other minor bugs found by jj@ with scan-build
398 - fix missing error checks (found by jj@ with scan-build and by Steven McDonald)
399 - avoid a couple of potential NULL derefs (found by jj@ with scan-build)
400 - fix cosmetic display issues involving \n and TABs in tog(1)
402 * got 0.15; 2019-09-08
403 - use author name/email from ~/.gitconfig if GOT_AUTHOR is not set
404 - obtain repo format version and commit author name/email from .git/config
405 - fix line-wrap for lines spanning the terminal in tog diff view
406 - make 'got status' ignore inaccessible directories (reported by semarie)
407 - unstage may need to write to repository; fix unveil(2) call accordingly
408 - fix modified files not shown by 'got status' after committing staged changes
410 * got 0.14; 2019-09-03
411 - fix tag_list test failure on single-day-digit dates (patch by Evan Silberman)
412 - prevent theoretical double-free with non-OpenBSD asprintf (found by jasper@)
413 - fix NULL deref in got_error_from_errno via got_error_uuid (found by jasper@)
414 - make tog release its work tree lock before going into main loop
415 - 'got stage' writes to repository, fix unveil(2) call accordingly
417 * got 0.13; 2019-08-30
418 - fix several possible leaks, use after frees, and NULL derefs (hiltjo)
419 - tog: mbs2ws: fix sizeof of element for memory allocation (hiltjo)
420 - fix deletion of branches stored in packed-refs
421 - fix 'got log path' in a work tree with a path prefix (with Evan Silberman)
423 * got 0.12; 2019-08-26
424 - add support for path arguments to 'got cat'
425 - make 'got log -p path' display patches for the specified path only
426 - allow creating branches based on commit IDs
427 - prevent deletion of the work tree's current branch
428 - detect and ignore Git submodules
429 - indicate non-existent path arguments in 'got status'
430 - make 'got diff' error for non-existent path arguments
431 - make 'got tag -l' list tags by time stamp in descending order
432 - fix reading pack index files with large offsets (patch by Hiltjo Posthuma)
434 * got 0.11; 2019-08-23
435 - add 'got tag' command
436 - add 'got cat' command
437 - support quick cancellation in 'tog blame' view
438 - fix search prompt location in split-screen tog views
440 * got 0.10; 2019-08-21
441 - fix and simplify blame algorithm
443 * got 0.9; 2019-08-19
444 - fix blame bug where lines were annotated with wrong commit
445 - man page spelling fixes (patch by Hiltjo Posthuma)
446 - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
447 - make 'got revert' ignore unversioned files instead of aborting (semarie@)
448 - fix "last commit cannot be folded" histedit check with reordered commits
450 * got 0.8; 2019-08-16
451 - write tree entries the way git likes it to prevent git index corruption
452 - make 'got blame' show line numbers, dates, and author names
453 - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
455 * got 0.7; 2019-08-13
456 - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
457 - strip Git GPG signatures from log messages
458 - fix regression: don't try to parse "lightweight" tags as real tag objects
460 * got 0.6; 2019-08-13
461 - 'got log' and 'tog log' now display tags in addition to branch references
462 - 'got ref' can now be used to create symbolic references
463 - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
464 - fix crash if 'got rebase' has no commits to rebase (with semarie@)
465 - annotate symlinks with @ in 'got tree' and 'tog tree'
467 * got 0.5; 2019-08-12
468 - fix blame with single-commit history and with files without \n
469 - fix crashes in tog when blame returns no results on a file (found by otto@)
470 - man page improvements (bentley@)
472 * got 0.4; 2019-08-11
473 - add support for tag objects to 'got diff'
474 - fix tog log -r option (patch by semarie@)
475 - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
476 - fix getline(3) return value check (patch by Hiltjo Posthuma)
477 - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
478 - fix spurious failures of test_revert_patch_one_change due to race condition
480 * got 0.3; 2019-08-10
481 - fix bug where 'revert -p' would delete all lines following a reverted change
482 - fix merge bug inherited from OpenRCS, affecting lines with leading .
483 - fix man page installation during manual 'make install' from plain tarball
485 * got 0.2; 2019-08-09
486 - improve error message if helper binaries fail to unveil(2)
487 - add support for tags to -c options of some got commands
488 - attempt to reject GOT_AUTHOR values without an email address because git
489 is unable to parse resulting commit objects
490 - fix build on OpenBSD/sparc64 (gcc)
492 * got 0.1; 2019-08-09
493 initial release; see git repository history for changes up to this point