1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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
This commit is contained in:
knu 2009-02-09 03:42:08 +00:00
parent 7af830bd1d
commit 4579551c94

23
NEWS
View file

@ -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