Blob


1 * got 0.25; 2020-01-14
2 - fix suspending and resuming tog with Ctrl-Z and fg (reported by naddy@)
3 - fix 'tog tree' usage displayed in error case (patch by naddy@)
4 - support Git-style "lightweight" tags as arguments for 'got diff'
5 - handle Git-style "lightweight" tags in got tag -l
6 - make got and tog accept a --version argument (prompted by tedu@)
7 - add -E option to 'got checkout' allowing use of a non-empty work tree path
8 - make 'tog log PATH' fail when a non-existent path is specified
9 - fix out of bounds access (patch by Martin <openbsd () academicsolutions ! ch>)
10 - fix switching to tog's tree view when logging a path (reported by naddy@)
12 * got 0.24; 2020-01-08
13 - do not open and close pack index files needlessly
14 - fix 'got log' and 'tog log' performance issue when lots of tags exist
15 - do history traversal in got-read-pack to improve 'got blame' performance
16 - plug memory leaks in got-read-commit, got-read-tree, and got-read-pack
17 - fix reading reference deltas with GOT_PACK_NO_MMAP builds
18 - disable got-read-pack's delta cache in GOT_NO_OBJ_CACHE builds
19 - make it possible to run regress tests with packed repositories
20 - more portable string comparison in Makefile.inc (patch by Edgar Pettijohn)
21 - prevent rebase with an out-of-date work tree
22 - make 'got checkout' and 'got update' work with read-only repositories
24 * got 0.23; 2019-12-16
25 - prevent status crawl from racing with paths changing in the filesystem
26 - add -k option to 'got remove' to keep files on disk (Tracey Emery)
27 - add -R option to 'got remove' for recursive deletion (Tracey Emery)
28 - add -I option to 'got add' to disregard ignore patterns (Tracey Emery)
29 - show numeric dates in ISO-8601/xkcd-1179 format in 'tog log' and 'got blame'
31 * got 0.22; 2019-12-01
32 - allow empty diff context context (-C0) in 'got diff' (kn@)
33 - add '-s search-pattern' option to 'got log' (kn@)
34 - forward rebased branch if there are no commits to rebase, instead of error
35 - parse remote repository URLs from gitconfig
36 - actually forbid new reference names with a leading '-', as intended
37 - convert tree entries from SIMPLEQ to an array for better performance
38 - compile static binaries in PROFILE build
40 * got 0.21; 2019-11-25
41 - add -R option to 'got add' for recursive addition (patch by Tracey Emery)
42 - reduce the amount of memcpy() and strdup() while parsing tree entries
43 - fix tog display issue caused by Tab in commit messages; reported by mpi@
44 - cache delta data buffers in an LRU cache to improve performance
45 - add -c option to 'got branch', replacing the optional second argument
47 * got 0.20; 2019-11-09
48 - fix reading pack files larger than 2GB
49 - try not to hide errors from helper programs when got exits
50 - use less empty padding space after author name in 'tog log'
51 - rename 'got init' and 'got import' default branch to "main" (patch by kmos@)
53 * got 0.19; 2019-11-08
54 - add optional colorized display mode to tog
55 - make 'tog log' show abbreviated commit IDs if the window is large enough
56 - fix staging of multiple files with -p
57 - show commit date's century in 'got blame' output (patch by Tracey Emery)
59 * got 0.18; 2019-10-21
60 - always show the input path when realpath(3) returns an error
61 - preserve log message when an error occurs during commit, tag, or import
62 - ignore empty files in refs directory instead of throwing errors
63 - show file mode differences (executable bit) when diffing in-repository trees
64 - fix handling of executable-bit changes during update, commit, and status
65 - improve tog's responsiveness after loading hundreds of thousands of commits
66 - fix tog performance bug which made searching through commits very slow
67 - add 'got integrate' command for merging a branch back to its parent branch
68 - show content from the merge-base file in 3-way merge conflicts, if available
69 - improved indication of 3-way merge inputs in conflict marker labels
70 - handle read errors in got_packidx_init_hdr (found by jj@ with scan-build)
71 - remove worklist code; it was only used to unlink files already unlinked
72 - show bad reference names in error messages to make such errors more clear
73 - add -w (ignore whitespace) option to 'got diff'
74 - improved coding style and error handling in diff3 code
76 * got 0.17; 2019-10-06
77 - make 'got branch' without args show work tree's branch (requested by benno)
78 - show temporary branch in 'got branch -l' during rebase and histedit
79 - refresh references when 'tog log' view is refreshed with Ctrl+L
80 - make 'got status' read .gitignore files; support **/ and /**/ in patterns
81 - handle empty trees during 'import' and 'checkout' (issue reported by sthen)
82 - show only whitelisted commit headers in 'got log' (semarie)
83 - properly handle getline(3) return type as ssize_t (hiltjo)
85 * got 0.16; 2019-09-23
86 - replace fgetln(3) with getline(3) for portability (patch by Steven McDonald)
87 - fix implicit time.h includes (patch by Steven McDonald)
88 - fix tiny memory leaks and other minor bugs found by jj@ with scan-build
89 - fix missing error checks (found by jj@ with scan-build and by Steven McDonald)
90 - avoid a couple of potential NULL derefs (found by jj@ with scan-build)
91 - fix cosmetic display issues involving \n and TABs in tog(1)
93 * got 0.15; 2019-09-08
94 - use author name/email from ~/.gitconfig if GOT_AUTHOR is not set
95 - obtain repo format version and commit author name/email from .git/config
96 - fix line-wrap for lines spanning the terminal in tog diff view
97 - make 'got status' ignore inaccessible directories (reported by semarie)
98 - unstage may need to write to repository; fix unveil(2) call accordingly
99 - fix modified files not shown by 'got status' after committing staged changes
101 * got 0.14; 2019-09-03
102 - fix tag_list test failure on single-day-digit dates (patch by Evan Silberman)
103 - prevent theoretical double-free with non-OpenBSD asprintf (found by jasper@)
104 - fix NULL deref in got_error_from_errno via got_error_uuid (found by jasper@)
105 - make tog release its work tree lock before going into main loop
106 - 'got stage' writes to repository, fix unveil(2) call accordingly
108 * got 0.13; 2019-08-30
109 - fix several possible leaks, use after frees, and NULL derefs (hiltjo)
110 - tog: mbs2ws: fix sizeof of element for memory allocation (hiltjo)
111 - fix deletion of branches stored in packed-refs
112 - fix 'got log path' in a work tree with a path prefix (with Evan Silberman)
114 * got 0.12; 2019-08-26
115 - add support for path arguments to 'got cat'
116 - make 'got log -p path' display patches for the specified path only
117 - allow creating branches based on commit IDs
118 - prevent deletion of the work tree's current branch
119 - detect and ignore Git submodules
120 - indicate non-existent path arguments in 'got status'
121 - make 'got diff' error for non-existent path arguments
122 - make 'got tag -l' list tags by time stamp in descending order
123 - fix reading pack index files with large offsets (patch by Hiltjo Posthuma)
125 * got 0.11; 2019-08-23
126 - add 'got tag' command
127 - add 'got cat' command
128 - support quick cancellation in 'tog blame' view
129 - fix search prompt location in split-screen tog views
131 * got 0.10; 2019-08-21
132 - fix and simplify blame algorithm
134 * got 0.9; 2019-08-19
135 - fix blame bug where lines were annotated with wrong commit
136 - man page spelling fixes (patch by Hiltjo Posthuma)
137 - fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
138 - make 'got revert' ignore unversioned files instead of aborting (semarie@)
139 - fix "last commit cannot be folded" histedit check with reordered commits
141 * got 0.8; 2019-08-16
142 - write tree entries the way git likes it to prevent git index corruption
143 - make 'got blame' show line numbers, dates, and author names
144 - add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default
146 * got 0.7; 2019-08-13
147 - properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
148 - strip Git GPG signatures from log messages
149 - fix regression: don't try to parse "lightweight" tags as real tag objects
151 * got 0.6; 2019-08-13
152 - 'got log' and 'tog log' now display tags in addition to branch references
153 - 'got ref' can now be used to create symbolic references
154 - use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
155 - fix crash if 'got rebase' has no commits to rebase (with semarie@)
156 - annotate symlinks with @ in 'got tree' and 'tog tree'
158 * got 0.5; 2019-08-12
159 - fix blame with single-commit history and with files without \n
160 - fix crashes in tog when blame returns no results on a file (found by otto@)
161 - man page improvements (bentley@)
163 * got 0.4; 2019-08-11
164 - add support for tag objects to 'got diff'
165 - fix tog log -r option (patch by semarie@)
166 - fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
167 - fix getline(3) return value check (patch by Hiltjo Posthuma)
168 - use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
169 - fix spurious failures of test_revert_patch_one_change due to race condition
171 * got 0.3; 2019-08-10
172 - fix bug where 'revert -p' would delete all lines following a reverted change
173 - fix merge bug inherited from OpenRCS, affecting lines with leading .
174 - fix man page installation during manual 'make install' from plain tarball
176 * got 0.2; 2019-08-09
177 - improve error message if helper binaries fail to unveil(2)
178 - add support for tags to -c options of some got commands
179 - attempt to reject GOT_AUTHOR values without an email address because git
180 is unable to parse resulting commit objects
181 - fix build on OpenBSD/sparc64 (gcc)
183 * got 0.1; 2019-08-09
184 initial release; see git repository history for changes up to this point