@@ -6,6 +6,13 @@ Updates since v2.3
66
77Ports
88
9+ * Our default I/O size (8 MiB) for large files was too large for some
10+ platforms with smaller SSIZE_MAX, leading to read(2)/write(2)
11+ failures.
12+
13+ * We did not check the curl library version before using
14+ CURLOPT_PROXYAUTH feature that may not exist.
15+
916
1017UI, Workflows & Features
1118
@@ -28,6 +35,11 @@ UI, Workflows & Features
2835 * Using environment variable LANGUAGE and friends on the client side,
2936 HTTP-based transports now send Accept-Language when making requests.
3037
38+ * "git send-email" used to accept a mistaken "y" (or "yes") as an
39+ answer to "What encoding do you want to use [UTF-8]? " without
40+ questioning. Now it asks for confirmation when the answer looks
41+ too short to be a valid encoding name.
42+
3143
3244Performance, Internal Implementation, Development Support etc.
3345
@@ -37,6 +49,39 @@ Performance, Internal Implementation, Development Support etc.
3749 * Implementation of "reflog expire" has been restructured to fit the
3850 reflogs better with the recently updated ref API.
3951
52+ * The transport-helper did not give transport options such as
53+ verbosity, progress, cloning, etc. to import and export based
54+ helpers, like it did for fetch and push based helpers, robbing them
55+ the chance to honor the wish of the end-users better.
56+
57+ * The tests that wanted to see that file becomes unreadable after
58+ running "chmod a-r file", and the tests that wanted to make sure it
59+ is not run as root, we used "can we write into the / directory?" as
60+ a cheap substitute, but on some platforms that is not a good
61+ heuristics. The tests and their prerequisites have been updated to
62+ check what they really require.
63+ (merge f400e51 jk/sanity later to maint).
64+
65+ * The strbuf API was explained between the API documentation and in
66+ the header file. Move missing bits to strbuf.h so that programmers
67+ can check only one place for all necessary information.
68+
69+ * The error handling functions and conventions are now documented in
70+ the API manual.
71+
72+ * Optimize attribute look-up, mostly useful in "git grep" on a
73+ project that does not use many attributes, by avoiding it when we
74+ (should) know that the attributes are not defined in the first
75+ place.
76+
77+ * Typofix in comments.
78+ (merge ef2956a ak/git-pm-typofix later to maint).
79+
80+ * Code clean-up.
81+ (merge 0b868f0 sb/hex-object-name-is-at-most-41-bytes-long later to maint).
82+ (merge 5d30851 dp/remove-duplicated-header-inclusion later to maint).
83+
84+
4085
4186Also contains various documentation updates and code clean-ups.
4287
@@ -169,3 +214,11 @@ notes for details).
169214
170215 * "git blame" died, trying to free an uninitialized piece of memory.
171216 (merge e600592 es/blame-commit-info-fix later to maint).
217+
218+ * "git fast-import" used to crash when it could not close and
219+ conclude the resulting packfile cleanly.
220+ (merge 5e915f3 jk/fast-import-die-nicely-fix later to maint).
221+
222+ * "update-index --refresh" used to leak when an entry cannot be
223+ refreshed for whatever reason.
224+ (merge bc1c2ca sb/plug-leak-in-make-cache-entry later to maint).
0 commit comments