@@ -6,7 +6,7 @@ UI, Workflows & Features
6
6
* "git remote show [-n] frotz" now pays attention to negative
7
7
pathspec.
8
8
9
- * "git push" sometimes perform poorly when reachability bitmaps are
9
+ * "git push" sometimes performs poorly when reachability bitmaps are
10
10
used, even in a repository where other operations are helped by
11
11
bitmaps. The push.useBitmaps configuration variable is introduced
12
12
to allow disabling use of reachability bitmaps only for "git push".
@@ -27,7 +27,7 @@ UI, Workflows & Features
27
27
what locale they are in by sending Accept-Language HTTP header, but
28
28
this was done only for some requests but not others.
29
29
30
- * Introduce a discovery .barerepository configuration variable that
30
+ * Introduce a safe .barerepository configuration variable that
31
31
allows users to forbid discovery of bare repositories.
32
32
33
33
* Various messages that come from the pack-bitmap codepaths have been
@@ -79,12 +79,15 @@ UI, Workflows & Features
79
79
80
80
* "git format-patch --from=<ident>" can be told to add an in-body
81
81
"From:" line even for commits that are authored by the given
82
- <ident> with "--force-in-body-from"option.
82
+ <ident> with "--force-in-body-from" option.
83
83
84
84
* The built-in fsmonitor refuses to work on a network mounted
85
85
repositories; a configuration knob for users to override this has
86
86
been introduced.
87
87
88
+ * The "scalar" addition from Microsoft is now part of the core Git
89
+ installation.
90
+
88
91
89
92
Performance, Internal Implementation, Development Support etc.
90
93
@@ -127,7 +130,7 @@ Performance, Internal Implementation, Development Support etc.
127
130
128
131
* The way "git multi-pack" uses parse-options API has been improved.
129
132
130
- * A coccinelle rule (in contrib/) to encourage use of COPY_ARRAY
133
+ * A Coccinelle rule (in contrib/) to encourage use of COPY_ARRAY
131
134
macro has been improved.
132
135
133
136
* API tweak to make it easier to run fuzz testing on commit-graph parser.
@@ -172,6 +175,12 @@ Performance, Internal Implementation, Development Support etc.
172
175
* Share the text used to explain configuration variables used by "git
173
176
<subcmd>" in "git help <subcmd>" with the text from "git help config".
174
177
178
+ * "git mv A B" in a sparsely populated working tree can be asked to
179
+ move a path from a directory that is "in cone" to another directory
180
+ that is "out of cone". Handling of such a case has been improved.
181
+
182
+ * The chainlint script for our tests has been revamped.
183
+
175
184
176
185
Fixes since v2.37
177
186
-----------------
@@ -297,7 +306,7 @@ Fixes since v2.37
297
306
* "git fsck" reads mode from tree objects but canonicalizes the mode
298
307
before passing it to the logic to check object sanity, which has
299
308
hid broken tree objects from the checking logic. This has been
300
- corrected, but to help exiting projects with broken tree objects
309
+ corrected, but to help existing projects with broken tree objects
301
310
that they cannot fix retroactively, the severity of anomalies this
302
311
code detects has been demoted to "info" for now.
303
312
@@ -306,33 +315,27 @@ Fixes since v2.37
306
315
307
316
* An earlier optimization discarded a tree-object buffer that is
308
317
still in use, which has been corrected.
309
- (merge 1490d7d82d jk/is-promisor-object-keep-tree-in-use later to maint).
310
318
311
319
* Fix deadlocks between main Git process and subprocess spawned via
312
320
the pipe_command() API, that can kill "git add -p" that was
313
321
reimplemented in C recently.
314
- (merge 716c1f649e jk/pipe-command-nonblock later to maint).
315
322
316
323
* The sequencer machinery translated messages left in the reflog by
317
324
mistake, which has been corrected.
318
325
319
326
* xcalloc(), imitating calloc(), takes "number of elements of the
320
327
array", and "size of a single element", in this order. A call that
321
328
does not follow this ordering has been corrected.
322
- (merge c4bbd9bb8f sg/xcalloc-cocci-fix later to maint).
323
329
324
330
* The preload-index codepath made copies of pathspec to give to
325
331
multiple threads, which were left leaked.
326
- (merge 23578904da ad/preload-plug-memleak later to maint).
327
332
328
333
* Update the version of Ubuntu used for GitHub Actions CI from 18.04
329
334
to 22.04.
330
- (merge ef46584831 ds/github-actions-use-newer-ubuntu later to maint).
331
335
332
336
* The auto-stashed local changes created by "git merge --autostash"
333
337
was mixed into a conflicted state left in the working tree, which
334
338
has been corrected.
335
- (merge d3a9295ada en/merge-unstash-only-on-clean-merge later to maint).
336
339
337
340
* Multi-pack index got corrupted when preferred pack changed from one
338
341
pack to another in a certain way, which has been corrected.
0 commit comments