@@ -91,6 +91,14 @@ UI, Workflows & Features
91
91
commit-graph files now, which allows the commit-graph files to be
92
92
updated incrementally.
93
93
94
+ * The "git log" command learns to issue a warning when log.mailmap
95
+ configuration is not set and --[no-]mailmap option is not used, to
96
+ prepare users for future versions of Git that uses the mailmap by
97
+ default.
98
+
99
+ * "git range-diff" output has been tweaked for easier identification
100
+ of which part of what file the patch shown is about.
101
+
94
102
95
103
Performance, Internal Implementation, Development Support etc.
96
104
@@ -143,6 +151,24 @@ Performance, Internal Implementation, Development Support etc.
143
151
committed, the command line prompt script failed to notice the
144
152
current status, which has been improved.
145
153
154
+ * Many GIT_TEST_* environment variables control various aspects of
155
+ how our tests are run, but a few followed "non-empty is true, empty
156
+ or unset is false" while others followed the usual "there are a few
157
+ ways to spell true, like yes, on, etc., and also ways to spell
158
+ false, like no, off, etc." convention.
159
+
160
+ * Adjust the dir-iterator API and apply it to the local clone
161
+ optimization codepath.
162
+
163
+ * We have been trying out a few language features outside c89; the
164
+ coding guidelines document did not talk about them and instead had
165
+ a blanket ban against them.
166
+ (merge cc0c42975a jc/post-c89-rules-doc later to maint).
167
+
168
+ * A test helper has been introduced to optimize preparation of test
169
+ repositories with many simple commits, and a handful of test
170
+ scripts have been updated to use it.
171
+
146
172
147
173
Fixes since v2.22
148
174
-----------------
@@ -326,6 +352,32 @@ Fixes since v2.22
326
352
as these are mutually exclusive features.
327
353
(merge 7328482253 ew/repack-with-bitmaps-by-default later to maint).
328
354
355
+ * "git rm" to resolve a conflicted path leaked an internal message
356
+ "needs merge" before actually removing the path, which was
357
+ confusing. This has been corrected.
358
+ (merge b2b1f615ce jc/denoise-rm-to-resolve later to maint).
359
+
360
+ * "git stash --keep-index" did not work correctly on paths that have
361
+ been removed, which has been fixed.
362
+ (merge b932f6a5e8 tg/stash-keep-index-with-removed-paths later to maint).
363
+
364
+ * Window 7 update ;-)
365
+ (merge eb7c786314 js/mingw-spawn-with-spaces-in-path later to maint).
366
+
367
+ * A codepath that reads from GPG for signed object verification read
368
+ past the end of allocated buffer, which has been fixed.
369
+ (merge 64c45dc72e sr/gpg-interface-stop-at-the-end later to maint).
370
+
371
+ * "git clean" silently skipped a path when it cannot lstat() it; now
372
+ it gives a warning.
373
+ (merge b09364c47a js/clean-report-too-long-a-path later to maint).
374
+
375
+ * "git push --atomic" that goes over the transport-helper (namely,
376
+ the smart http transport) failed to prevent refs to be pushed when
377
+ it can locally tell that one of the ref update will fail without
378
+ having to consult the other end, which has been corrected.
379
+ (merge 2581ea3d31 es/local-atomic-push-failure-with-http later to maint).
380
+
329
381
* Other code cleanup, docfix, build fix, etc.
330
382
(merge f547101b26 es/git-debugger-doc later to maint).
331
383
(merge 7877ac3d7b js/bisect-helper-check-get-oid-return-value later to maint).
@@ -347,3 +399,7 @@ Fixes since v2.22
347
399
(merge 37a2e35395 sg/ci-brew-gcc-workaround later to maint).
348
400
(merge 24df0d49c4 js/trace2-signo-typofix later to maint).
349
401
(merge fbec05c210 cc/test-oidmap later to maint).
402
+ (merge 7926cee904 di/readme-markup-fix later to maint).
403
+ (merge 02638d1e11 vn/xmmap-gently later to maint).
404
+ (merge f7bf24d4dd rm/gpg-program-doc-fix later to maint).
405
+ (merge 3aef54e8b8 js/unmap-before-ext-diff later to maint).
0 commit comments