Merge branch 'tb/commit-graph-genv2-upgrade-fix' into maint
[git/debian.git] / Documentation / RelNotes / 2.37.2.txt
blob300fb095c46d3dcead89e78d4325753b28715b30
1 Git 2.37.2 Release Notes
2 ========================
4 This primarily is to backport various fixes accumulated on the 'master'
5 front since 2.37.1.
7 Fixes since v2.37.1
8 -------------------
10  * "git shortlog -n" relied on the underlying qsort() to be stable,
11    which shouldn't have.  Fixed.
13  * Variable quoting fix in the vimdiff driver of "git mergetool".
15  * An earlier attempt to plug leaks placed a clean-up label to jump to
16    at a bogus place, which as been corrected.
18  * Fixes a long-standing corner case bug around directory renames in
19    the merge-ort strategy.
21  * Recent update to vimdiff layout code has been made more robust
22    against different end-user vim settings.
24  * In a non-bare repository, the behavior of Git when the
25    core.worktree configuration variable points at a directory that has
26    a repository as its subdirectory, regressed in Git 2.27 days.
28  * References to commands-to-be-typed-literally in "git rebase"
29    documentation mark-up have been corrected.
31  * Give _() markings to fatal/warning/usage: labels that are shown in
32    front of these messages.
34  * "git mktree --missing" lazily fetched objects that are missing from
35    the local object store, which was totally unnecessary for the purpose
36    of creating the tree object(s) from its input.
38  * Fixes for tests when the source directory has unusual characters in
39    its path, e.g. whitespaces, double-quotes, etc.
41  * Adjust technical/bitmap-format to be formatted by AsciiDoc, and
42    add some missing information to the documentation.
44  * Certain diff options are currently ignored when combined-diff is
45    shown; mark them as incompatible with the feature.
47  * "git clone" from a repository with some ref whose HEAD is unborn
48    did not set the HEAD in the resulting repository correctly, which
49    has been corrected.
51  * mkstemp() emulation on Windows has been improved.
53  * Add missing documentation for "include" and "includeIf" features in
54    "git config" file format, which incidentally teaches the command
55    line completion to include them in its offerings.
57  * Avoid "white/black-list" in documentation and code comments.
59  * Workaround for a compiler warning against use of die() in
60    osx-keychain (in contrib/).
62  * Workaround for a false positive compiler warning.
64 Also contains minor documentation updates and code clean-ups.