aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-23 12:25:22 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-23 12:25:22 +0000
commite1fbcc4cf91803fbe243e60067d7d58392299202 (patch)
treefe7aa0a5516ef18041aac06f30d3f770147dc1a9
parent5de2c3c2d3aedc304ca87ff224c9e4a6ec7cb14a (diff)
downloadruby-e1fbcc4cf91803fbe243e60067d7d58392299202.tar.gz
ChangeLog added.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34363 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3a65a3afff..9d86358aa6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,16 @@
+Mon Jan 23 20:33:11 2012 Jason Kay <geniture@me.com>
+
+ * lib/net/http.rb (Net::HTTP#connect): Writing entire packet at
+ once to avoid incomplete transmission. Current code using
+ writeline was causing sub-optimal conversing with a proxy due to
+ the connect tunnel request headers being split over multiple
+ packets. The modification I made allows the connect request to
+ be written as one packet, avoiding problems and optimizing the
+ conversation.
+
+ https://github.com/ruby/ruby/pull/72
+ [Feature #5460]
+
Mon Jan 23 17:06:17 2012 NARUSE, Yui <naruse@ruby-lang.org>
* lib/uri/mailto.rb (URI::MailTo.build): follow Array#to_s change of