@@ -79,6 +79,9 @@ Foreign Interface
79
79
80
80
Performance and Internal Implementation (please report possible regressions)
81
81
82
+ * Bash completion script (in contrib/) have been cleaned up to make
83
+ future work on it simpler.
84
+
82
85
* An experimental "version 4" format of the index file has been
83
86
introduced to reduce on-disk footprint and I/O overhead.
84
87
@@ -120,23 +123,26 @@ Unless otherwise noted, all the fixes since v1.7.10 in the maintenance
120
123
releases are contained in this release (see release notes to them for
121
124
details).
122
125
123
- * When a submodule repository uses alternate object store mechanism,
124
- some commands that were started from the superproject did not
125
- notice it and failed with "No such object" errors. The subcommands
126
- of "git submodule" command that properly recursed into the
127
- submodule in a separate process were OK; only the ones that cheated
128
- and peeked directly into the submodule's repository from the
129
- primary process were affected.
130
- (merge 5e73633 hv/submodule-alt-odb later to maint).
131
-
132
- * The directory path used in "git diff --no-index", when it recurses
133
- down, was broken with a recent update after v1.7.10.1 release.
134
- (merge 176a335 bp/diff-no-index-strbuf-fix later to maint).
135
-
136
- * "git status --porcelain" ignored "--branch" option by mistake. The
137
- output for "git status --branch -z" was also incorrect and did not
138
- terminate the record for the current branch name with NUL as asked.
139
- (merge d4a6bf1 jk/maint-status-porcelain-z-b later to maint).
126
+ * The progress indicator for a large "git checkout" was sent to
127
+ stderr even if it is not a terminal.
128
+ (merge e9fc64c ap/checkout-no-progress-for-non-tty later to maint).
129
+
130
+ * A name taken from mailmap was copied into an internal buffer
131
+ incorrectly and could overun the buffer if it is too long.
132
+ (merge c9b4e9e jk/format-person-part-buffer-limit later to maint).
133
+
134
+ * A malformed commit object that has a header line chomped in the
135
+ middle could kill git with a NULL pointer dereference.
136
+ (merge a9c7a8a jk/pretty-commit-header-incomplete-line later to maint).
137
+
138
+ * An author/committer name that is a single character was mishandled
139
+ as an invalid name by mistake.
140
+ (merge d9955fd jk/ident-split-fix later to maint).
141
+
142
+ * "git grep -e '$pattern'", unlike the case where the patterns are
143
+ read from a file, did not treat individual lines in the given
144
+ pattern argument as separate regular expressions as it should.
145
+ (merge ec83061 rs/maint-grep-F later to maint).
140
146
141
147
* "git diff --stat" used to fully count a binary file with modified
142
148
execution bits whose contents is unmodified, which was not quite
0 commit comments