Documentation / RelNotes-1.6.0.3.txton commit gitweb: embed snapshot format parameter in PATH_INFO (c752a0e)
   1GIT v1.6.0.3 Release Notes
   2==========================
   3
   4Fixes since v1.6.0.2
   5--------------------
   6
   7* "git archive --format=zip" did not honor core.autocrlf while
   8  --format=tar did.
   9
  10* Continuing "git rebase -i" was very confused when the user left modified
  11  files in the working tree while resolving conflicts.
  12
  13* Continuing "git rebase -i" was also very confused when the user left
  14  some staged changes in the index after "edit".
  15
  16* "git rebase -i" now honors the pre-rebase hook, just like the
  17  other rebase implementations "git rebase" and "git rebase -m".
  18
  19* "git rebase -i" incorrectly aborted when there is no commit to replay.
  20
  21* Behaviour of "git diff --quiet" was inconsistent with "diff --exit-code"
  22  with the output redirected to /dev/null.
  23
  24* "git diff --no-index" on binary files no longer outputs a bogus
  25  "diff --git" header line.
  26
  27* "git diff" hunk header patterns with multiple elements separated by LF
  28  were not used correctly.
  29
  30* "git gc" when ejecting otherwise unreachable objects from packfiles into
  31  loose form leaked memory.
  32
  33* Hunk headers in "git diff" default to using extended regular
  34  expressions, fixing some of the internal patterns on non-GNU
  35  platforms.
  36
  37* New config "diff.*.xfuncname" exposes extended regular expressions
  38  for user specified hunk header patterns.
  39
  40* "git index-pack" was recently broken and mishandled objects added by
  41  thin-pack completion processing under memory pressure.
  42
  43* "git stash apply sash@{1}" was fixed to error out.  Prior versions
  44  would have applied stash@{0} incorrectly.
  45
  46* "git stash apply" now offers a better suggestion on how to continue
  47  if the working tree is currently dirty.
  48
  49* "git for-each-ref --format=%(subject)" fixed for commits with no
  50  no newline in the message body.
  51
  52* "git remote" fixed to protect printf from user input.
  53
  54* "git remote show -v" now displays all URLs of a remote.
  55
  56* "git checkout -b branch" was confused when branch already existed.
  57
  58* "git checkout -q" once again suppresses the locally modified file list.
  59
  60* "git clone -q", "git fetch -q" asks remote side to not send
  61  progress messages, actually making their output quiet.
  62
  63* Cross-directory renames are no longer used when creating packs.  This
  64  allows more graceful behavior on filesystems like sshfs.
  65
  66* Stale temporary files under $GIT_DIR/objects/pack are now cleaned up
  67  automatically by "git prune".
  68
  69* "git merge" once again removes directories after the last file has
  70  been removed from it during the merge.
  71
  72* "git merge" did not allocate enough memory for the structure itself when
  73  enumerating the parents of the resulting commit.
  74
  75* "git blame -C -C" no longer segfaults while trying to pass blame if
  76   it encounters a submodule reference.
  77
  78* "git rm" incorrectly claimed that you have local modifications when a
  79  path was merely stat-dirty.
  80
  81* "git svn" fixed to display an error message when 'set-tree' failed,
  82   instead of a Perl compile error.
  83
  84* "git submodule" fixed to handle checking out a different commit
  85  than HEAD after initializing the submodule.
  86
  87* The "git commit" error message when there are still unmerged
  88  files present was clarified to match "git write-tree".
  89
  90* "git init" was confused when core.bare or core.sharedRepository are set
  91  in system or user global configuration file by mistake.  When --bare or
  92  --shared is given from the command line, these now override such
  93  settings made outside the repositories.
  94
  95* Some segfaults due to uncaught NULL pointers were fixed in multiple
  96  tools such as apply, reset, update-index.
  97
  98* Solaris builds now default to OLD_ICONV=1 to avoid compile warnings;
  99  Solaris 8 does not define NEEDS_LIBICONV by default.
 100
 101* "Git.pm" tests relied on unnecessarily more recent version of Perl.
 102
 103* "gitweb" triggered undef warning on commits without log messages.
 104
 105* "gitweb" triggered undef warnings on missing trees.
 106
 107* "gitweb" now removes PATH_INFO from its URLs so users don't have
 108  to manually set the URL in the gitweb configuration.
 109
 110* Bash completion removed support for legacy "git-fetch", "git-push"
 111  and "git-pull" as these are no longer installed.  Dashless form
 112  ("git fetch") is still however supported.
 113
 114Many other documentation updates.
 115
 116--
 117exec >/var/tmp/1
 118O=v1.6.0.2-110-gf07c3c5
 119echo O=$(git describe maint)
 120git shortlog --no-merges $O..maint