Skip to content

Commit db29e6b

Browse files
committed
Sync with 'maint'
2 parents b715529 + 7d8dc5a commit db29e6b

File tree

2 files changed

+47
-19
lines changed

2 files changed

+47
-19
lines changed

Documentation/RelNotes/2.38.2.txt

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
Git 2.38.2 Release Notes
2+
========================
3+
4+
This is to backport various fixes accumulated during the development
5+
towards Git 2.39, the next feature release.
6+
7+
8+
Fixes since v2.38.1
9+
-------------------
10+
11+
* Update CodingGuidelines to clarify what features to use and avoid
12+
in C99.
13+
14+
* The codepath that reads from the index v4 had unaligned memory
15+
accesses, which has been corrected.
16+
17+
* "git remote rename" failed to rename a remote without fetch
18+
refspec, which has been corrected.
19+
20+
* "git clone" did not like to see the "--bare" and the "--origin"
21+
options used together without a good reason.
22+
23+
* Fix messages incorrectly marked for translation.
24+
25+
* "git fsck" failed to release contents of tree objects already used
26+
from the memory, which has been fixed.
27+
28+
* "git rebase -i" can mistakenly attempt to apply a fixup to a commit
29+
itself, which has been corrected.
30+
31+
* In read-only repositories, "git merge-tree" tried to come up with a
32+
merge result tree object, which it failed (which is not wrong) and
33+
led to a segfault (which is bad), which has been corrected.
34+
35+
* Force C locale while running tests around httpd to make sure we can
36+
find expected error messages in the log.
37+
38+
* Fix a logic in "mailinfo -b" that miscomputed the length of a
39+
substring, which lead to an out-of-bounds access.
40+
41+
* The codepath to sign learned to report errors when it fails to read
42+
from "ssh-keygen".
43+
44+
* "GIT_EDITOR=: git branch --edit-description" resulted in failure,
45+
which has been corrected.
46+
47+
Also contains various documentation updates and code clean-ups.

Documentation/RelNotes/2.39.0.txt

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ Performance, Internal Implementation, Development Support etc.
4545

4646
* Update CodingGuidelines to clarify what features to use and avoid
4747
in C99.
48-
(merge 438c2f859b ab/coding-guidelines-c99 later to maint).
4948

5049
* Avoid false-positive from LSan whose assumption may be broken with
5150
higher optimization levels.
@@ -58,30 +57,24 @@ Fixes since v2.38
5857

5958
* The codepath that reads from the index v4 had unaligned memory
6059
accesses, which has been corrected.
61-
(merge 4a6ed30f96 vd/fix-unaligned-read-index-v4 later to maint).
6260

6361
* Fix messages incorrectly marked for translation.
64-
(merge 02cb8b9ee3 ah/fsmonitor-daemon-usage-non-l10n later to maint).
6562

6663
* "git fsck" failed to release contents of tree objects already used
6764
from the memory, which has been fixed.
68-
(merge 51b27747e5 jk/fsck-on-diet later to maint).
6965

7066
* "git clone" did not like to see the "--bare" and the "--origin"
7167
options used together without a good reason.
72-
(merge 3b910d6e29 jk/clone-allow-bare-and-o-together later to maint).
7368

7469
* "git remote rename" failed to rename a remote without fetch
7570
refspec, which has been corrected.
76-
(merge 5a97b38109 jk/remote-rename-without-fetch-refspec later to maint).
7771

7872
* Documentation on various Boolean GIT_* environment variables have
7973
been clarified.
8074
(merge 819fb68222 jc/environ-docs later to maint).
8175

8276
* "git rebase -i" can mistakenly attempt to apply a fixup to a commit
8377
itself, which has been corrected.
84-
(merge 3e367a5f2f ja/rebase-i-avoid-amending-self later to maint).
8578

8679
* "git multi-pack-index repack/expire" used to repack unreachable
8780
cruft into a new pack, which have been corrected.
@@ -90,26 +83,20 @@ Fixes since v2.38
9083
* In read-only repositories, "git merge-tree" tried to come up with a
9184
merge result tree object, which it failed (which is not wrong) and
9285
led to a segfault (which is bad), which has been corrected.
93-
(merge 92481d1b26 js/merge-ort-in-read-only-repo later to maint).
9486

9587
* Force C locale while running tests around httpd to make sure we can
9688
find expected error messages in the log.
97-
(merge 7a2d8ea47e rs/test-httpd-in-C-locale later to maint).
9889

9990
* Fix a logic in "mailinfo -b" that miscomputed the length of a
10091
substring, which lead to an out-of-bounds access.
101-
(merge 3ef1494685 pw/mailinfo-b-fix later to maint).
10292

10393
* The codepath to sign learned to report errors when it fails to read
10494
from "ssh-keygen".
105-
(merge 36fb0d07d8 pw/ssh-sign-report-errors later to maint).
10695

10796
* Code clean-up that results in plugging a leak.
108-
(merge 246526d019 rs/bisect-start-leakfix later to maint).
10997

11098
* "GIT_EDITOR=: git branch --edit-description" resulted in failure,
11199
which has been corrected.
112-
(merge e288b3de35 jc/branch-description-unset later to maint).
113100

114101
* The code to clean temporary object directories (used for
115102
quarantine) tried to remove them inside its signal handler, which
@@ -151,15 +138,9 @@ Fixes since v2.38
151138

152139
* Other code cleanup, docfix, build fix, etc.
153140
(merge c34a6bd291 so/diff-merges-cleanup later to maint).
154-
(merge 5e7c8b75e7 ab/test-malloc-with-sanitize-leak later to maint).
155141
(merge 2a905f8fa8 ah/branch-autosetupmerge-grammofix later to maint).
156142
(merge abcac2e19f rj/ref-filter-get-head-description-leakfix later to maint).
157143
(merge 71e5473493 hn/parse-worktree-ref later to maint).
158-
(merge 7190b7ebf9 ds/bundle-uri-docfix later to maint).
159-
(merge 45350aeb11 jk/sequencer-missing-author-name-check later to maint).
160-
(merge edbf9a2e20 nb/doc-mergetool-typofix later to maint).
161-
(merge b004c90282 rs/gc-pack-refs-simplify later to maint).
162-
(merge 69c5f17f11 jk/cleanup-callback-parameters later to maint).
163144
(merge 7c07f36ad2 ab/unused-annotation later to maint).
164145
(merge f7669676d0 rs/use-fspathncmp later to maint).
165146
(merge a677d3c416 pw/remove-rebase-p-test later to maint).

0 commit comments

Comments
 (0)