@@ -58,6 +58,17 @@ UI, Workflows & Features
58
58
* "git multi-pack-index" learned to detect corruption in the .midx
59
59
file it uses, and this feature has been integrated into "git fsck".
60
60
61
+ * Generation of (experimental) commit-graph files have so far been
62
+ fairly silent, even though it takes noticeable amount of time in a
63
+ meaningfully large repository. The users will now see progress
64
+ output.
65
+
66
+ * The minimum version of Windows supported by Windows port fo Git is
67
+ now set to Vista.
68
+
69
+ * The completion script (in contrib/) learned to complete a handful of
70
+ options "git stash list" command takes.
71
+
61
72
62
73
Performance, Internal Implementation, Development Support etc.
63
74
@@ -108,6 +119,19 @@ Performance, Internal Implementation, Development Support etc.
108
119
* Update fsck.skipList implementation and documentation.
109
120
(merge 371a655074 ab/fsck-skiplist later to maint).
110
121
122
+ * An alias that expands to another alias has so far been forbidden,
123
+ but now it is allowed to create such an alias.
124
+
125
+ * Various test scripts have been updated for style and also correct
126
+ handling of exit status of various commands.
127
+
128
+ * "gc --auto" ended up calling exit(-1) upon error, which has been
129
+ corrected to use exit(1). Also the error reporting behaviour when
130
+ daemonized has been updated to exit with zero status when stopping
131
+ due to a previously discovered error (which implies there is no
132
+ point running gc to improve the situation); we used to exit with
133
+ failure in such a case.
134
+
111
135
112
136
Fixes since v2.19
113
137
-----------------
@@ -170,6 +194,21 @@ Fixes since v2.19
170
194
segfault, which has been corrected.
171
195
(merge e467a90c7a tg/range-diff-corner-case-fix later to maint).
172
196
197
+ * The recently introduced commit-graph auxiliary data is incompatible
198
+ with mechanisms such as replace & grafts that "breaks" immutable
199
+ nature of the object reference relationship. Disable optimizations
200
+ based on its use (and updating existing commit-graph) when these
201
+ incompatible features are in use in the repository.
202
+ (merge 829a321569 ds/commit-graph-with-grafts later to maint).
203
+
204
+ * The mailmap file update.
205
+ (merge 255eb03edf jn/mailmap-update later to maint).
206
+
207
+ * The code in "git status" sometimes hit an assertion failure. This
208
+ was caused by a structure that was reused without cleaning the data
209
+ used for the first run, which has been corrected.
210
+ (merge 3e73cc62c0 en/status-multiple-renames-to-the-same-target-fix later to maint).
211
+
173
212
* Code cleanup, docfix, build fix, etc.
174
213
(merge 96a7501aad ts/doc-build-manpage-xsl-quietly later to maint).
175
214
(merge b9b07efdb2 tg/conflict-marker-size later to maint).
@@ -181,3 +220,14 @@ Fixes since v2.19
181
220
(merge 0597dd62ba sb/string-list-remove-unused later to maint).
182
221
(merge db2d36fad8 bw/protocol-v2 later to maint).
183
222
(merge 456d7cd3a9 sg/split-index-test later to maint).
223
+ (merge 7b6057c852 tq/refs-internal-comment-fix later to maint).
224
+ (merge 29e8dc50ad tg/t5551-with-curl-7.61.1 later to maint).
225
+ (merge 55f6bce2c9 fe/doc-updates later to maint).
226
+ (merge 7987d2232d jk/check-everything-connected-is-long-gone later to maint).
227
+ (merge 4ba3c9be47 dz/credential-doc-url-matching-rules later to maint).
228
+ (merge 4c399442f7 ma/commit-graph-docs later to maint).
229
+ (merge fc0503b04e ma/t1400-undebug-test later to maint).
230
+ (merge e56b53553a nd/packobjectshook-doc-fix later to maint).
231
+ (merge c56170a0c4 ma/mailing-list-address-in-git-help later to maint).
232
+ (merge 6e8fc70fce rs/sequencer-oidset-insert-avoids-dups later to maint).
233
+ (merge ad0b8f9575 mw/doc-typofixes later to maint).
0 commit comments