Skip to content

Commit befc5ed

Browse files
committed
Git 1.7.11-rc0
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 4acf8e8 commit befc5ed

File tree

2 files changed

+24
-18
lines changed

2 files changed

+24
-18
lines changed

Documentation/RelNotes/1.7.11.txt

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@ Foreign Interface
7979

8080
Performance and Internal Implementation (please report possible regressions)
8181

82+
* Bash completion script (in contrib/) have been cleaned up to make
83+
future work on it simpler.
84+
8285
* An experimental "version 4" format of the index file has been
8386
introduced to reduce on-disk footprint and I/O overhead.
8487

@@ -120,23 +123,26 @@ Unless otherwise noted, all the fixes since v1.7.10 in the maintenance
120123
releases are contained in this release (see release notes to them for
121124
details).
122125

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).
140146

141147
* "git diff --stat" used to fully count a binary file with modified
142148
execution bits whose contents is unmodified, which was not quite

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.7.10.GIT
4+
DEF_VER=v1.7.11-rc0
55

66
LF='
77
'

0 commit comments

Comments
 (0)