Skip to content

Commit 7c4e9e9

Browse files
committed
A bit more before -rc1
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 6c9fbf4 commit 7c4e9e9

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

Documentation/RelNotes/2.54.0.adoc

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ UI, Workflows & Features
121121

122122
* git replay now supports replaying down to the root commit.
123123

124+
* Handling of signed commits and tags in fast-import has been made more
125+
configurable.
126+
124127

125128
Performance, Internal Implementation, Development Support etc.
126129
--------------------------------------------------------------
@@ -300,6 +303,19 @@ Performance, Internal Implementation, Development Support etc.
300303
that discarded constness when they return a pointer into a const
301304
string to preserve constness.
302305
306+
* A handful of inappropriate uses of the_repository have been
307+
rewritten to use the right repository structure instance in the
308+
read-cache.c codepath.
309+
310+
* Internals of "git fsck" have been refactored to not depend on the
311+
global `the_repository` variable.
312+
313+
* Reduce dependency on `the_repository` in add-patch.c file.
314+
315+
* The way the "git log -L<range>:<file>" feature is bolted onto the
316+
log/diff machinery is being reworked a bit to make the feature
317+
compatible with more diff options, like -S/G.
318+
303319
304320
Fixes since v2.53
305321
-----------------
@@ -478,6 +494,21 @@ Fixes since v2.53
478494
refspec is a single-object refspec, which has been corrected.
479495
(merge 4e5dc601dd kj/refspec-parsing-outside-repository later to maint).
480496

497+
* Fix a regression in writing the commit-graph where commits with dates
498+
exceeding 34 bits (beyond year 2514) could cause an underflow and
499+
crash Git during the generation data overflow chunk writing.
500+
501+
* The value of a wrong pointer variable was referenced in an error
502+
message that reported that it shouldn't be NULL.
503+
(merge 753ecf4205 yc/path-walk-fix-error-reporting later to maint).
504+
505+
* The check in "receive-pack" to prevent a checked out branch from
506+
getting updated via updateInstead mechanism has been corrected.
507+
508+
* "git backfill" is capable of auto-detecting a sparsely checked out
509+
working tree, which was broken.
510+
(merge 339eba65a7 th/backfill-auto-detect-sparseness-fix later to maint).
511+
481512
* Other code cleanup, docfix, build fix, etc.
482513
(merge d79fff4a11 jk/remote-tracking-ref-leakfix later to maint).
483514
(merge 7a747f972d dd/t5403-modernise later to maint).

0 commit comments

Comments
 (0)