@@ -362,6 +362,31 @@ Performance, Internal Implementation, Development Support etc.
362
362
meant for underlying "git am" has been revamped, which fixed for
363
363
options with parameters that were not passed correctly.
364
364
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
+
365
390
366
391
Fixes since v2.19
367
392
-----------------
@@ -605,6 +630,10 @@ Fixes since v2.19
605
630
been corrected.
606
631
(merge 2c8ee1f53c jk/close-duped-fd-before-unlock-for-bundle later to maint).
607
632
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
+
608
637
* Code cleanup, docfix, build fix, etc.
609
638
(merge 96a7501aad ts/doc-build-manpage-xsl-quietly later to maint).
610
639
(merge b9b07efdb2 tg/conflict-marker-size later to maint).
0 commit comments