Documentation / RelNotes / 2.21.0.txton commit Merge branch 'jk/remote-insteadof-cleanup' (424a665)
   1Git 2.21 Release Notes
   2======================
   3
   4Backward Compatibility Notes
   5----------------------------
   6
   7
   8Updates since v2.20
   9-------------------
  10
  11UI, Workflows & Features
  12
  13 * The "http.version" configuration variable can be used with recent
  14   enough cURL library to force the version of HTTP used to talk when
  15   fetching and pushing.
  16
  17 * Small fixes and features for fast-export and fast-import, mostly on
  18   the fast-export side.
  19
  20 * "git push $there $src:$dst" rejects when $dst is not a fully
  21   qualified refname and not clear what the end user meant.  The
  22   codepath has been taught to give a clearer error message, and also
  23   guess where the push should go by taking the type of the pushed
  24   object into account (e.g. a tag object would want to go under
  25   refs/tags/).
  26
  27 * "git checkout [<tree-ish>] path..." learned to report the number of
  28   paths that have been checked out of the index or the tree-ish,
  29   which gives it the same degree of noisy-ness as the case in which
  30   the command checks out a branch.
  31
  32 * "git quiltimport" learned "--keep-non-patch" option.
  33
  34 * "git worktree remove" and "git worktree move" refused to work when
  35   there is a submodule involved.  This has been loosened to ignore
  36   uninitialized submodules.
  37
  38 * "git cherry-pick -m1" was forbidden when picking a non-merge
  39   commit, even though there _is_ parent number 1 for such a commit.
  40   This was done to avoid mistakes back when "cherry-pick" was about
  41   picking a single commit, but is no longer useful with "cherry-pick"
  42   that can pick a range of commits.  Now the "-m$num" option is
  43   allowed when picking any commit, as long as $num names an existing
  44   parent of the commit.
  45
  46 * Update "git multimail" from the upstream.
  47
  48 * "git p4" update.
  49
  50 * The "--format=<placeholder>" option of for-each-ref, branch and tag
  51   learned to show a few more traits of objects that can be learned by
  52   the object_info API.
  53
  54
  55Performance, Internal Implementation, Development Support etc.
  56
  57 * Code clean-up with optimization for the codepath that checks
  58   (non-)existence of loose objects.
  59
  60 * More codepaths become aware of working with in-core repository
  61   instance other than the default "the_repository".
  62
  63 * The "strncat()" function is now among the banned functions.
  64
  65 * Portability updates for the HPE NonStop platform.
  66
  67 * Earlier we added "-Wformat-security" to developer builds, assuming
  68   that "-Wall" (which includes "-Wformat" which in turn is required
  69   to use "-Wformat-security") is always in effect.  This is not true
  70   when config.mak.autogen is in use, unfortunately.  This has been
  71   fixed by unconditionally adding "-Wall" to developer builds.
  72
  73 * The loose object cache used to optimize existence look-up has been
  74   updated.
  75
  76 * Flaky tests can now be repeatedly run under load with the
  77   "--stress" option.
  78   (merge fb7d1e3ac8 sg/stress-test later to maint).
  79
  80
  81Fixes since v2.20
  82-----------------
  83
  84 * Updates for corner cases in merge-recursive.
  85   (merge cc4cb0902c en/merge-path-collision later to maint).
  86
  87 * "git checkout frotz" (without any double-dash) avoids ambiguity by
  88   making sure 'frotz' cannot be interpreted as a revision and as a
  89   path at the same time.  This safety has been updated to check also
  90   a unique remote-tracking branch 'frotz' in a remote, when dwimming
  91   to create a local branch 'frotz' out of a remote-tracking branch
  92   'frotz' from a remote.
  93   (merge be4908f103 nd/checkout-dwim-fix later to maint).
  94
  95 * Refspecs configured with "git -c var=val clone" did not propagate
  96   to the resulting repository, which has been corrected.
  97   (merge 7eae4a3ac4 sg/clone-initial-fetch-configuration later to maint).
  98
  99 * A properly configured username/email is required under
 100   user.useConfigOnly in order to create commits; now "git stash"
 101   (even though it creates commit objects to represent stash entries)
 102   command is exempt from the requirement.
 103   (merge 3bc2111fc2 sd/stash-wo-user-name later to maint).
 104
 105 * The http-backend CGI process did not correctly clean up the child
 106   processes it spawns to run upload-pack etc. when it dies itself,
 107   which has been corrected.
 108   (merge 02818a98d7 mk/http-backend-kill-children-before-exit later to maint).
 109
 110 * "git rev-list --exclude-promisor-objects" had to take an object
 111   that does not exist locally (and is lazily available) from the
 112   command line without barfing, but the code dereferenced NULL.
 113   (merge 4cf67869b2 md/list-lazy-objects-fix later to maint).
 114
 115 * The traversal over tree objects has learned to honor
 116   ":(attr:label)" pathspec match, which has been implemented only for
 117   enumerating paths on the filesystem.
 118   (merge 5a0b97b34c nd/attr-pathspec-in-tree-walk later to maint).
 119
 120 * BSD port updates.
 121   (merge 4e3ecbd439 cb/openbsd-allows-reading-directory later to maint).
 122   (merge b6bdc2a0f5 cb/t5004-empty-tar-archive-fix later to maint).
 123   (merge 82cbc8cde2 cb/test-lint-cp-a later to maint).
 124
 125 * Lines that begin with a certain keyword that come over the wire, as
 126   well as lines that consist only of one of these keywords, ought to
 127   be painted in color for easier eyeballing, but the latter was
 128   broken ever since the feature was introduced in 2.19, which has
 129   been corrected.
 130   (merge 1f67290450 hn/highlight-sideband-keywords later to maint).
 131
 132 * "git log -G<regex>" looked for a hunk in the "git log -p" patch
 133   output that contained a string that matches the given pattern.
 134   Optimize this code to ignore binary files, which by default will
 135   not show any hunk that would match any pattern (unless textconv or
 136   the --text option is in effect, that is).
 137   (merge e0e7cb8080 tb/log-G-binary later to maint).
 138
 139 * "git submodule update" ought to use a single job unless asked, but
 140   by mistake used multiple jobs, which has been fixed.
 141   (merge e3a9d1aca9 sb/submodule-fetchjobs-default-to-one later to maint).
 142
 143 * "git stripspace" should be usable outside a git repository, but
 144   under the "-s" or "-c" mode, it didn't.
 145   (merge 957da75802 jn/stripspace-wo-repository later to maint).
 146
 147 * Some of the documentation pages formatted incorrectly with
 148   Asciidoctor, which have been fixed.
 149   (merge b62eb1d2f4 ma/asciidoctor later to maint).
 150
 151 * The core.worktree setting in a submodule repository should not be
 152   pointing at a directory when the submodule loses its working tree
 153   (e.g. getting deinit'ed), but the code did not properly maintain
 154   this invariant.
 155
 156 * With zsh, "git cmd path<TAB>" was completed to "git cmd path name"
 157   when the completed path has a special character like SP in it,
 158   without any attempt to keep "path name" a single filename.  This
 159   has been fixed to complete it to "git cmd path\ name" just like
 160   Bash completion does.
 161
 162 * The test suite tried to see if it is run under bash, but the check
 163   itself failed under some other implementations of shell (notably
 164   under NetBSD).  This has been corrected.
 165   (merge 54ea72f09c sg/test-bash-version-fix later to maint).
 166
 167 * "git gc" and "git repack" did not close the open packfiles that
 168   they found unneeded before removing them, which didn't work on a
 169   platform incapable of removing an open file.  This has been
 170   corrected.
 171   (merge 5bdece0d70 js/gc-repack-close-before-remove later to maint).
 172
 173 * Code cleanup, docfix, build fix, etc.
 174   (merge 89ba9a79ae hb/t0061-dot-in-path-fix later to maint).
 175   (merge d173e799ea sb/diff-color-moved-config-option-fixup later to maint).
 176   (merge a8f5a59067 en/directory-renames-nothanks-doc-update later to maint).
 177   (merge ec36c42a63 nd/indentation-fix later to maint).
 178   (merge f116ee21cd do/gitweb-strict-export-conf-doc later to maint).
 179   (merge 112ea42663 fd/gitweb-snapshot-conf-doc-fix later to maint).
 180   (merge 1cadad6f65 tb/use-common-win32-pathfuncs-on-cygwin later to maint).
 181   (merge 57e9dcaa65 km/rebase-doc-typofix later to maint).
 182   (merge b8b4cb27e6 ds/gc-doc-typofix later to maint).
 183   (merge 3b3357626e nd/style-opening-brace later to maint).
 184   (merge b4583d5595 es/doc-worktree-guessremote-config later to maint).
 185   (merge cce99cd8c6 ds/commit-graph-assert-missing-parents later to maint).
 186   (merge 0650614982 cy/completion-typofix later to maint).
 187   (merge 6881925ef5 rs/sha1-file-close-mapped-file-on-error later to maint).
 188   (merge bd8d6f0def en/show-ref-doc-fix later to maint).