The 17th batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committed
Mar 16, 2026 at 10:48 UTC
ca1db8a0f7dc0dbea892e99f5b37c5fe5861be71
1 file changed
+24
Documentation/RelNotes/2.54.0.adoc
+24
@@ -85,6 +85,9 @@ UI, Workflows & Features
85
and various other branches listed on status.compareBranches
86
configuration.
87
88
+ * "git repo structure" command learns to report maximum values on
89
+ various aspects of objects it inspects.
90
+
91
92
Performance, Internal Implementation, Development Support etc.
93
--------------------------------------------------------------
@@ -187,6 +190,9 @@ Performance, Internal Implementation, Development Support etc.
190
* The object source API is getting restructured to allow plugging new
191
backends.
192
193
+ * Reduce dependence on the global the_hash_algo and the_repository
194
+ variables of wt-status code path.
195
+
196
197
Fixes since v2.53
198
-----------------
@@ -301,6 +307,22 @@ Fixes since v2.53
307
* "git for-each-repo" started from a secondary worktree did not work
308
as expected, which has been corrected.
309
(merge e87493b9b4 ds/for-each-repo-w-worktree later to maint).
310
+
311
+ * The construct 'test "$(command)" = expectation' loses the exit
312
+ status from the command, which has been fixed by breaking up the
313
+ statement into pieces.
314
+ (merge d3edca979a fp/t3310-unhide-git-failures later to maint).
315
+
316
+ * While discovering a ".git" directory, the code treats any stat()
317
+ failure as a sign that a filesystem entity .git does not exist
318
+ there, and ignores ".git" that is not a "gitdir" file or a
319
+ directory. The code has been tightened to notice and report
320
+ filesystem corruption better.
321
+ (merge 1dd27bfbfd ty/setup-error-tightening later to maint).
322
+
323
+ * Plug a few leaks where mmap'ed memory regions are not unmapped.
324
+ (merge a8a69bbb64 jk/unleak-mmap later to maint).
325
+
326
* Other code cleanup, docfix, build fix, etc.
327
(merge d79fff4a11 jk/remote-tracking-ref-leakfix later to maint).
328
(merge 7a747f972d dd/t5403-modernise later to maint).
@@ -338,3 +360,5 @@ Fixes since v2.53
360
(merge a56fa1ca05 lp/doc-gitprotocol-pack-fixes later to maint).
361
(merge 0d6bb8b541 ss/t3700-modernize later to maint).
362
(merge 63c00a677b ss/t9123-setup-inside-test-expect-success later to maint).
363
+ (merge beca0ca4be os/doc-git-custom-commands later to maint).
364
+ (merge 4c223571be ty/patch-ids-document-lazy-eval later to maint).