Skip to content

Commit 085f5f9

Browse files
committed
Git 2.17-rc1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent d16c379 commit 085f5f9

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed

Documentation/RelNotes/2.17.0.txt

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,11 @@ UI, Workflows & Features
6565

6666
* Funcname pattern used for C# now recognizes "async" keyword.
6767

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+
6873

6974
Performance, Internal Implementation, Development Support etc.
7075

@@ -154,6 +159,9 @@ Performance, Internal Implementation, Development Support etc.
154159

155160
* Various pieces of Perl code we have have been cleaned up.
156161

162+
* Internal API clean-up to allow write_locked_index() optionally skip
163+
writing the in-core index when it is not modified.
164+
157165

158166
Also contains various documentation updates and code clean-ups.
159167

@@ -326,6 +334,24 @@ Fixes since v2.16
326334
* Allow running a couple of tests with "sh -x".
327335
(merge c20bf94abc sg/cvs-tests-with-x later to maint).
328336

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+
329355
* Other minor doc, test and build updates and code cleanups.
330356
(merge e2a5a028c7 bw/oidmap-autoinit later to maint).
331357
(merge ec3b4b06f8 cl/t9001-cleanup later to maint).
@@ -364,3 +390,9 @@ Fixes since v2.16
364390
(merge 11395a3b4b jc/test-must-be-empty later to maint).
365391
(merge 768b9d6db7 mk/doc-pretty-fill later to maint).
366392
(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

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.17.0-rc0
4+
DEF_VER=v2.17.0-rc1
55

66
LF='
77
'

0 commit comments

Comments
 (0)