summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-06-27 10:00:15 -0700
committerJunio C Hamano <gitster@pobox.com>2016-06-27 10:00:15 -0700
commite1658495beaff4f6fe0aac7bc4d9fdb5ccd81a04 (patch)
treeeecd54c47c6d6c24070cd9567b3ffc219a4aa5b3
parentdeee904aacccfcba5e38f9803799cd2e3a7d62ce (diff)
parent2ff7dff01e620dc87144e076d5bb7e866377df6a (diff)
downloadgit-e1658495beaff4f6fe0aac7bc4d9fdb5ccd81a04.tar.gz
Sync with maint
* maint: Start preparing for 2.9.1
-rw-r--r--Documentation/RelNotes/2.9.1.txt28
1 files changed, 28 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.9.1.txt b/Documentation/RelNotes/2.9.1.txt
new file mode 100644
index 0000000000..ed2bca038b
--- /dev/null
+++ b/Documentation/RelNotes/2.9.1.txt
@@ -0,0 +1,28 @@
+Git v2.9.1 Release Notes
+========================
+
+Fixes since v2.9
+----------------
+
+ * When "git daemon" is run without --[init-]timeout specified, a
+ connection from a client that silently goes offline can hang around
+ for a long time, wasting resources. The socket-level KEEPALIVE has
+ been enabled to allow the OS to notice such failed connections.
+
+ * The commands in `git log` family take %C(auto) in a custom format
+ string. This unconditionally turned the color on, ignoring
+ --no-color or with --color=auto when the output is not connected to
+ a tty; this was corrected to make the format truly behave as
+ "auto".
+
+ * "git rev-list --count" whose walk-length is limited with "-n"
+ option did not work well with the counting optimized to look at the
+ bitmap index.
+
+ * "git show -W" (extend hunks to cover the entire function, delimited
+ by lines that match the "funcname" pattern) used to show the entire
+ file when a change added an entire function at the end of the file,
+ which has been fixed.
+
+
+Also contains minor documentation updates and code clean-ups.