@@ -90,6 +90,10 @@ Foreign interfaces, subsystems and ports.
9090
9191UI, Workflows & Features
9292
93+ * Just like we give a reasonable default for "less" via the LESS
94+ environment variable, we now specify a reasonable default for "lv"
95+ via the "LV" environment variable when spawning the pager.
96+
9397 * Two-level configuration variable names in "branch.*" and "remote.*"
9498 hierarchies, whose variables are predominantly three-level, were
9599 not completed by hitting a <TAB> in bash and zsh completions.
@@ -154,6 +158,13 @@ UI, Workflows & Features
154158
155159Performance, Internal Implementation, etc.
156160
161+ * When parsing a 40-hex string into the object name, the string is
162+ checked to see if it can be interpreted as a ref so that a warning
163+ can be given for ambiguity. The code kicked in even when the
164+ core.warnambiguousrefs is set to false to squelch this warning, in
165+ which case the cycles spent to look at the ref namespace were an
166+ expensive no-op, as the result was discarded without being used.
167+
157168 * The naming convention of the packfiles has been updated; it used to
158169 be based on the enumeration of names of the objects that are
159170 contained in the pack, but now it also depends on how the packed
@@ -197,6 +208,10 @@ Unless otherwise noted, all the fixes since v1.8.5 in the maintenance
197208track are contained in this release (see the maintenance releases' notes
198209for details).
199210
211+ * The implementation of 'git stash $cmd "stash@{...}"' did not quote
212+ the stash argument properly and left it split at IFS whitespace.
213+ (merge 2a07e43 ow/stash-with-ifs later to maint).
214+
200215 * The "--[no-]informative-errors" options to "git daemon" were parsed
201216 a bit too loosely, allowing any other string after these option
202217 names.
0 commit comments