From 441c4a40173fe1ee8a5c0094e587dfc47e2a6460 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 4 Sep 2015 10:25:47 -0700 Subject: Git 2.2.3 Signed-off-by: Junio C Hamano --- Documentation/RelNotes/2.2.3.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Documentation/RelNotes/2.2.3.txt (limited to 'Documentation/RelNotes') diff --git a/Documentation/RelNotes/2.2.3.txt b/Documentation/RelNotes/2.2.3.txt new file mode 100644 index 0000000000..5bfffa4106 --- /dev/null +++ b/Documentation/RelNotes/2.2.3.txt @@ -0,0 +1,9 @@ +Git v2.2.3 Release Notes +======================== + +Fixes since v2.2.2 +------------------ + + * A handful of codepaths that used to use fixed-sized arrays to hold + pathnames have been corrected to use strbuf and other mechanisms to + allow longer pathnames without fearing overflows. -- cgit v1.2.1 From ecad27cf98c391d5cfdc26ce0e442e02347baad0 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 4 Sep 2015 10:31:34 -0700 Subject: Git 2.3.9 Signed-off-by: Junio C Hamano --- Documentation/RelNotes/2.3.9.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Documentation/RelNotes/2.3.9.txt (limited to 'Documentation/RelNotes') diff --git a/Documentation/RelNotes/2.3.9.txt b/Documentation/RelNotes/2.3.9.txt new file mode 100644 index 0000000000..1a2ad3235a --- /dev/null +++ b/Documentation/RelNotes/2.3.9.txt @@ -0,0 +1,9 @@ +Git v2.3.9 Release Notes +======================== + +Fixes since v2.3.8 +------------------ + + * A handful of codepaths that used to use fixed-sized arrays to hold + pathnames have been corrected to use strbuf and other mechanisms to + allow longer pathnames without fearing overflows. -- cgit v1.2.1 From 74b67638166ca2e66497ede559dbf393e7af8b40 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 4 Sep 2015 10:36:00 -0700 Subject: Git 2.4.9 Signed-off-by: Junio C Hamano --- Documentation/RelNotes/2.4.9.txt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Documentation/RelNotes/2.4.9.txt (limited to 'Documentation/RelNotes') diff --git a/Documentation/RelNotes/2.4.9.txt b/Documentation/RelNotes/2.4.9.txt new file mode 100644 index 0000000000..09af9ddbc7 --- /dev/null +++ b/Documentation/RelNotes/2.4.9.txt @@ -0,0 +1,9 @@ +Git v2.4.9 Release Notes +======================== + +Fixes since v2.4.9 +------------------ + + * A handful of codepaths that used to use fixed-sized arrays to hold + pathnames have been corrected to use strbuf and other mechanisms to + allow longer pathnames without fearing overflows. -- cgit v1.2.1 From 27ea6f85beff1173ec74349fa35c45951feee570 Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Fri, 4 Sep 2015 10:46:00 -0700 Subject: Git 2.5.2 Signed-off-by: Junio C Hamano --- Documentation/RelNotes/2.5.2.txt | 63 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 Documentation/RelNotes/2.5.2.txt (limited to 'Documentation/RelNotes') diff --git a/Documentation/RelNotes/2.5.2.txt b/Documentation/RelNotes/2.5.2.txt new file mode 100644 index 0000000000..3f749398bb --- /dev/null +++ b/Documentation/RelNotes/2.5.2.txt @@ -0,0 +1,63 @@ +Git v2.5.2 Release Notes +======================== + +Fixes since v2.5.1 +------------------ + + * "git init empty && git -C empty log" said "bad default revision 'HEAD'", + which was found to be a bit confusing to new users. + + * The "interpret-trailers" helper mistook a multi-paragraph title of + a commit log message with a colon in it as the end of the trailer + block. + + * When re-priming the cache-tree opportunistically while committing + the in-core index as-is, we mistakenly invalidated the in-core + index too aggressively, causing the experimental split-index code + to unnecessarily rewrite the on-disk index file(s). + + * "git archive" did not use zip64 extension when creating an archive + with more than 64k entries, which nobody should need, right ;-)? + + * The code in "multiple-worktree" support that attempted to recover + from an inconsistent state updated an incorrect file. + + * "git rev-list" does not take "--notes" option, but did not complain + when one is given. + + * Because the configuration system does not allow "alias.0foo" and + "pager.0foo" as the configuration key, the user cannot use '0foo' + as a custom command name anyway, but "git 0foo" tried to look these + keys up and emitted useless warnings before saying '0foo is not a + git command'. These warning messages have been squelched. + + * We recently rewrote one of the build scripts in Perl, which made it + necessary to have Perl to build Git. Reduced Perl dependency by + rewriting it again using sed. + + * t1509 test that requires a dedicated VM environment had some + bitrot, which has been corrected. + + * strbuf_read() used to have one extra iteration (and an unnecessary + strbuf_grow() of 8kB), which was eliminated. + + * The codepath to produce error messages had a hard-coded limit to + the size of the message, primarily to avoid memory allocation while + calling die(). + + * When trying to see that an object does not exist, a state errno + leaked from our "first try to open a packfile with O_NOATIME and + then if it fails retry without it" logic on a system that refuses + O_NOATIME. This confused us and caused us to die, saying that the + packfile is unreadable, when we should have just reported that the + object does not exist in that packfile to the caller. + + * An off-by-one error made "git remote" to mishandle a remote with a + single letter nickname. + + * A handful of codepaths that used to use fixed-sized arrays to hold + pathnames have been corrected to use strbuf and other mechanisms to + allow longer pathnames without fearing overflows. + +Also contains typofixes, documentation updates and trivial code +clean-ups. -- cgit v1.2.1