From 4579551c94c6a522f94e9c2f0538e5478ed32fe7 Mon Sep 17 00:00:00 2001 From: knu Date: Mon, 9 Feb 2009 03:42:08 +0000 Subject: [PATCH] Mention the changes just made in open-uri. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@22160 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- NEWS | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/NEWS b/NEWS index 2a2873fc05..15af1e016e 100644 --- a/NEWS +++ b/NEWS @@ -85,6 +85,22 @@ with all sufficient information, see the ChangeLog file. Renamed from GDBM#index. +* open-uri + + * Added a lot of new options: + + * :ftp_active_mode => bool + + Specify false to enable FTP passive mode. It is adviced that + this option should be explicitly set for forward compatibility + because the default mode is changed in Ruby >= 1.9. + + * :read_timeout => seconds + * :proxy_http_basic_authentication => [uri, user, password] + * :redirect => bool + * :ssl_verify_mode => OpenSSL::SSL::VERIFY_* + * :ssl_ca_cert => filename + * sdbm SDBM#key @@ -137,10 +153,17 @@ with all sufficient information, see the ChangeLog file. === Compatibility issues (excluding feature bug fixes) +* builtin classes + * Enumerator#rewind See above. +* open-uri + + * URI::InvalidURIError is converted to OpenURI::HTTPError if an + invalid HTTP URI is given. + == Changes since the 1.8.6 release === Configuration changes