@@ -107,6 +107,21 @@ Performance, Internal Implementation, Development Support etc.
107
107
things like sparse checkout specification that want to check if a
108
108
path is "included".
109
109
110
+ * "git stash" learned to write refreshed index back to disk.
111
+
112
+ * Coccinelle checks are done on more source files than before now.
113
+
114
+ * The cache-tree code has been taught to be less aggressive in
115
+ attempting to see if a tree object it computed already exists in
116
+ the repository.
117
+
118
+ * The code to parse and use the commit-graph file has been made more
119
+ robust against corrupted input.
120
+
121
+ * The hg-to-git script (in contrib/) has been updated to work with
122
+ Python 3.
123
+
124
+ * Update the way build artifacts in t/helper/ directory are ignored.
110
125
111
126
112
127
Fixes since v2.23
@@ -207,6 +222,38 @@ Fixes since v2.23
207
222
that is not UTF-8 even when JIT is not in use with PCRE1.
208
223
(merge ad7c543e3b cb/skip-utf8-check-with-pcre1 later to maint).
209
224
225
+ * The name of the blob object that stores the filter specification
226
+ for sparse cloning/fetching was interpreted in a wrong place in the
227
+ code, causing Git to abort.
228
+
229
+ * "git log --decorate-refs-exclude=<pattern>" was incorrectly
230
+ overruled when the "--simplify-by-decoration" option is used, which
231
+ has been corrected.
232
+ (merge 0cc7380d88 rs/simplify-by-deco-with-deco-refs-exclude later to maint).
233
+
234
+ * The "upload-pack" (the counterpart of "git fetch") needs to disable
235
+ commit-graph when responding to a shallow clone/fetch request, but
236
+ the way this was done made Git panic, which has been corrected.
237
+
238
+ * The object traversal machinery has been optimized not to load tree
239
+ objects when we are only interested in commit history.
240
+ (merge 72ed80c784 jk/list-objects-optim-wo-trees later to maint).
241
+
242
+ * The object name parser for "Nth parent" syntax has been made more
243
+ robust against integer overflows.
244
+ (merge 59fa5f5a25 rs/nth-parent-parse later to maint).
245
+
246
+ * The code used in following tags in "git fetch" has been optimized.
247
+ (merge b7e2d8bca5 ms/fetch-follow-tag-optim later to maint).
248
+
249
+ * Regression fix for progress output.
250
+ (merge 2bb74b53a4 sg/progress-fix later to maint).
251
+
252
+ * A bug in merge-recursive code that triggers when a branch with a
253
+ symbolic link is merged with a branch that replaces it with a
254
+ directory has been fixed.
255
+ (merge 83e3ad3b12 jt/merge-recursive-symlink-is-not-a-dir-in-way later to maint).
256
+
210
257
* Other code cleanup, docfix, build fix, etc.
211
258
(merge d1387d3895 en/fast-import-merge-doc later to maint).
212
259
(merge 1c24a54ea4 bm/repository-layout-typofix later to maint).
@@ -224,3 +271,17 @@ Fixes since v2.23
224
271
(merge 27fd1e4ea7 en/merge-options-ff-and-friends later to maint).
225
272
(merge 502c386ff9 sg/clean-nested-repo-with-ignored later to maint).
226
273
(merge 26e3d1cbea am/mailmap-andrey-mazo later to maint).
274
+ (merge 47b27c96fa ss/get-time-cleanup later to maint).
275
+ (merge dd2e50a84e jk/commit-graph-cleanup later to maint).
276
+ (merge 4fd39c76e6 cs/pretty-formats-doc-typofix later to maint).
277
+ (merge 40e747e89d dl/submodule-set-branch later to maint).
278
+ (merge 689a146c91 rs/commit-graph-use-list-count later to maint).
279
+ (merge 0eb7c37a8a js/doc-patch-text later to maint).
280
+ (merge 4b3aa170d1 rs/nth-switch-code-simplification later to maint).
281
+ (merge 0d4304c124 ah/doc-submodule-ignore-submodules later to maint).
282
+ (merge af78249463 cc/svn-fe-py-shebang later to maint).
283
+ (merge 7bd97d6dff rs/alias-use-copy-array later to maint).
284
+ (merge c46ebc2496 sg/travis-help-debug later to maint).
285
+ (merge 24c681794f ps/my-first-contribution-alphasort later to maint).
286
+ (merge 75b2c15435 cb/do-not-use-test-cmp-with-a later to maint).
287
+ (merge cda0d497e3 bw/submodule-helper-usage-fix later to maint).
0 commit comments