Skip to content

Commit 0313f36

Browse files
committed
The second batch
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0b925a4 commit 0313f36

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

Documentation/RelNotes/2.28.0.txt

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ UI, Workflows & Features
1616
* The commands in the "diff" family learned to honor "diff.relative"
1717
configuration variable.
1818

19+
* The check in "git fsck" to ensure that the tree objects are sorted
20+
still had corner cases it missed unsorted entries.
1921

2022

2123
Performance, Internal Implementation, Development Support etc.
@@ -30,6 +32,17 @@ Performance, Internal Implementation, Development Support etc.
3032
time. Start using -Wno-universal-initializer option to squelch
3133
it (the latest sparse has it on by default).
3234

35+
* "git log -L..." now takes advantage of the "which paths are touched
36+
by this commit?" info stored in the commit-graph system.
37+
38+
* As FreeBSD is not the only platform whose regexp library reports
39+
a REG_ILLSEQ error when fed invalid UTF-8, add logic to detect that
40+
automatically and skip the affected tests.
41+
42+
* "git bugreport" learns to report what shell is in use.
43+
44+
* Support for GIT_CURL_VERBOSE has been rewritten in terms of
45+
GIT_TRACE_CURL.
3346

3447

3548
Fixes since v2.27
@@ -47,6 +60,24 @@ Fixes since v2.27
4760
existing repositories as-is.
4861
(merge d42a2fb72f en/fast-import-looser-date later to maint).
4962

63+
* The command line completion script (in contrib/) tried to complete
64+
"git stash -p" as if it were "git stash push -p", but it was too
65+
aggressive and also affected "git stash show -p", which has been
66+
corrected.
67+
(merge fffd0cf520 vs/complete-stash-show-p-fix later to maint).
68+
69+
* On-the-wire protocol v2 easily falls into a deadlock between the
70+
remote-curl helper and the fetch-pack process when the server side
71+
prematurely throws an error and disconnects. The communication has
72+
been updated to make it more robust.
73+
74+
* "git checkout -p" did not handle a newly added path at all.
75+
(merge 2c8bd8471a js/checkout-p-new-file later to maint).
76+
77+
* The code to parse "git bisect start" command line was lax in
78+
validating the arguments.
79+
(merge 4d9005ff5d cb/bisect-helper-parser-fix later to maint).
80+
5081
* Other code cleanup, docfix, build fix, etc.
5182
(merge 2c31a7aa44 jx/pkt-line-doc-count-fix later to maint).
5283
(merge d63ae31962 cb/t5608-cleanup later to maint).

0 commit comments

Comments
 (0)