Skip to content

Commit c420321

Browse files
committed
The first batch post 2.33
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 1b2be06 commit c420321

File tree

3 files changed

+50
-2
lines changed

3 files changed

+50
-2
lines changed

Documentation/RelNotes/2.34.0.txt

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
Git 2.34 Release Notes
2+
======================
3+
4+
Updates since Git 2.33
5+
----------------------
6+
7+
UI, Workflows & Features
8+
9+
* Pathname expansion (like "~username/") learned a way to specify a
10+
location relative to Git installation (e.g. its $sharedir which is
11+
$(prefix)/share), with "%(prefix)".
12+
13+
14+
Performance, Internal Implementation, Development Support etc.
15+
16+
* "git bisect" spawned "git show-branch" only to pretty-print the
17+
title of the commit after checking out the next version to be
18+
tested; this has been rewritten in C.
19+
20+
* "git add" can work better with the sparse index.
21+
22+
* Support for ancient versions of cURL library (pre 7.19.4) has been
23+
dropped.
24+
25+
* A handful of tests that assumed implementation details of files
26+
backend for refs have been cleaned up.
27+
28+
* trace2 logs learned to show parent process name to see in what
29+
context Git was invoked.
30+
31+
* Loading of ref tips to prepare for common ancestry negotiation in
32+
"git fetch-pack" has been optimized by taking advantage of the
33+
commit graph when available.
34+
35+
36+
Fixes since v2.33
37+
-----------------
38+
39+
* Input validation of "git pack-objects --stdin-packs" has been
40+
corrected.
41+
(merge 561fa03529 ab/pack-stdin-packs-fix later to maint).
42+
43+
* Bugfix for common ancestor negotiation recently introduced in "git
44+
push" code path.
45+
(merge 82823118b9 jt/push-negotiation-fixes later to maint).
46+
47+
* Other code cleanup, docfix, build fix, etc.
48+
(merge 1d9c8daef8 ab/bundle-doc 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.33.0
4+
DEF_VER=v2.33.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.33.0.txt
1+
Documentation/RelNotes/2.34.0.txt

0 commit comments

Comments
 (0)