diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-15 10:45:02 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-15 10:45:02 -0700 |
commit | dbc96a77a4e699e356a54f85a93ac29a27c0780e (patch) | |
tree | be7b2fef377b1a7d1c2bd3fbbde338230c7d2827 /Documentation/RelNotes | |
parent | f23777cda979f4bfb9fe36bf7c7ef75e955791b8 (diff) | |
parent | 5addd1c7531cc644787cd562a3c22a3b714c7d77 (diff) | |
download | git-dbc96a77a4e699e356a54f85a93ac29a27c0780e.tar.gz |
Sync with 1.8.3.3
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/RelNotes')
-rw-r--r-- | Documentation/RelNotes/1.8.3.3.txt | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Documentation/RelNotes/1.8.3.3.txt b/Documentation/RelNotes/1.8.3.3.txt index 04289e793c..9ba4f4da0f 100644 --- a/Documentation/RelNotes/1.8.3.3.txt +++ b/Documentation/RelNotes/1.8.3.3.txt @@ -4,6 +4,27 @@ Git v1.8.3.3 Release Notes Fixes since v1.8.3.2 -------------------- + * "git apply" parsed patches that add new files, generated by programs + other than Git, incorrectly. This is an old breakage in v1.7.11. + + * Older cURL wanted piece of memory we call it with to be stable, but + we updated the auth material after handing it to a call. + + * "git pull" into nothing trashed "local changes" that were in the + index. + + * Many "git submodule" operations did not work on a submodule at a + path whose name is not in ASCII. + + * "cherry-pick" had a small leak in its error codepath. + + * Logic used by git-send-email to suppress cc mishandled names like + "A U. Thor" <author@example.xz>, where the human readable part + needs to be quoted (the user input may not have the double quotes + around the name, and comparison was done between quoted and + unquoted strings). It also mishandled names that need RFC2047 + quoting. + * "gitweb" forgot to clear a global variable $search_regexp upon each request, mistakenly carrying over the previous search to a new one when used as a persistent CGI. |