summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-09 03:42:08 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-02-09 03:42:08 +0000
commit4579551c94c6a522f94e9c2f0538e5478ed32fe7 (patch)
tree163b2fa8b147abd660a82e719a39d78fa56e3de6
parent7af830bd1d8406c9da08f9c5f89ca08349eda48f (diff)
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
-rw-r--r--NEWS23
1 files changed, 23 insertions, 0 deletions
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