Skip to content

Commit bb75be6

Browse files
committed
Prepare for 2.20-rc1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0722553 commit bb75be6

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

Documentation/RelNotes/2.20.0.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -362,6 +362,31 @@ Performance, Internal Implementation, Development Support etc.
362362
meant for underlying "git am" has been revamped, which fixed for
363363
options with parameters that were not passed correctly.
364364

365+
* Our testing framework uses a special i18n "poisoned localization"
366+
feature to find messages that ought to stay constant but are
367+
incorrectly marked to be translated. This feature has been made
368+
into a runtime option (it used to be a compile-time option).
369+
370+
* "git push" used to check ambiguities between object-names and
371+
refnames while processing the list of refs' old and new values,
372+
which was unnecessary (as it knew that it is feeding raw object
373+
names). This has been optimized out.
374+
375+
* The xcurl_off_t() helper function is used to cast size_t to
376+
curl_off_t, but some compilers gave warnings against the code to
377+
ensure the casting is done without wraparound, when size_t is
378+
narrower than curl_off_t. This warning has been squelched.
379+
380+
* Code preparation to replace ulong vars with size_t vars where
381+
appropriate continues.
382+
383+
* The "test installed Git" mode of our test suite has been updated to
384+
work better.
385+
386+
* A coding convention around the Coccinelle semantic patches to have
387+
two classes to ease code migration process has been proposed and
388+
its support has been added to the Makefile.
389+
365390

366391
Fixes since v2.19
367392
-----------------
@@ -605,6 +630,10 @@ Fixes since v2.19
605630
been corrected.
606631
(merge 2c8ee1f53c jk/close-duped-fd-before-unlock-for-bundle later to maint).
607632

633+
* "git format-patch --stat=<width>" can be used to specify the width
634+
used by the diffstat (shown in the cover letter).
635+
(merge 284aeb7e60 nd/format-patch-cover-letter-stat-width later to maint).
636+
608637
* Code cleanup, docfix, build fix, etc.
609638
(merge 96a7501aad ts/doc-build-manpage-xsl-quietly later to maint).
610639
(merge b9b07efdb2 tg/conflict-marker-size later to maint).

0 commit comments

Comments
 (0)