Git 2.17-rc1

Signed-off-by: Junio C Hamano <gitster@pobox.com>

Junio C Hamano committed Mar 21, 2018 at 12:02 UTC 085f5f95a2723e8f9f4d037c01db5b786355ba49
2 files changed +33 -1
Documentation/RelNotes/2.17.0.txt
+32
@@ -65,6 +65,11 @@ UI, Workflows & Features
65
66 * Funcname pattern used for C# now recognizes "async" keyword.
67
68 + * In a way similar to how "git tag" learned to honor the pager
69 + setting only in the list mode, "git config" learned to ignore the
70 + pager setting when it is used for setting values (i.e. when the
71 + purpose of the operation is not to "show").
72 +
73
74 Performance, Internal Implementation, Development Support etc.
75
@@ -154,6 +159,9 @@ Performance, Internal Implementation, Development Support etc.
159
160 * Various pieces of Perl code we have have been cleaned up.
161
162 + * Internal API clean-up to allow write_locked_index() optionally skip
163 + writing the in-core index when it is not modified.
164 +
165
166 Also contains various documentation updates and code clean-ups.
167
@@ -326,6 +334,24 @@ Fixes since v2.16
334 * Allow running a couple of tests with "sh -x".
335 (merge c20bf94abc sg/cvs-tests-with-x later to maint).
336
337 + * The codepath to replace an existing entry in the index had a bug in
338 + updating the name hash structure, which has been fixed.
339 + (merge 0e267b7a24 bp/refresh-cache-ent-rehash-fix later to maint).
340 +
341 + * The transfer.fsckobjects configuration tells "git fetch" to
342 + validate the data and connected-ness of objects in the received
343 + pack; the code to perform this check has been taught about the
344 + narrow clone's convention that missing objects that are reachable
345 + from objects in a pack that came from a promissor remote is OK.
346 +
347 + * There was an unused file-scope static variable left in http.c when
348 + building for versions of libCURL that is older than 7.19.4, which
349 + has been fixed.
350 + (merge b8fd6008ec rj/http-code-cleanup later to maint).
351 +
352 + * Shell script portability fix.
353 + (merge 206a6ae013 ml/filter-branch-portability-fix later to maint).
354 +
355 * Other minor doc, test and build updates and code cleanups.
356 (merge e2a5a028c7 bw/oidmap-autoinit later to maint).
357 (merge ec3b4b06f8 cl/t9001-cleanup later to maint).
@@ -364,3 +390,9 @@ Fixes since v2.16
390 (merge 11395a3b4b jc/test-must-be-empty later to maint).
391 (merge 768b9d6db7 mk/doc-pretty-fill later to maint).
392 (merge 2caa7b8d27 ab/man-sec-list later to maint).
393 + (merge 40c17eb184 ks/t3200-typofix later to maint).
394 + (merge bd9958c358 dp/merge-strategy-doc-fix later to maint).
395 + (merge 9ee0540a40 js/ming-strftime later to maint).
396 + (merge 1775e990f7 tz/complete-tag-delete-tagname later to maint).
397 + (merge 00a4b03501 rj/warning-uninitialized-fix later to maint).
398 + (merge b635ed97a0 jk/attributes-path-doc later to maint).
GIT-VERSION-GEN
+1 -1
@@ -1,7 +1,7 @@
1 #!/bin/sh
2
3 GVF=GIT-VERSION-FILE
4 -DEF_VER=v2.17.0-rc0
4 +DEF_VER=v2.17.0-rc1
5
6 LF='
7 '