@@ -19,6 +19,20 @@ UI, Workflows & Features
19
19
configurable to selectively allow or reject object filtering
20
20
specification used for partial cloning.
21
21
22
+ * Stop when "sendmail.*" configuration variables are defined, which
23
+ could be a mistaken attempt to define "sendemail.*" variables.
24
+
25
+ * The existing backends for "git mergetool" based on variants of vim
26
+ have been refactored and then support for "nvim" has been added.
27
+
28
+ * "git bisect" learns the "--first-parent" option to find the first
29
+ breakage along the first-parent chain.
30
+
31
+ * "git log --first-parent -p" showed patches only for single-parent
32
+ commits on the first-parent chain; the "--first-parent" option has
33
+ been made to imply "-m". Use "--no-diff-merges" to restore the
34
+ previous behaviour to omit patches for merge commits.
35
+
22
36
23
37
Performance, Internal Implementation, Development Support etc.
24
38
@@ -60,6 +74,14 @@ Performance, Internal Implementation, Development Support etc.
60
74
easier to mark object existence checks that do and don't want to
61
75
trigger lazy fetches, and a few such checks are converted using it.
62
76
77
+ * A no-op replacement function implemented as a C preprocessor macro
78
+ does not perform as good a job as one implemented as a "static
79
+ inline" function in catching errors in parameters; replace the
80
+ former with the latter in <git-compat-util.h> header.
81
+
82
+ * Test framework update.
83
+ (merge d572f52a64 es/test-cmp-typocatcher later to maint).
84
+
63
85
64
86
Fixes since v2.28
65
87
-----------------
@@ -110,6 +132,19 @@ Fixes since v2.28
110
132
it is.
111
133
(merge 11bc12ae1e rp/blame-first-parent-doc later to maint).
112
134
135
+ * The logic to find the ref transaction hook script attempted to
136
+ cache the path to the found hook without realizing that it needed
137
+ to keep a copied value, as the API it used returned a transitory
138
+ buffer space. This has been corrected.
139
+ (merge 09b2aa30c9 ps/ref-transaction-hook later to maint).
140
+
141
+ * Recent versions of "git diff-files" shows a diff between the index
142
+ and the working tree for "intent-to-add" paths as a "new file"
143
+ patch; "git apply --cached" should be able to take "git diff-files"
144
+ and should act as an equivalent to "git add" for the path, but the
145
+ command failed to do so for such a path.
146
+ (merge 4c025c667e rp/apply-cached-with-i-t-a later to maint).
147
+
113
148
* Other code cleanup, docfix, build fix, etc.
114
149
(merge 84544f2ea3 sk/typofixes later to maint).
115
150
(merge b17f411ab5 ar/help-guides-doc later to maint).
@@ -124,3 +159,4 @@ Fixes since v2.28
124
159
(merge de20baf2c9 ny/notes-doc-sample-update later to maint).
125
160
(merge f649aaaf82 so/rev-parser-errormessage-fix later to maint).
126
161
(merge 6103d58b7f bc/sha-256-cvs-svn-updates later to maint).
162
+ (merge ac900fddb7 ma/stop-progress-null-fix later to maint).
0 commit comments