Skip to content

Commit b994622

Browse files
committed
The eighth batch
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 282ce92 commit b994622

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

Documentation/RelNotes/2.27.0.txt

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,15 @@ UI, Workflows & Features
9999
* The approxidate parser learns to parse seconds with fraction and
100100
ignore fractional part.
101101

102+
* The userdiff patterns for Markdown documents have been added.
103+
104+
* The sparse-checkout patterns have been forbidden from excluding all
105+
paths, leaving an empty working tree, for a long time. This
106+
limitation has been lifted.
107+
108+
* "git restore --staged --worktree" now defaults to take the contents
109+
out of "HEAD", instead of erring out.
110+
102111

103112
Performance, Internal Implementation, Development Support etc.
104113

@@ -372,6 +381,45 @@ Fixes since v2.26
372381
correctly honor the core.sharedRepository settings and some were
373382
left read-write.
374383

384+
* In error messages that "git switch" mentions its option to create a
385+
new branch, "-b/-B" options were shown, where "-c/-C" options
386+
should be, which has been corrected.
387+
(merge 7c16ef7577 dl/switch-c-option-in-error-message later to maint).
388+
389+
* With the recent tightening of the code that is used to parse
390+
various parts of a URL for use in the credential subsystem, a
391+
hand-edited credential-store file causes the credential helper to
392+
die, which is a bit too harsh to the users. Demote the error
393+
behaviour to just ignore and keep using well-formed lines instead.
394+
(merge c03859a665 cb/credential-store-ignore-bogus-lines later to maint).
395+
396+
* The samples in the credential documentation has been updated to
397+
make it clear that we depict what would appear in the .git/config
398+
file, by adding appropriate quotes as needed..
399+
(merge 177681a07e jk/credential-sample-update later to maint).
400+
401+
* "git branch" and other "for-each-ref" variants accepted multiple
402+
--sort=<key> options in the increasing order of precedence, but it
403+
had a few breakages around "--ignore-case" handling, and tie-breaking
404+
with the refname, which have been fixed.
405+
(merge 7c5045fc18 jk/for-each-ref-multi-key-sort-fix later to maint).
406+
407+
* The coding guideline for shell scripts instructed to refer to a
408+
variable with dollar-sign inside arithmetic expansion to work
409+
around a bug in old versions of dash, which is a thing of the past.
410+
Now we are not forbidden from writing $((var+1)).
411+
(merge 32b5fe7f0e jk/arith-expansion-coding-guidelines later to maint).
412+
413+
* The <stdlib.h> header on NetBSD brings in its own definition of
414+
hmac() function (eek), which conflicts with our own and unrelated
415+
function with the same name. Our function has been renamed to work
416+
around the issue.
417+
(merge 3013118eb8 cb/avoid-colliding-with-netbsd-hmac later to maint).
418+
419+
* The basic test did not honor $TEST_SHELL_PATH setting, which has
420+
been corrected.
421+
(merge 0555e4af58 cb/t0000-use-the-configured-shell later to maint).
422+
375423
* Other code cleanup, docfix, build fix, etc.
376424
(merge 564956f358 jc/maintain-doc later to maint).
377425
(merge 7422b2a0a1 sg/commit-slab-clarify-peek later to maint).
@@ -399,3 +447,4 @@ Fixes since v2.26
399447
(merge 4d9378bfad eb/gitweb-more-trailers later to maint).
400448
(merge bdccbf7047 mt/doc-worktree-ref later to maint).
401449
(merge ce9baf234f dl/push-recurse-submodules-fix later to maint).
450+
(merge 4153274052 bc/doc-credential-helper-value later to maint).

0 commit comments

Comments
 (0)