Skip to content

Commit 98164e9

Browse files
committed
The first batch in 2.32 cycle
Signed-off-by: Junio C Hamano <[email protected]>
1 parent ef486a9 commit 98164e9

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

Documentation/RelNotes/2.32.0.txt

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
Git 2.32 Release Notes
2+
======================
3+
4+
Updates since v2.32
5+
-------------------
6+
7+
Backward incompatible and other important changes
8+
9+
10+
UI, Workflows & Features
11+
12+
13+
Performance, Internal Implementation, Development Support etc.
14+
15+
16+
Fixes since v2.31
17+
-----------------
18+
19+
* The fsmonitor interface read from its input without making sure
20+
there is something to read from. This bug is new in 2.31
21+
timeframe.
22+
(merge 097ea2c848 jh/fsmonitor-prework later to maint).
23+
24+
* The data structure used by fsmonitor interface was not properly
25+
duplicated during an in-core merge, leading to use-after-free etc.
26+
(merge 4abc57848d js/fsmonitor-unpack-fix later to maint).
27+
28+
* "git bisect" reimplemented more in C during 2.30 timeframe did not
29+
take an annotated tag as a good/bad endpoint well. This regression
30+
has been corrected.
31+
(merge 7730f85594 jk/bisect-peel-tag-fix later to maint).
32+
33+
* Fix macros that can silently inject unintended null-statements.
34+
(merge 116affac3f rs/avoid-null-statement-after-macro-call later to maint).
35+
36+
* CALLOC_ARRAY() macro replaces many uses of xcalloc().
37+
(merge 1c57cc70ec rs/calloc-array later to maint).
38+
39+
* Update insn in Makefile comments to run fuzz-all target.
40+
(merge 68b5c3aa48 ah/make-fuzz-all-doc-update later to maint).
41+
42+
* Fix a corner case bug in "git mv" on case insensitive systems,
43+
which was introduced in 2.29 timeframe.
44+
(merge 93c3d297b5 tb/git-mv-icase-fix later to maint).
45+
46+
* Other code cleanup, docfix, build fix, etc.
47+
(merge 486f4bd183 jc/calloc-fix later to maint).
48+
(merge 5f70859c15 jt/clone-unborn-head later to maint).
49+
(merge cfd409ed09 km/config-doc-typofix later to maint).
50+
(merge 8588aa8657 jk/slimmed-down later to maint).
51+
(merge 241b5d3ebe rs/xcalloc-takes-nelem-first later to maint).

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v2.31.0
4+
DEF_VER=v2.31.GIT
55

66
LF='
77
'

RelNotes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Documentation/RelNotes/2.31.0.txt
1+
Documentation/RelNotes/2.32.0.txt

0 commit comments

Comments
 (0)