Documentation / RelNotes / 2.17.0.txton commit Merge branch 'jk/cached-commit-buffer' (e33c332)
   1Git 2.17 Release Notes
   2======================
   3
   4Updates since v2.16
   5-------------------
   6
   7UI, Workflows & Features
   8
   9 * "diff" family of commands learned "--find-object=<object-id>" option
  10   to limit the findings to changes that involve the named object.
  11
  12 * "git format-patch" learned to give 72-cols to diffstat, which is
  13   consistent with other line length limits the subcommand uses for
  14   its output meant for e-mails.
  15
  16 * The log from "git daemon" can be redirected with a new option; one
  17   relevant use case is to send the log to standard error (instead of
  18   syslog) when running it from inetd.
  19
  20 * "git rebase" learned to take "--allow-empty-message" option.
  21
  22 * "git am" has learned the "--quit" option, in addition to the
  23   existing "--abort" option; having the pair mirrors a few other
  24   commands like "rebase" and "cherry-pick".
  25
  26 * "git worktree add" learned to run the post-checkout hook, just like
  27   "git clone" runs it upon the initial checkout.
  28
  29
  30Performance, Internal Implementation, Development Support etc.
  31
  32 * More perf tests for threaded grep
  33
  34 * "perf" test output can be sent to codespeed server.
  35   (merge 19cf57a92e cc/codespeed later to maint).
  36
  37 * The build procedure for perl/ part has been greatly simplified by
  38   weaning ourselves off of MakeMaker.
  39
  40 * In preparation for implementing narrow/partial clone, the machinery
  41   for checking object connectivity used by gc and fsck has been
  42   taught that a missing object is OK when it is referenced by a
  43   packfile specially marked as coming from trusted repository that
  44   promises to make them available on-demand and lazily.
  45
  46 * The machinery to clone & fetch, which in turn involves packing and
  47   unpacking objects, has been told how to omit certain objects using
  48   the filtering mechanism introduced by another topic.  It now knows
  49   to mark the resulting pack as a promisor pack to tolerate missing
  50   objects, laying foundation for "narrow" clones.
  51
  52 * The first step to getting rid of mru API and using the
  53   doubly-linked list API directly instead.
  54
  55 * Retire mru API as it does not give enough abstraction over
  56   underlying list API to be worth it.
  57
  58 * Rewrite two more "git submodule" subcommands in C.
  59
  60 * The tracing machinery learned to report tweaking of environment
  61   variables as well.
  62   (merge 090a09272a nd/trace-with-env later to maint).
  63
  64 * Update Coccinelle rules to catch and optimize strbuf_addf(&buf, "%s", str)
  65   (merge cd9a4b6d93 rs/strbuf-cocci-workaround later to maint).
  66
  67 * Prevent "clang-format" from breaking line after function return type.
  68   (merge a3715d43e8 po/clang-format-functype-weight later to maint).
  69
  70 * The sequencer infrastructure is shared across "git cherry-pick",
  71   "git rebase -i", etc., and has always spawned "git commit" when it
  72   needs to create a commit.  It has been taught to do so internally,
  73   when able, by reusing the codepath "git commit" itself uses, which
  74   gives performance boost for a few tens of percents in some sample
  75   scenarios.
  76
  77 * Push the submodule version of collision-detecting SHA-1 hash
  78   implementation a bit harder on builders.
  79
  80 * Avoid mmapping small files while using packed refs (especially ones
  81   with zero size, which would cause later munmap() to fail).
  82   (merge ba41a8b600 kg/packed-ref-cache-fix later to maint).
  83
  84 * Conversion from uchar[20] to struct object_id continues.
  85
  86 * More tests for wildmatch functions.
  87
  88 * The code to binary search starting from a fan-out table (which is
  89   how the packfile is indexed with object names) has been refactored
  90   into a reusable helper.
  91
  92Also contains various documentation updates and code clean-ups.
  93
  94
  95Fixes since v2.16
  96-----------------
  97
  98 * An old regression in "git describe --all $annotated_tag^0" has been
  99   fixed.
 100
 101 * "git status" after moving a path in the working tree (hence making
 102   it appear "removed") and then adding with the -N option (hence
 103   making that appear "added") detected it as a rename, but did not
 104   report the  old and new pathnames correctly.
 105
 106 * "git svn dcommit" did not take into account the fact that a
 107   svn+ssh:// URL with a username@ (typically used for pushing) refers
 108   to the same SVN repository without the username@ and failed when
 109   svn.pushmergeinfo option is set.
 110
 111 * API clean-up around revision traversal.
 112
 113 * "git merge -Xours/-Xtheirs" learned to use our/their version when
 114   resolving a conflicting updates to a symbolic link.
 115
 116 * "git clone $there $here" is allowed even when here directory exists
 117   as long as it is an empty directory, but the command incorrectly
 118   removed it upon a failure of the operation.
 119
 120 * "git commit --fixup" did not allow "-m<message>" option to be used
 121   at the same time; allow it to annotate resulting commit with more
 122   text.
 123
 124 * When resetting the working tree files recursively, the working tree
 125   of submodules are now also reset to match.
 126
 127 * "git stash -- <pathspec>" incorrectly blew away untracked files in
 128   the directory that matched the pathspec, which has been corrected.
 129
 130 * Instead of maintaining home-grown email address parsing code, ship
 131   a copy of reasonably recent Mail::Address to be used as a fallback
 132   in 'git send-email' when the platform lacks it.
 133   (merge d60be8acab mm/send-email-fallback-to-local-mail-address later to maint).
 134
 135 * "git add -p" was taught to ignore local changes to submodules as
 136   they do not interfere with the partial addition of regular changes
 137   anyway.
 138
 139 * Avoid showing a warning message in the middle of a line of "git
 140   diff" output.
 141   (merge 4e056c989f nd/diff-flush-before-warning later to maint).
 142
 143 * The http tracing code, often used to debug connection issues,
 144   learned to redact potentially sensitive information from its output
 145   so that it can be more safely sharable.
 146   (merge 8ba18e6fa4 jt/http-redact-cookies later to maint).
 147
 148 * Crash fix for a corner case where an error codepath tried to unlock
 149   what it did not acquire lock on.
 150   (merge 81fcb698e0 mr/packed-ref-store-fix later to maint).
 151
 152 * The split-index mode had a few corner case bugs fixed.
 153   (merge ae59a4e44f tg/split-index-fixes later to maint).
 154
 155 * Assorted fixes to "git daemon".
 156   (merge ed15e58efe jk/daemon-fixes later to maint).
 157
 158 * Completion of "git merge -s<strategy>" (in contrib/) did not work
 159   well in non-C locale.
 160   (merge 7cc763aaa3 nd/list-merge-strategy later to maint).
 161
 162 * Workaround for segfault with more recent versions of SVN.
 163   (merge 7f6f75e97a ew/svn-branch-segfault-fix later to maint).
 164
 165 * Plug recently introduced leaks in fsck.
 166   (merge ba3a08ca0e jt/fsck-code-cleanup later to maint).
 167
 168 * "git pull --rebase" did not pass verbosity setting down when
 169   recursing into a submodule.
 170   (merge a56771a668 sb/pull-rebase-submodule later to maint).
 171
 172 * The way "git reset --hard" reports the commit the updated HEAD
 173   points at is made consistent with the way how the commit title is
 174   generated by the other parts of the system.  This matters when the
 175   title is spread across physically multiple lines.
 176   (merge 1cf823fb68 tg/reset-hard-show-head-with-pretty later to maint).
 177
 178 * Test fixes.
 179   (merge 63b1a175ee sg/test-i18ngrep later to maint).
 180
 181 * Some bugs around "untracked cache" feature have been fixed.  This
 182   will notice corrupt data in the untracked cache left by old and
 183   buggy code and issue a warning---the index can be fixed by clearing
 184   the untracked cache from it.
 185   (merge 0cacebf099 nd/fix-untracked-cache-invalidation later to maint).
 186   (merge 7bf0be7501 ab/untracked-cache-invalidation-docs later to maint).
 187
 188 * "git blame HEAD COPYING" in a bare repository failed to run, while
 189   "git blame HEAD -- COPYING" run just fine.  This has been corrected.
 190
 191 * "git add" files in the same directory, but spelling the directory
 192   path in different cases on case insensitive filesystem, corrupted
 193   the name hash data structure and led to unexpected results.  This
 194   has been corrected.
 195   (merge c95525e90d bp/name-hash-dirname-fix later to maint).
 196
 197 * "git rebase -p" mangled log messages of a merge commit, which is
 198   now fixed.
 199   (merge ed5144d7eb js/fix-merge-arg-quoting-in-rebase-p later to maint).
 200
 201 * Some low level protocol codepath could crash when they get an
 202   unexpected flush packet, which is now fixed.
 203   (merge bb1356dc64 js/packet-read-line-check-null later to maint).
 204
 205 * "git check-ignore" with multiple paths got confused when one is a
 206   file and the other is a directory, which has been fixed.
 207   (merge d60771e930 rs/check-ignore-multi later to maint).
 208
 209 * "git describe $garbage" stopped giving any errors when the garbage
 210   happens to be a string with 40 hexadecimal letters.
 211   (merge a8e7a2bf0f sb/describe-blob later to maint).
 212
 213 * Code to unquote single-quoted string (used in the parser for
 214   configuration files, etc.) did not diagnose bogus input correctly
 215   and produced bogus results instead.
 216   (merge ddbbf8eb25 jk/sq-dequote-on-bogus-input later to maint).
 217
 218 * Many places in "git apply" knew that "/dev/null" that signals
 219   "there is no such file on this side of the diff" can be followed by
 220   whitespace and garbage when parsing a patch, except for one, which
 221   made an otherwise valid patch (e.g. ones from subversion) rejected.
 222   (merge e454ad4bec tk/apply-dev-null-verify-name-fix later to maint).
 223
 224 * We no longer create any *.spec file, so "make clean" should not
 225   remove it.
 226   (merge 4321bdcabb tz/do-not-clean-spec-file later to maint).
 227
 228 * "git push" over http transport did not unquote the push-options
 229   correctly.
 230   (merge 90dce21eb0 jk/push-options-via-transport-fix later to maint).
 231
 232 * Other minor doc, test and build updates and code cleanups.
 233   (merge e2a5a028c7 bw/oidmap-autoinit later to maint).
 234   (merge ec3b4b06f8 cl/t9001-cleanup later to maint).
 235   (merge e1b3f3dd38 ks/submodule-doc-updates later to maint).
 236   (merge fbac558a9b rs/describe-unique-abbrev later to maint).
 237   (merge 8462ff43e4 tb/crlf-conv-flags later to maint).
 238   (merge 7d68bb0766 rb/hashmap-h-compilation-fix later to maint).
 239   (merge 3449847168 cc/sha1-file-name later to maint).
 240   (merge ad622a256f ds/use-get-be64 later to maint).
 241   (merge f919ffebed sg/cocci-move-array later to maint).
 242   (merge 4e801463c7 jc/mailinfo-cleanup-fix later to maint).
 243   (merge ef5b3a6c5e nd/shared-index-fix later to maint).
 244   (merge 9f5258cbb8 tz/doc-show-defaults-to-head later to maint).
 245   (merge b780e4407d jc/worktree-add-short-help later to maint).
 246   (merge ae239fc8e5 rs/cocci-strbuf-addf-to-addstr later to maint).
 247   (merge 2e22a85e5c nd/ignore-glob-doc-update later to maint).
 248   (merge 3738031581 jk/gettext-poison later to maint).
 249   (merge 54360a1956 rj/sparse-updates later to maint).
 250   (merge 12e31a6b12 sg/doc-test-must-fail-args later to maint).
 251   (merge 760f1ad101 bc/doc-interpret-trailers-grammofix later to maint).
 252   (merge 4ccf461f56 bp/fsmonitor later to maint).
 253   (merge a6119f82b1 jk/test-hashmap-updates later to maint).
 254   (merge 5aea9fe6cc rd/typofix later to maint).
 255   (merge e4e5da2796 sb/status-doc-fix later to maint).
 256   (merge 7976e901c8 gs/test-unset-xdg-cache-home later to maint).
 257   (merge d023df1ee6 tg/worktree-create-tracking later to maint).