diff options
| author | Junio C Hamano <gitster@pobox.com> | 2026-03-05 10:04:35 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2026-03-05 10:04:49 -0800 |
| commit | 795c338de725e13bd361214c6b768019fc45a2c1 (patch) | |
| tree | 2d5764d1c033cd6b0e73063a3dfea3e389799c1c | |
| parent | d93be9cbcaf80f4d1ff56a3d7aa5d722236b6eac (diff) | |
| download | git-795c338de725e13bd361214c6b768019fc45a2c1.tar.xz | |
The 12th batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
| -rw-r--r-- | Documentation/RelNotes/2.54.0.adoc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Documentation/RelNotes/2.54.0.adoc b/Documentation/RelNotes/2.54.0.adoc index f37c0be602..fa6e42f3bb 100644 --- a/Documentation/RelNotes/2.54.0.adoc +++ b/Documentation/RelNotes/2.54.0.adoc @@ -136,9 +136,13 @@ Performance, Internal Implementation, Development Support etc. * Clean-up the code around "git repo info" command. - * Mark the marge-ort codebase to prevent more uses of the_repository + * Mark the merge-ort codebase to prevent more uses of the_repository from getting added. + * The core.attributesfile is intended to be set per repository, but + were kept track of by a single global variable in-core, which has + been corrected by moving it to per-repository data structure. + Fixes since v2.53 ----------------- @@ -225,6 +229,11 @@ Fixes since v2.53 corrected. (merge 3ef68ff40e sp/shallow-deepen-relative-fix later to maint). + * "fsck" iterates over packfiles and its access to pack data caused + the list to be permuted, which caused it to loop forever; the code + to access pack data by "fsck" has been updated to avoid this. + (merge 13eb65d366 ps/fsck-stream-from-the-right-object-instance later to maint). + * Other code cleanup, docfix, build fix, etc. (merge d79fff4a11 jk/remote-tracking-ref-leakfix later to maint). (merge 7a747f972d dd/t5403-modernise later to maint). |
