@@ -48,6 +48,10 @@ Updates since v1.8.4
4848
4949Foreign interfaces, subsystems and ports.
5050
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+
5155 * remote-hg remote helper misbehaved when interacting with a local Hg
5256 repository relative to the home directory, e.g. "clone hg::~/there".
5357
@@ -63,6 +67,12 @@ Foreign interfaces, subsystems and ports.
6367
6468UI, Workflows & Features
6569
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+
6676 * "git config" did not provide a way to set or access numbers larger
6777 than a native "int" on the platform; it now provides 64-bit signed
6878 integers on all platforms.
@@ -155,6 +165,18 @@ Unless otherwise noted, all the fixes since v1.8.4 in the maintenance
155165track are contained in this release (see release notes to them for
156166details).
157167
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 <au.thor@example.xz>" 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+
158180 * "git ls-files -k" needs to crawl only the part of the working tree
159181 that may overlap the paths in the index to find killed files, but
160182 shared code with the logic to find all the untracked files, which
0 commit comments