Blob


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