The sixth batch
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committed
Dec 5, 2025 at 14:49 UTC
bdc5341ff65278a3cc80b2e8a02a2f02aa1fac06
1 file changed
+31
Documentation/RelNotes/2.53.0.adoc
+31
@@ -20,6 +20,9 @@ UI, Workflows & Features
20
21
* Add a new manual that describes the data model.
22
23
+ * "git fast-import" learns "--strip-if-invalid" option to drop
24
+ invalid cryptographic signature from objects.
25
+
26
27
Performance, Internal Implementation, Development Support etc.
28
--------------------------------------------------------------
@@ -38,6 +41,13 @@ Performance, Internal Implementation, Development Support etc.
41
* A part of code paths that deals with loose objects has been cleaned
42
up.
43
44
+ * "make strip" has been taught to strip "scalar" as well as "git".
45
+
46
+ * Dockerised jobs at the GitHub Actions CI have been taught to show
47
+ more details of failed tests.
48
+
49
+ * Code refactoring around object database sources.
50
+
51
52
Fixes since v2.52
53
-----------------
@@ -105,8 +115,29 @@ Fixes since v2.52
115
* Various issues detected by Asan have been corrected.
116
(merge a031b6181a jk/asan-bonanza later to maint).
117
118
+ * "git config get --path" segfaulted on an ":(optional)path" that
119
+ does not exist, which has been corrected.
120
+ (merge 0bd16856ff jc/optional-path later to maint).
121
+
122
+ * The "--committer-date-is-author-date" option of "git am/rebase" is
123
+ a misguided one. The documentation is updated to discourage its
124
+ use.
125
+ (merge fbf3d0669f kh/doc-committer-date-is-author-date later to maint).
126
+
127
+ * The option help text given by "git config unset -h" described
128
+ the "--all" option to "replace", not "unset", multiple variables,
129
+ which has been corrected.
130
+ (merge 18bf67b753 rs/config-unset-opthelp-fix later to maint).
131
+
132
+ * The error message given by "git config set", when the variable
133
+ being updated has more than one values defined, used old style "git
134
+ config" syntax with an incorrect option in its hint, both of which
135
+ have been corrected.
136
+ (merge df963f0df4 rs/config-set-multi-error-message-fix later to maint).
137
+
138
* Other code cleanup, docfix, build fix, etc.
139
(merge 46207a54cc qj/doc-http-bad-want-response later to maint).
140
(merge df90eccd93 kh/doc-commit-extra-references later to maint).
141
(merge f18aa68861 rs/xmkstemp-simplify later to maint).
142
(merge fddba8f737 ja/doc-synopsis-style later to maint).
143
+ (merge 22ce0cb639 en/xdiff-cleanup-2 later to maint).