Sixth batch for post 2.8 cycle

Signed-off-by: Junio C Hamano <gitster@pobox.com>

Junio C Hamano committed Apr 22, 2016 at 15:48 UTC a0c4ddf6776dfcd9ea778e22abf1fbdcfa56d3aa
1 file changed +44
Documentation/RelNotes/2.9.0.txt
+44
@@ -80,6 +80,10 @@ UI, Workflows & Features
80 such a case, and allows the users to override it with a new option,
81 "--no-expand-tabs".
82
83 + * "git send-email" now uses a more readable timestamps when
84 + formulating a message ID.
85 + (merge f916ab0 ew/send-email-readable-message-id later to maint).
86 +
87
88 Performance, Internal Implementation, Development Support etc.
89
@@ -213,6 +217,43 @@ notes for details).
217 branch we locally checked out).
218 (merge 95c38fb jk/branch-shortening-funny-symrefs later to maint).
219
220 + * A partial rewrite of "git submodule" in the 2.7 timeframe changed
221 + the way the gitdir: pointer in the submodules point at the real
222 + repository location to use absolute paths by accident. This has
223 + been corrected.
224 + (merge 1f15ba1 sb/submodule-helper-clone-regression-fix later to maint).
225 +
226 + * "git commit" misbehaved in a few minor ways when an empty message
227 + is given via -m '', all of which has been corrected.
228 + (merge 27014cb ad/commit-have-m-option later to maint).
229 +
230 + * Support for CRAM-MD5 authentication method in "git imap-send" did
231 + not work well.
232 + (merge eb94ee7 ky/imap-send later to maint).
233 +
234 + * Upcoming OpenSSL 1.1.0 will break compilation b updating a few APIs
235 + we use in imap-send, which has been adjusted for the change.
236 + (merge 1245c74 ky/imap-send-openssl-1.1.0 later to maint).
237 +
238 + * The socks5:// proxy support added back in 2.6.4 days was not aware
239 + that socks5h:// proxies behave differently.
240 + (merge 87f8a0b jc/http-socks5h later to maint).
241 +
242 + * "git config" had a codepath that tried to pass a NULL to
243 + printf("%s"), which nobody seems to have noticed.
244 + (merge 1cae428 jk/do-not-printf-NULL later to maint).
245 +
246 + * On Cygwin, object creation uses the "create a temporary and then
247 + rename it to the final name" pattern, not "create a temporary,
248 + hardlink it to the final name and then unlink the temporary"
249 + pattern.
250 +
251 + This is necessary to use Git on Windows shared directories, and is
252 + already enabled for the MinGW and plain Windows builds. It also
253 + has been used in Cygwin packaged versions of Git for quite a while.
254 + See http://thread.gmane.org/gmane.comp.version-control.git/291853
255 + (merge e53a64b ad/cygwin-wants-rename later to maint).
256 +
257 * Other minor clean-ups and documentation updates
258 (merge aed7480 mm/lockfile-error-message later to maint).
259 (merge bfee614 jc/index-pack later to maint).
@@ -230,3 +271,6 @@ notes for details).
271 (merge 8e9b208 js/mingw-tests-2.8 later to maint).
272 (merge d55de70 jc/makefile-redirection-stderr later to maint).
273 (merge 4232b21 ep/trace-doc-sample-fix later to maint).
274 + (merge ef8c95e ew/send-email-drop-data-dumper later to maint).
275 + (merge 24041d6 jc/xstrfmt-null-with-prec-0 later to maint).
276 + (merge 7bec7f5 jk/use-write-script-more later to maint).