Skip to content

Commit edc74bc

Browse files
committed
Prepare for 2.14.2
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0f41b92 commit edc74bc

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

Documentation/RelNotes/2.14.2.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
Git v2.14.2 Release Notes
2+
=========================
3+
4+
Fixes since v2.14.1
5+
-------------------
6+
7+
* Because recent Git for Windows do come with a real msgfmt, the
8+
build procedure for git-gui has been updated to use it instead of a
9+
hand-rolled substitute.
10+
11+
* "%C(color name)" in the pretty print format always produced ANSI
12+
color escape codes, which was an early design mistake. They now
13+
honor the configuration (e.g. "color.ui = never") and also tty-ness
14+
of the output medium.
15+
16+
* The http.{sslkey,sslCert} configuration variables are to be
17+
interpreted as a pathname that honors "~[username]/" prefix, but
18+
weren't, which has been fixed.
19+
20+
* Numerous bugs in walking of reflogs via "log -g" and friends have
21+
been fixed.
22+
23+
* "git commit" when seeing an totally empty message said "you did not
24+
edit the message", which is clearly wrong. The message has been
25+
corrected.
26+
27+
* When a directory is not readable, "gitweb" fails to build the
28+
project list. Work this around by skipping such a directory.
29+
30+
* A recently added test for the "credential-cache" helper revealed
31+
that EOF detection done around the time the connection to the cache
32+
daemon is torn down were flaky. This was fixed by reacting to
33+
ECONNRESET and behaving as if we got an EOF.
34+
35+
Also contains various documentation updates and code clean-ups.

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=v2.14.1
4+
DEF_VER=v2.14.2
55

66
LF='
77
'

RelNotes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Documentation/RelNotes/2.14.1.txt
1+
Documentation/RelNotes/2.14.2.txt

0 commit comments

Comments
 (0)