@@ -57,6 +57,31 @@ UI, Workflows & Features
57
57
* "git fetch --jobs=0" used to hit a BUG(), which has been corrected
58
58
to use the available CPUs.
59
59
60
+ * An invalid label or ref in the "rebase -i" todo file used to
61
+ trigger an runtime error. SUch an error is now diagnosed while the
62
+ todo file is parsed.
63
+
64
+ * The "diff" drivers specified by the "diff" attribute attached to
65
+ paths can now specify which algorithm (e.g. histogram) to use.
66
+
67
+ * "git range-diff" learned --abbrev=<num> option.
68
+
69
+ * "git archive HEAD^{tree}" records the paths with the current
70
+ timestamp in the archive, making it harder to obtain a stable
71
+ output. The command learned the --mtime option to specify an
72
+ arbitrary timestamp (e.g. --mtime="@0 +0000" for the epoch).
73
+
74
+ * The credential subsystem learned that a password may have an
75
+ explicit expiration.
76
+
77
+ * The format.attach configuration variable lacked a way to override a
78
+ value defined in a lower-priority configuration file (e.g. the
79
+ system one) by redefining it in a higher-priority configuration
80
+ file. Now, setting format.attach to an empty string means show the
81
+ patch inline in the e-mail message, without using MIME attachment.
82
+
83
+ This is a backward incompatible change.
84
+
60
85
61
86
Performance, Internal Implementation, Development Support etc.
62
87
@@ -251,6 +276,11 @@ Fixes since v2.39
251
276
xwrite() wrapper appropriately.
252
277
(merge 58eab6ff13 jc/genzeros-avoid-raw-write later to maint).
253
278
279
+ * sscanf(3) used in "git symbolic-ref --short" implementation found
280
+ to be not working reliably on macOS in UTF-8 locales. Rewrite the
281
+ code to avoid sscanf() altogether to work it around.
282
+ (merge 613bef56b8 jk/shorten-unambiguous-ref-wo-sscanf later to maint).
283
+
254
284
* Other code cleanup, docfix, build fix, etc.
255
285
(merge 4eb1ccecd4 dh/mingw-ownership-check-typofix later to maint).
256
286
(merge f95526419b ar/typofix-gitattributes-doc later to maint).
@@ -278,3 +308,4 @@ Fixes since v2.39
278
308
(merge 3eb1e1ca9a ab/config-h-remove-unused later to maint).
279
309
(merge d390e08076 cw/doc-pushurl-vs-url later to maint).
280
310
(merge 567342fc77 rs/ctype-test later to maint).
311
+ (merge d35d8f2e7a ap/t2015-style-update later to maint).
0 commit comments