Blob


1 * got 0.15; 2019-09-08
2 - use author name/email from ~/.gitconfig if GOT_AUTHOR is not set
3 - obtain repo format version and commit author name/email from .git/config
4 - fix line-wrap for lines spanning the terminal in tog diff view
5 - make 'got status' ignore inaccessible directories (reported by semarie)
6 - unstage may need to write to repository; fix unveil(2) call accordingly
7 - fix modified files not shown by 'got status' after committing staged changes
9 * got 0.14; 2019-09-03
10 - fix tag_list test failure on single-day-digit dates (patch by Evan Silberman)
11 - prevent theoretical double-free with non-OpenBSD asprintf (found by jasper@)
12 - fix NULL deref in got_error_from_errno via got_error_uuid (found by jasper@)
13 - make tog release its work tree lock before going into main loop
14 - 'got stage' writes to repository, fix unveil(2) call accordingly
16 * got 0.13; 2019-08-30
17 - fix several possible leaks, use after frees, and NULL derefs (hiltjo)
18 - tog: mbs2ws: fix sizeof of element for memory allocation (hiltjo)
19 - fix deletion of branches stored in packed-refs
20 - fix 'got log path' in a work tree with a path prefix (with Evan Silberman)
22 * got 0.12; 2019-08-26
23 - add support for path arguments to 'got cat'
24 - make 'got log -p path' display patches for the specified path only
25 - allow creating branches based on commit IDs
26 - prevent deletion of the work tree's current branch
27 - detect and ignore Git submodules
28 - indicate non-existent path arguments in 'got status'
29 - make 'got diff' error for non-existent path arguments
30 - make 'got tag -l' list tags by time stamp in descending order
31 - fix reading pack index files with large offsets (patch by Hiltjo Posthuma)
33 * got 0.11; 2019-08-23
34 - add 'got tag' command
35 - add 'got cat' command
36 - support quick cancellation in 'tog blame' view
37 - fix search prompt location in split-screen tog views
39 * got 0.10; 2019-08-21
40 - fix and simplify blame algorithm
42 * got 0.9; 2019-08-19
43 - fix blame bug where lines were annotated with wrong commit
44 - man page spelling fixes (patch by Hiltjo Posthuma)
45 - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
46 - make 'got revert' ignore unversioned files instead of aborting (semarie@)
47 - fix "last commit cannot be folded" histedit check with reordered commits
49 * got 0.8; 2019-08-16
50 - write tree entries the way git likes it to prevent git index corruption
51 - make 'got blame' show line numbers, dates, and author names
52 - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
54 * got 0.7; 2019-08-13
55 - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
56 - strip Git GPG signatures from log messages
57 - fix regression: don't try to parse "leightweight" tags as real tag objects
59 * got 0.6; 2019-08-13
60 - 'got log' and 'tog log' now display tags in addition to branch references
61 - 'got ref' can now be used to create symbolic references
62 - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
63 - fix crash if 'got rebase' has no commits to rebase (with semarie@)
64 - annotate symlinks with @ in 'got tree' and 'tog tree'
66 * got 0.5; 2019-08-12
67 - fix blame with single-commit history and with files without \n
68 - fix crashes in tog when blame returns no results on a file (found by otto@)
69 - man page improvements (bentley@)
71 * got 0.4; 2019-08-11
72 - add support for tag objects to 'got diff'
73 - fix tog log -r option (patch by semarie@)
74 - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
75 - fix getline(3) return value check (patch by Hiltjo Posthuma)
76 - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
77 - fix spurious failures of test_revert_patch_one_change due to race condition
79 * got 0.3; 2019-08-10
80 - fix bug where 'revert -p' would delete all lines following a reverted change
81 - fix merge bug inherited from OpenRCS, affecting lines with leading .
82 - fix man page installation during manual 'make install' from plain tarball
84 * got 0.2; 2019-08-09
85 - improve error message if helper binaries fail to unveil(2)
86 - add support for tags to -c options of some got commands
87 - attempt to reject GOT_AUTHOR values without an email address because git
88 is unable to parse resulting commit objects
89 - fix build on OpenBSD/sparc64 (gcc)
91 * got 0.1; 2019-08-09
92 initial release; see git repository history for changes up to this point