@@ -67,6 +67,9 @@ UI, Workflows & Features
6767 ref by specifying a raw object name from the command line when the
6868 server side supports this feature.
6969
70+ * Output from "git log --graph" works better with submodule log
71+ output now.
72+
7073 * "git count-objects -v" learned to report leftover temporary
7174 packfiles and other garbage in the object store.
7275
@@ -160,6 +163,28 @@ Unless otherwise noted, all the fixes since v1.8.2 in the maintenance
160163track are contained in this release (see release notes to them for
161164details).
162165
166+ * Perl scripts like "git-svn" closed (not redirecting to /dev/null)
167+ the standard error stream, which is not a very smart thing to do.
168+ Later open may return file descriptor #2 for unrelated purpose, and
169+ error reporting code may write into them.
170+ (merge a749c0b tr/perl-keep-stderr-open later to maint).
171+
172+ * "git show-branch" was not prepared to show a very long run of
173+ ancestor operators e.g. foobar^2~2^2^2^2...^2~4 correctly.
174+ (merge aaa07e3 jk/show-branch-strbuf later to maint).
175+
176+ * "git diff --diff-algorithm algo" is also understood as "git diff
177+ --diff-algorithm=algo".
178+ (merge 0895c6d jk/diff-algo-finishing-touches later to maint).
179+
180+ * The new core.commentchar configuration was not applied to a few
181+ places.
182+ (merge 89c3bbd rt/commentchar-fmt-merge-msg later to maint).
183+
184+ * "git bundle" did not like a bundle created using a commit without
185+ any message as its one of the prerequistes.
186+ (merge 5446e33 lf/bundle-with-tip-wo-message later to maint).
187+
163188 * "git log -S/-G" started paying attention to textconv filter, but
164189 there was no way to disable this. Make it honor --no-textconv
165190 option.
0 commit comments