ci(github): also mark up compile errors
[git/debian.git] / Documentation / RelNotes / 2.37.0.txt
blob49082b95f20e889108162f32190f84e640e977d0
1 Git v2.37 Release Notes
2 =======================
4 UI, Workflows & Features
6  * "vimdiff[123]" mergetool drivers have been reimplemented with a
7    more generic layout mechanism.
9  * "git -v" and "git -h" are now understood as "git --version" and
10    "git --help".
12  * The temporary files fed to external diff command are now generated
13    inside a new temporary directory under the same basename.
15  * "git log --since=X" will stop traversal upon seeing a commit that
16    is older than X, but there may be commits behind it that is younger
17    than X when the commit was created with a faulty clock.  A new
18    option is added to keep digging without stopping, and instead
19    filter out commits with timestamp older than X.
22 Performance, Internal Implementation, Development Support etc.
24  * The performance of the "untracked cache" feature has been improved
25    when "--untracked-files=<mode>" and "status.showUntrackedFiles"
26    are combined.
28  * "git stash" works better with sparse index entries.
30  * "git show :<path>" learned to work better with the sparse-index
31    feature.
33  * Introduce and apply coccinelle rule to discourage an explicit
34    comparison between a pointer and NULL, and applies the clean-up to
35    the maintenance track.
37 Fixes since v2.36
38 -----------------
40  * "git submodule update" without pathspec should silently skip an
41    uninitialized submodule, but it started to become noisy by mistake.
42    (merge 4f1ccef87c gc/submodule-update-part2 later to maint).
44  * "diff-tree --stdin" has been broken for about a year, but 2.36
45    release broke it even worse by breaking running the command with
46    <pathspec>, which in turn broke "gitk" and got noticed.  This has
47    been corrected by aligning its behaviour to that of "log".
48    (merge f8781bfda3 jc/diff-tree-stdin-fix later to maint).
50  * Regression fix for 2.36 where "git name-rev" started to sometimes
51    reference strings after they are freed.
52    (merge 45a14f578e rs/name-rev-fix-free-after-use later to maint).
54  * "git show <commit1> <commit2>... -- <pathspec>" lost the pathspec
55    when showing the second and subsequent commits, which has been
56    corrected.
57    (merge 5cdb38458e jc/show-pathspec-fix later to maint).
59  * "git fast-export -- <pathspec>" lost the pathspec when showing the
60    second and subsequent commits, which has been corrected.
61    (merge d1c25272f5 rs/fast-export-pathspec-fix later to maint).
63  * "git format-patch <args> -- <pathspec>" lost the pathspec when
64    showing the second and subsequent commits, which has been
65    corrected.
66    (merge 91f8f7e46f rs/format-patch-pathspec-fix later to maint).
68  * "git clone --origin X" leaked piece of memory that held value read
69    from the clone.defaultRemoteName configuration variable, which has
70    been plugged.
71    (merge 6dfadc8981 jc/clone-remote-name-leak-fix later to maint).
73  * Get rid of a bogus and over-eager coccinelle rule.
74    (merge 08bdd3a185 jc/cocci-xstrdup-or-null-fix later to maint).
76  * The path taken by "git multi-pack-index" command from the end user
77    was compared with path internally prepared by the tool withut first
78    normalizing, which lead to duplicated paths not being noticed,
79    which has been corrected.
80    (merge 11f9e8de3d ds/midx-normalize-pathname-before-comparison later to maint).
82  * Correct choices of C compilers used in various CI jobs.
83    (merge 3506cae04f ab/cc-package-fixes later to maint).
85  * Various cleanups to "git p4".
86    (merge 4ff0108d9e jh/p4-various-fixups later to maint).
88  * The progress meter of "git blame" was showing incorrect numbers
89    when processing only parts of the file.
90    (merge e5f5d7d42e ea/progress-partial-blame later to maint).
92  * "git rebase --keep-base <upstream> <branch-to-rebase>" computed the
93    commit to rebase onto incorrectly, which has been corrected.
94    (merge 9e5ebe9668 ah/rebase-keep-base-fix later to maint).
96  * Fix a leak of FILE * in an error codepath.
97    (merge c0befa0c03 kt/commit-graph-plug-fp-leak-on-error later to maint).
99  * Avoid problems from interaction between malloc_check and address
100    sanitizer.
101    (merge 067109a5e7 pw/test-malloc-with-sanitize-address later to maint).
103  * The commit summary shown after making a commit is matched to what
104    is given in "git status" not to use the break-rewrite heuristics.
105    (merge 84792322ed rs/commit-summary-wo-break-rewrite later to maint).
107  * Update a few end-user facing messages around eol conversion.
108    (merge c970d30c2c ah/convert-warning-message later to maint).
110  * Trace2 documentation updates.
111    (merge a6c80c313c js/trace2-doc-fixes later to maint).
113  * Build procedure fixup.
114    (merge 1fbfd96f50 mg/detect-compiler-in-c-locale later to maint).
116  * "git pull" without "--recurse-submodules=<arg>" made
117    submodule.recurse take precedence over fetch.recurseSubmodules by
118    mistake, which has been corrected.
119    (merge 5819417365 gc/pull-recurse-submodules later to maint).
121  * "git bisect" was too silent before it is ready to start computing
122    the actual bisection, which has been corrected.
123    (merge f11046e6de cd/bisect-messages-from-pre-flight-states later to maint).
125  * macOS CI jobs have been occasionally flaky due to tentative version
126    skew between perforce and the homebrew packager.  Instead of
127    failing the whole CI job, just let it skip the p4 tests when this
128    happens.
129    (merge f15e00b463 cb/ci-make-p4-optional later to maint).
131  * Other code cleanup, docfix, build fix, etc.
132    (merge e6b2582da3 cm/reftable-0-length-memset later to maint).
133    (merge 0b75e5bf22 ab/misc-cleanup later to maint).
134    (merge 52e1ab8a76 ea/rebase-code-simplify later to maint).
135    (merge 756d15923b sg/safe-directory-tests-and-docs later to maint).
136    (merge d097a23bfa ds/do-not-call-bug-on-bad-refs later to maint).
137    (merge c36c27e75c rs/t7812-pcre2-ws-bug-test later to maint).
138    (merge 1da312742d gf/unused-includes later to maint).
139    (merge 465b30a92d pb/submodule-recurse-mode-enum later to maint).
140    (merge 82b28c4ed8 km/t3501-use-test-helpers later to maint).
141    (merge 72315e431b sa/t1011-use-helpers later to maint).
142    (merge 95b3002201 cg/vscode-with-gdb later to maint).
143    (merge fbe5f6b804 tk/p4-utf8-bom later to maint).
144    (merge 17f273ffba tk/p4-with-explicity-sync later to maint).
145    (merge 944db25c60 kf/p4-multiple-remotes later to maint).
146    (merge b014cee8de jc/update-ozlabs-url later to maint).