Skip to content

Commit 228f531

Browse files
committed
The second batch
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 6c630f2 commit 228f531

File tree

1 file changed

+87
-0
lines changed

1 file changed

+87
-0
lines changed

Documentation/RelNotes/2.25.0.txt

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,16 @@ UI, Workflows & Features
2929
placeholder that is similar to e/E that fills in the e-mail
3030
address, but only the local part on the left side of '@'.
3131

32+
* Documentation pages for "git shortlog" now list commit limiting
33+
options explicitly.
34+
35+
* The patterns to detect function boundary for Elixir language has
36+
been added.
37+
38+
* The completion script (in contrib/) learned that the "--onto"
39+
option of "git rebase" can take its argument as the value of the
40+
option.
41+
3242

3343
Performance, Internal Implementation, Development Support etc.
3444

@@ -39,6 +49,23 @@ Performance, Internal Implementation, Development Support etc.
3949

4050
* Test updates to prepare for SHA-2 transition continues.
4151

52+
* Crufty code and logic accumulated over time around the object
53+
parsing and low-level object access used in "git fsck" have been
54+
cleaned up.
55+
56+
* The implementation of "git log --graph" got refactored and then its
57+
output got simplified.
58+
59+
* Follow recent push to move API docs from Documentation/ to header
60+
files and update config.h
61+
62+
* "git bundle" has been taught to use the parse options API. "git
63+
bundle verify" learned "--quiet" and "git bundle create" learned
64+
options to control the progress output.
65+
66+
* Handling of commit objects that use non UTF-8 encoding during
67+
"rebase -i" has been improved.
68+
4269

4370
Fixes since v2.24
4471
-----------------
@@ -63,6 +90,66 @@ Fixes since v2.24
6390
mistakenly removed paths that are outside the area of interest.
6491
(merge 4a58c3d7f7 js/update-index-ignore-removal-for-skip-worktree later to maint).
6592

93+
* "git rev-parse --git-path HEAD.lock" did not give the right path
94+
when run in a secondary worktree.
95+
(merge 76a53d640f js/git-path-head-dot-lock-fix later to maint).
96+
97+
* "git merge --no-commit" needs "--no-ff" if you do not want to move
98+
HEAD, which has been corrected in the manual page for "git bisect".
99+
(merge 8dd327b246 ma/bisect-doc-sample-update later to maint).
100+
101+
* "git worktree add" internally calls "reset --hard" that should not
102+
descend into submodules, even when submodule.recurse configuration
103+
is set, but it was affected. This has been corrected.
104+
(merge 4782cf2ab6 pb/no-recursive-reset-hard-in-worktree-add later to maint).
105+
106+
* Messages from die() etc. can be mixed up from multiple processes
107+
without even line buffering on Windows, which has been worked
108+
around.
109+
(merge 116d1fa6c6 js/vreportf-wo-buffering later to maint).
110+
111+
* HTTP transport had possible allocator/deallocator mismatch, which
112+
has been corrected.
113+
114+
* The watchman integration for fsmonitor was racy, which has been
115+
corrected to be more conservative.
116+
(merge dd0b61f577 kw/fsmonitor-watchman-fix later to maint).
117+
118+
* Fetching from multiple remotes into the same repository in parallel
119+
had a bad interaction with the recent change to (optionally) update
120+
the commit-graph after a fetch job finishes, as these parallel
121+
fetches compete with each other. Which has been corrected.
122+
123+
* Recent update to "git stash pop" made the command empty the index
124+
when run with the "--quiet" option, which has been corrected.
125+
126+
* "git fetch" codepath had a big "do not lazily fetch missing objects
127+
when I ask if something exists" switch. This has been corrected by
128+
marking the "does this thing exist?" calls with "if not please do not
129+
lazily fetch it" flag.
130+
131+
* Test update to avoid wasted cycles.
132+
(merge e0316695ec sg/skip-skipped-prereq later to maint).
133+
134+
* Error handling after "git push" finishes sending the packdata and
135+
waits for the response to the remote side has been improved.
136+
(merge ad7a403268 jk/send-pack-remote-failure later to maint).
137+
138+
* Some codepaths in "gitweb" that forgot to escape URLs generated
139+
based on end-user input have been corrected.
140+
(merge a376e37b2c jk/gitweb-anti-xss later to maint).
141+
66142
* Other code cleanup, docfix, build fix, etc.
67143
(merge 80736d7c5e jc/am-show-current-patch-docfix later to maint).
68144
(merge 8b656572ca sg/commit-graph-usage-fix later to maint).
145+
(merge 6c02042139 mr/clone-dir-exists-to-path-exists later to maint).
146+
(merge 44ae131e38 sg/blame-indent-heuristics-is-now-the-default later to maint).
147+
(merge 0115e5d929 dl/doc-diff-no-index-implies-exit-code later to maint).
148+
(merge 270de6acbe en/t6024-style later to maint).
149+
(merge 14c4776d75 ns/test-desc-typofix later to maint).
150+
(merge 68d40f30c4 dj/typofix-merge-strat later to maint).
151+
(merge f66e0401ab jk/optim-in-pack-idx-conversion later to maint).
152+
(merge 169bed7421 rs/parse-options-dup-null-fix later to maint).
153+
(merge 51bd6be32d rs/use-copy-array-in-mingw-shell-command-preparation later to maint).
154+
(merge b018719927 ma/t7004 later to maint).
155+
(merge 932757b0cc ar/install-doc-update-cmds-needing-the-shell later to maint).

0 commit comments

Comments
 (0)