@@ -48,6 +48,10 @@ Updates since v1.8.4
48
48
49
49
Foreign interfaces, subsystems and ports.
50
50
51
+ * On MacOS X, we detected if the filesystem needs the "pre-composed
52
+ unicode strings" workaround, but did not automatically enable it.
53
+ Now we do.
54
+
51
55
* remote-hg remote helper misbehaved when interacting with a local Hg
52
56
repository relative to the home directory, e.g. "clone hg::~/there".
53
57
@@ -63,6 +67,12 @@ Foreign interfaces, subsystems and ports.
63
67
64
68
UI, Workflows & Features
65
69
70
+ * Earlier we started rejecting an attempt to add 0{40} object name to
71
+ the index and to tree objects, but it sometimes is necessary to
72
+ allow so to be able to use tools like filter-branch to correct such
73
+ broken tree objects. "filter-branch" can again be used to to do
74
+ so.
75
+
66
76
* "git config" did not provide a way to set or access numbers larger
67
77
than a native "int" on the platform; it now provides 64-bit signed
68
78
integers on all platforms.
@@ -155,6 +165,18 @@ Unless otherwise noted, all the fixes since v1.8.4 in the maintenance
155
165
track are contained in this release (see release notes to them for
156
166
details).
157
167
168
+ * When an object is not found after checking the packfiles and then
169
+ loose object directory, read_sha1_file() re-checks the packfiles to
170
+ prevent racing with a concurrent repacker; teach the same logic to
171
+ has_sha1_file().
172
+ (merge 45e8a74 jk/has-sha1-file-retry-packed later to maint).
173
+
174
+ * "git commit --author=$name", when $name is not in the canonical
175
+ "A. U. Thor <
[email protected] >" format, looks for a matching name
176
+ from existing history, but did not consult mailmap to grab the
177
+ preferred author name.
178
+ (merge ea16794 ap/commit-author-mailmap later to maint).
179
+
158
180
* "git ls-files -k" needs to crawl only the part of the working tree
159
181
that may overlap the paths in the index to find killed files, but
160
182
shared code with the logic to find all the untracked files, which
0 commit comments