Blob


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