From 699d47e1d2777ad1c2a867671e35daa821769f29 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Mon, 10 Jul 2017 14:02:07 -0700 Subject: [PATCH] Prepare for 2.13.3 --- Documentation/RelNotes/2.13.3.txt | 53 +++++++++++++++++++++++++++++++++++++++ RelNotes | 2 +- 2 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 Documentation/RelNotes/2.13.3.txt diff --git a/Documentation/RelNotes/2.13.3.txt b/Documentation/RelNotes/2.13.3.txt new file mode 100644 index 0000000000..44d9108ce4 --- /dev/null +++ b/Documentation/RelNotes/2.13.3.txt @@ -0,0 +1,53 @@ +Git v2.13.3 Release Notes +========================= + +Fixes since v2.13.2 +------------------- + + * The "collision detecting" SHA-1 implementation shipped with 2.13.2 + was still broken on some platforms. Update to the upstream code + again to take their fix. + + * The 'diff-highlight' program (in contrib/) has been restructured + for easier reuse by an external project 'diff-so-fancy'. + + * "git mergetool" learned to work around a wrapper MacOS X adds + around underlying meld. + + * An example in documentation that does not work in multi worktree + configuration has been corrected. + + * The pretty-format specifiers like '%h', '%t', etc. had an + optimization that no longer works correctly. In preparation/hope + of getting it correctly implemented, first discard the optimization + that is broken. + + * The code to pick up and execute command alias definition from the + configuration used to switch to the top of the working tree and + then come back when the expanded alias was executed, which was + unnecessarilyl complex. Attempt to simplify the logic by using the + early-config mechanism that does not chdir around. + + * "git add -p" were updated in 2.12 timeframe to cope with custom + core.commentchar but the implementation was buggy and a + metacharacter like $ and * did not work. + + * Fix a recent regression to "git rebase -i" and add tests that would + have caught it and others. + + * An unaligned 32-bit access in pack-bitmap code ahs been corrected. + + * Tighten error checks for invalid "git apply" input. + + * The split index code did not honor core.sharedrepository setting + correctly. + + * The Makefile rule in contrib/subtree for building documentation + learned to honour USE_ASCIIDOCTOR just like the main documentation + set does. + + * A few tests that tried to verify the contents of push certificates + did not use 'git rev-parse' to formulate the line to look for in + the certificate correctly. + +Also contains various documentation updates and code clean-ups. diff --git a/RelNotes b/RelNotes index d75ac9dd09..6740545fc8 120000 --- a/RelNotes +++ b/RelNotes @@ -1 +1 @@ -Documentation/RelNotes/2.13.2.txt \ No newline at end of file +Documentation/RelNotes/2.13.3.txt \ No newline at end of file -- 2.11.4.GIT