Blob


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