@@ -189,6 +189,12 @@ Performance, Internal Implementation, Development Support etc.
189
189
expect failures under a limited stack situation. This has been
190
190
fixed.
191
191
192
+ * Many codepaths have been updated to squelch -Wimplicit-fallthrough
193
+ warnings from Gcc 7 (which is a good code hygiene).
194
+
195
+ * Add a helper for DLL loading in anticipation for its need in a
196
+ future topic RSN.
197
+
192
198
193
199
Also contains various documentation updates and code clean-ups.
194
200
@@ -359,6 +365,44 @@ Fixes since v2.14
359
365
alternate object stores overrun the end of the string.
360
366
(merge f0f7bebef7 jk/info-alternates-fix later to maint).
361
367
368
+ * "git describe --match" learned to take multiple patterns in v2.13
369
+ series, but the feature ignored the patterns after the first one
370
+ and did not work at all. This has been fixed.
371
+ (merge da769d2986 jk/describe-omit-some-refs later to maint).
372
+
373
+ * "git filter-branch" cannot reproduce a history with a tag without
374
+ the tagger field, which only ancient versions of Git allowed to be
375
+ created. This has been corrected.
376
+ (merge b2c1ca6b4b ic/fix-filter-branch-to-handle-tag-without-tagger later to maint).
377
+
378
+ * "git cat-file --textconv" started segfaulting recently, which
379
+ has been corrected.
380
+ (merge cc0ea7c9e5 jk/diff-blob later to maint).
381
+
382
+ * The built-in pattern to detect the "function header" for HTML did
383
+ not match <H1>..<H6> elements without any attributes, which has
384
+ been fixed.
385
+ (merge 9c03caca2c ik/userdiff-html-h-element-fix later to maint).
386
+
387
+ * "git mailinfo" was loose in decoding quoted printable and produced
388
+ garbage when the two letters after the equal sign are not
389
+ hexadecimal. This has been fixed.
390
+ (merge c8cf423eab rs/mailinfo-qp-decode-fix later to maint).
391
+
392
+ * The machinery to create xdelta used in pack files received the
393
+ sizes of the data in size_t, but lost the higher bits of them by
394
+ storing them in "unsigned int" during the computation, which is
395
+ fixed.
396
+
397
+ * The delta format used in the packfile cannot reference data at
398
+ offset larger than what can be expressed in 4-byte, but the
399
+ generator for the data failed to make sure the offset does not
400
+ overflow. This has been corrected.
401
+
402
+ * The documentation for '-X<option>' for merges was misleadingly
403
+ written to suggest that "-s theirs" exists, which is not the case.
404
+ (merge c25d98b2a7 jc/merge-x-theirs-docfix later to maint).
405
+
362
406
* Other minor doc, test and build updates and code cleanups.
363
407
(merge f094b89a4d ma/parse-maybe-bool later to maint).
364
408
(merge 39b00fa4d4 jk/drop-sha1-entry-pos later to maint).
@@ -376,3 +420,6 @@ Fixes since v2.14
376
420
(merge f7a32dd97f kd/doc-for-each-ref later to maint).
377
421
(merge be94568bc7 ez/doc-duplicated-words-fix later to maint).
378
422
(merge 01e4be6c3d ks/test-readme-phrasofix later to maint).
423
+ (merge 217bb56d4f hn/typofix later to maint).
424
+ (merge c08fd6388c jk/doc-read-tree-table-asciidoctor-fix later to maint).
425
+ (merge c3342b362e ks/doc-use-camelcase-for-config-name later to maint).
0 commit comments