diff --git a/doc/go1.3.html b/doc/go1.3.html index 07e695124d..c628763ad5 100644 --- a/doc/go1.3.html +++ b/doc/go1.3.html @@ -350,6 +350,14 @@ the Dialer struct now has a KeepAlive option to specify a keep-alive period for the connection. +
  • +The net/http package's +Transport +now closes Request.Body +consistently, even on errors. Previously it was closed on success and +closed on some errors, sometimes depending on timing. +
  • +
  • TODO: net: enable fast socket creation using SOCK_CLOEXEC and Accept4 on FreeBSD 10 (69100043)