@@ -52,6 +52,9 @@ UI, Workflows & Features
5252
5353 * "git push" learned the "--prune" option, similar to "git fetch".
5454
55+ * "git symbolic-ref" learned the "--short" option to abbreviate the
56+ refname it shows unambiguously.
57+
5558 * "git tag --list" can be given "--points-at <object>" to limit its
5659 output to those that point at the given object.
5760
@@ -64,6 +67,9 @@ UI, Workflows & Features
6467 needed (including the ones that are not necessary for a specific
6568 task).
6669
70+ * Project search in "gitweb" shows the substring that matched in the
71+ project name and description highlighted.
72+
6773Foreign Interface
6874
6975 * Improved handling of views, labels and branches in git-p4 (in contrib).
@@ -112,47 +118,18 @@ Unless otherwise noted, all the fixes since v1.7.9 in the maintenance
112118releases are contained in this release (see release notes to them for
113119details).
114120
115- * "git branch --with $that" assumed incorrectly that the user will never
116- ask the question with nonsense value in $that.
117- (merge 6c41e97 cn/maint-branch-with-bad later to maint).
118-
119- * An invalid regular expression pattern given by an end user made
120- "gitweb" to return garbled response.
121- (merge 36612e4 jn/maint-gitweb-invalid-regexp later to maint).
122-
123- * "git rev-list --verify-objects -q" omitted the extra verification
124- it needs to do over "git rev-list --objects -q" by mistake.
125- (merge 9899372 nd/maint-verify-objects later to maint).
126-
127- * The bulk check-in codepath streamed contents that needs
128- smudge/clean filters without running them, instead of punting and
129- delegating to the codepath to run filters after slurping everything
130- to core.
131- (merge 4f22b10 jk/maint-avoid-streaming-filtered-contents later to maint).
132-
133- * When the filter driver exits before reading the content before the
134- main git process writes the contents to be filtered to the pipe to
135- it, the latter could be killed with SIGPIPE instead of ignoring
136- such an event as an error.
137- (merge 6424c2a jb/filter-ignore-sigpipe later to maint).
138-
139- * When a remote helper exits before reading the blank line from the
140- main git process to signal the end of commands, the latter could be
141- killed with SIGPIPE. Instead we should ignore such event as a
142- non-error.
143- (merge c34fe63 sp/smart-http-failure-to-push later to maint).
144-
145- * "git bundle create" produced a corrupt bundle file upon seeing
146- commits with excessively long subject line.
147- (merge 8a557bb tr/maint-bundle-long-subject later to maint).
121+ * The code to synthesize the fake ancestor tree used by 3-way merge
122+ fallback in "git am" was not prepared to read a patch created with
123+ a non-standard -p<num> value.
124+ (merge a61ba26 jc/am-3-nonstandard-popt later to maint).
148125
149126 * "gitweb" used to drop warnings in the log file when "heads" view is
150127 accessed in a repository whose HEAD does not point at a valid
151128 branch.
152129
153130---
154131exec >/var/tmp/1
155- O=v1.7.9.2-358-g64d1544
132+ O=v1.7.9.2-383-gb8b5290
156133echo O=$(git describe)
157134git log --first-parent --oneline ^maint $O..
158135echo
0 commit comments