First batch after Git 2.23
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committed
Aug 22, 2019 at 12:41 UTC
745f6812895b31c02b29bdfe4ae8e5498f776c26
3 files changed
+54
-2
Documentation/RelNotes/2.24.0.txt
new
+52
@@ -0,0 +1,52 @@
1
+Git 2.24 Release Notes
2
+======================
3
+
4
+Updates since v2.23
5
+-------------------
6
+
7
+Backward compatibility note
8
+
9
+ * (no entry yet so far)
10
+
11
+
12
+UI, Workflows & Features
13
+
14
+ * (no entry yet so far)
15
+
16
+
17
+Performance, Internal Implementation, Development Support etc.
18
+
19
+ * The code to write commit-graph over given commit object names has
20
+ been made a bit more robust.
21
+
22
+ * The first line of verbose output from each test piece now carries
23
+ the test name and number to help scanning with eyeballs.
24
+
25
+
26
+Fixes since v2.23
27
+-----------------
28
+
29
+ * "git grep --recurse-submodules" that looks at the working tree
30
+ files looked at the contents in the index in submodules, instead of
31
+ files in the working tree.
32
+ (merge 6a289d45c0 mt/grep-submodules-working-tree later to maint).
33
+
34
+ * Codepaths to walk tree objects have been audited for integer
35
+ overflows and hardened.
36
+ (merge 5aa02f9868 jk/tree-walk-overflow later to maint).
37
+
38
+ * "git pack-refs" can lose refs that are created while running, which
39
+ is getting corrected.
40
+ (merge a613d4f817 sc/pack-refs-deletion-racefix later to maint).
41
+
42
+ * "git checkout" and "git restore" to re-populate the index from a
43
+ tree-ish (typically HEAD) did not work correctly for a path that
44
+ was removed and then added again with the intent-to-add bit, when
45
+ the corresponding working tree file was empty. This has been
46
+ corrected.
47
+
48
+ * Compilation fix.
49
+ (merge 70597e8386 rs/nedalloc-fixlets later to maint).
50
+
51
+ * Other code cleanup, docfix, build fix, etc.
52
+ (merge d1387d3895 en/fast-import-merge-doc later to maint).
GIT-VERSION-GEN
+1
-1
@@ -1,7 +1,7 @@
1
#!/bin/sh
2
3
GVF=GIT-VERSION-FILE
4
-DEF_VER=v2.23.0
4
+DEF_VER=v2.23.GIT
5
6
LF='
7
'
RelNotes
+1
-1
@@ -1 +1 @@
1
-Documentation/RelNotes/2.23.0.txt
\ No newline at end of file
1
+Documentation/RelNotes/2.24.0.txt
\ No newline at end of file