@@ -49,6 +49,11 @@ UI, Workflows & Features
49
49
* "scalar" warns but continues when its periodic maintenance
50
50
feature cannot be enabled.
51
51
52
+ * The bundle-URI subsystem adds support for creation-token heuristics
53
+ to help incremental fetches.
54
+
55
+ * Userdiff regexp update for Java language.
56
+
52
57
53
58
Performance, Internal Implementation, Development Support etc.
54
59
@@ -69,12 +74,10 @@ Performance, Internal Implementation, Development Support etc.
69
74
the submodule--helper.
70
75
71
76
* Stop running win+VS build by default.
72
- (merge a0da6deeec js/ci-disable-cmake-by-default later to maint).
73
77
74
78
* CI updates. We probably want a clean-up to move the long shell
75
79
script embedded in yaml file into a separate file, but that can
76
80
come later.
77
- (merge 4542582e59 cw/ci-whitespace later to maint).
78
81
79
82
* Use `git diff --no-index` as a test_cmp on Windows.
80
83
@@ -84,14 +87,21 @@ Performance, Internal Implementation, Development Support etc.
84
87
85
88
* Avoid unnecessary builds in CI, with settings configured in
86
89
ci-config.
87
- (merge eb5b03a9c0 tb/ci-concurrency later to maint).
90
+
91
+ * Plug leaks in sequencer subsystem and its users.
92
+
93
+ * In-tree .gitattributes update to match the way we recommend our
94
+ users to mark a file as text.
95
+ (merge 1f34e0cd3d po/attributes-text later to maint).
96
+
97
+ * Finally retire the scripted "git add -p/-i" implementation and have
98
+ everybody use the one reimplemented in C.
88
99
89
100
90
101
Fixes since v2.39
91
102
-----------------
92
103
93
104
* Various leak fixes.
94
- (merge ac95f5d36a ab/various-leak-fixes later to maint).
95
105
96
106
* Fix a bug where `pack-objects` would not respect multiple `--filter`
97
107
arguments when invoked directly.
@@ -106,8 +116,6 @@ Fixes since v2.39
106
116
* Redefining system functions for a few functions did not follow our
107
117
usual "implement git_foo() and #define foo(args) git_foo(args)"
108
118
pattern, which has broken build for some folks.
109
- (merge e1a95b78d8 jk/avoid-redef-system-functions-2.30 later to maint).
110
- (merge 395bec6b39 jk/avoid-redef-system-functions later to maint).
111
119
112
120
* The way the diff machinery prepares the options array for the
113
121
parse_options API has been refactored to avoid resource leaks.
@@ -137,36 +145,27 @@ Fixes since v2.39
137
145
* When given a pattern that matches an empty string at the end of a
138
146
line, the code to parse the "git diff" line-ranges fell into an
139
147
infinite loop, which has been corrected.
140
- (merge 4e57c88e02 lk/line-range-parsing-fix later to maint).
141
148
142
149
* Fix the sequence to fsync $GIT_DIR/packed-refs file that forgot to
143
150
flush its output to the disk..
144
- (merge ce54672f9b ps/fsync-refs-fix later to maint).
145
151
146
152
* Fix to a small regression in 2.38 days.
147
- (merge 6d5e9e53aa ab/bundle-wo-args later to maint).
148
153
149
154
* "git diff --relative" did not mix well with "git diff --ext-diff",
150
155
which has been corrected.
151
- (merge f034bb1cad jk/ext-diff-with-relative later to maint).
152
156
153
157
* The logic to see if we are using the "cone" mode by checking the
154
158
sparsity patterns has been tightened to avoid mistaking a pattern
155
159
that names a single file as specifying a cone.
156
- (merge 5842710dc2 ws/single-file-cone later to maint).
157
160
158
161
* Deal with a few deprecation warning from cURL library.
159
- (merge 6c065f72b8 jk/curl-avoid-deprecated-api later to maint).
160
162
161
163
* Doc update for environment variables set when hooks are invoked.
162
- (merge 772f8ff826 es/hooks-and-local-env later to maint).
163
164
164
165
* Document ORIG_HEAD a bit more.
165
- (merge f1c9243fc5 pb/doc-orig-head later to maint).
166
166
167
167
* "git ls-tree --format='%(path) %(path)' $tree $path" showed the
168
168
path three times, which has been corrected.
169
- (merge c388fcda99 rs/ls-tree-path-expansion-fix later to maint).
170
169
171
170
* Remove "git env--helper" and demote it to a test-tool subcommand.
172
171
(merge 4a1baacd46 ab/test-env-helper later to maint).
@@ -175,7 +174,6 @@ Fixes since v2.39
175
174
where '\(A\|B\)' works as alternation, unless explicitly asked with
176
175
the REG_ENHANCED flag. "git grep" now can be compiled to do so, to
177
176
retain the old behaviour.
178
- (merge 54463d32ef rs/use-enhanced-bre-on-macos later to maint).
179
177
180
178
* Pthread emulation on Win32 leaked thread handle when a thread is
181
179
joined.
@@ -188,7 +186,6 @@ Fixes since v2.39
188
186
189
187
* Document that "branch -f <branch>" disables only the safety to
190
188
avoid recreating an existing branch.
191
- (merge bf08abac56 jc/doc-branch-update-checked-out-branch later to maint).
192
189
193
190
* "git fetch <group>", when "<group>" of remotes lists the same
194
191
remote twice, unnecessarily failed when parallel fetching was
@@ -197,7 +194,6 @@ Fixes since v2.39
197
194
198
195
* Clarify how "checkout -b/-B" and "git branch [-f]" are similar but
199
196
different in the documentation.
200
- (merge fedb8ea2df jc/doc-checkout-b later to maint).
201
197
202
198
* "git hash-object" now checks that the resulting object is well
203
199
formed with the same code as "git fsck".
@@ -222,22 +218,12 @@ Fixes since v2.39
222
218
it is done using it, saving peak heap memory usage.
223
219
(merge 647982bb71 ew/free-island-marks later to maint).
224
220
221
+ * In an environment where dynamically generated code is prohibited to
222
+ run (e.g. SELinux), failure to JIT pcre patterns is expected. Fall
223
+ back to interpreted execution in such a case.
224
+ (merge 50b6ad55b0 cb/grep-fallback-failing-jit later to maint).
225
+
225
226
* Other code cleanup, docfix, build fix, etc.
226
- (merge 77e04b2ed4 rs/t4205-do-not-exit-in-test-script later to maint).
227
- (merge faebba436e rs/plug-pattern-list-leak-in-lof later to maint).
228
- (merge 243caa8982 ab/t5314-avoid-losing-exit-status later to maint).
229
- (merge 4d81ce1b99 ab/t7600-avoid-losing-exit-status-of-git later to maint).
230
- (merge 5f3bfdc4f3 ab/t4023-avoid-losing-exit-status-of-diff later to maint).
231
- (merge 500317ae03 js/t3920-shell-and-or-fix later to maint).
232
- (merge 86325d36e6 rs/t3920-crlf-eating-grep-fix later to maint).
233
- (merge cfbd173ccb rj/branch-copy-and-rename later to maint).
234
- (merge c25d9e529d jk/unused-post-2.39 later to maint).
235
- (merge a31cfe3283 jk/server-supports-v2-cleanup later to maint).
236
- (merge a658e881c1 rs/am-parse-options-cleanup later to maint).
237
- (merge 4cb39fcf19 rs/clear-commit-marks-cleanup later to maint).
238
- (merge b07a819c05 rs/reflog-expiry-cleanup later to maint).
239
- (merge d422d06167 rs/clarify-error-in-write-loose-object later to maint).
240
- (merge 92cb135855 sk/remove-duplicate-includes later to maint).
241
227
(merge 4eb1ccecd4 dh/mingw-ownership-check-typofix later to maint).
242
228
(merge f95526419b ar/typofix-gitattributes-doc later to maint).
243
229
(merge 27875aeec9 km/doc-branch-start-point later to maint).
@@ -258,3 +244,8 @@ Fixes since v2.39
258
244
(merge 4f542975d1 mh/doc-credential-cache-only-in-core later to maint).
259
245
(merge 3a2ebaebc7 gc/index-format-doc later to maint).
260
246
(merge b08edf709d jk/httpd-test-updates later to maint).
247
+ (merge d85e9448dd wl/new-command-doc later to maint).
248
+ (merge d912a603ed kf/t5000-modernise later to maint).
249
+ (merge e65b868d07 rs/size-t-fixes later to maint).
250
+ (merge 3eb1e1ca9a ab/config-h-remove-unused later to maint).
251
+ (merge d390e08076 cw/doc-pushurl-vs-url later to maint).
0 commit comments