Skip to content

Commit 43072b4

Browse files
committed
The fourth batch
Also update the DEF_VER in GIT-VERSION-GEN, which I forgot to do earlier (it should have been done when we started the new cycle). Signed-off-by: Junio C Hamano <[email protected]>
1 parent 53ac1f1 commit 43072b4

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

Documentation/RelNotes/2.45.0.txt

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ UI, Workflows & Features
1717

1818
* "git reflog" learned a "list" subcommand that enumerates known reflogs.
1919

20+
* When a merge conflicted at a submodule, merge-ort backend used to
21+
unconditionally give a lengthy message to suggest how to resolve
22+
it. Now the message can be squelched as an advice message.
23+
24+
* "git for-each-ref" learned "--include-root-refs" option to show
25+
even the stuff outside the 'refs/' hierarchy.
26+
2027

2128
Performance, Internal Implementation, Development Support etc.
2229

@@ -65,6 +72,28 @@ Fixes since v2.44
6572
option; it used to always exit with 0 and signalled success.
6673
(merge eb84c8b6ce ps/difftool-dir-diff-exit-code later to maint).
6774

75+
* The code incorrectly attempted to use textconv cache when asked,
76+
even when we are not running in a repository, which has been
77+
corrected.
78+
(merge affe355fe7 jk/textconv-cache-outside-repo-fix later to maint).
79+
80+
* Remove an empty file that shouldn't have been added in the first
81+
place.
82+
(merge 4f66942215 js/remove-cruft-files later to maint).
83+
84+
* The logic to access reflog entries by date and number had ugly
85+
corner cases at the boundaries, which have been cleaned up.
86+
(merge 5edd126720 jk/reflog-special-cases-fix later to maint).
87+
88+
* An error message from "git upload-pack", which responds to "git
89+
fetch" requests, had a trialing NUL in it, which has been
90+
corrected.
91+
(merge 3f4c7a0805 sg/upload-pack-error-message-fix later to maint).
92+
93+
* Clarify wording in the CodingGuidelines that requires <git-compat-util.h>
94+
to be the first header file.
95+
(merge 4e89f0e07c jc/doc-compat-util later to maint).
96+
6897
* Other code cleanup, docfix, build fix, etc.
6998
(merge f0e578c69c rs/use-xstrncmpz later to maint).
7099
(merge 83e6eb7d7a ba/credential-test-clean-fix later to maint).
@@ -74,3 +103,8 @@ Fixes since v2.44
74103
(merge 41bff66e35 jc/doc-add-placeholder-fix later to maint).
75104
(merge 6835f0efe9 jw/remote-doc-typofix later to maint).
76105
(merge 244001aa20 hs/rebase-not-in-progress later to maint).
106+
(merge 2ca6c07db2 jc/no-include-of-compat-util-from-headers later to maint).
107+
(merge 87bd7fbb9c rs/fetch-simplify-with-starts-with later to maint).
108+
(merge f39addd0d9 rs/name-rev-with-mempool later to maint).
109+
(merge 9a97b43e03 rs/submodule-prefix-simplify later to maint).
110+
(merge 40b8076462 ak/rebase-autosquash 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.44.0
4+
DEF_VER=v2.44.GIT
55

66
LF='
77
'

0 commit comments

Comments
 (0)