summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-11 16:04:00 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-11 16:04:00 +0000
commitea8605d90fd2c8729c0283ad3e2a5dab22cf161f (patch)
tree9f41bc7698d7209f1c140e3a7ff451ce63ea271b /doc
parentd234e0eb20083792d6697025eef0c15713c1d7ce (diff)
Add user visible changes after 1.6.5.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'doc')
-rw-r--r--doc/NEWS80
1 files changed, 80 insertions, 0 deletions
diff --git a/doc/NEWS b/doc/NEWS
index 95ba1f10b7..63898e4839 100644
--- a/doc/NEWS
+++ b/doc/NEWS
@@ -1,3 +1,83 @@
+Summary of the changes since 1.6.7:
+
+: Marshal.dump
+
+ Fixed where Marshal::dump(foo, proc{...}) fails. (which was
+ accidentally broken between 1.6.6 and 1.6.7)
+
+Summary of the changes since 1.6.6:
+
+: Digest::SHA2
+
+ Fixed where it had a couple of off-by-one errors in the algorithm
+ implementation.
+
+: Digest
+
+ Fixed where it polluted namespace by defining some global symbols
+ that conflict with OpenSSL.
+
+: Syslog
+
+ Changed from a singleton class to a module for ease of use, keeping
+ backward compatibility intact.
+
+: URI::join
+
+ Added.
+
+: URI
+
+ Fixed where some methods did not conform to the RFC's in some
+ (rather trivial) points.
+
+: Float()
+
+ Enhanced so that it allows underscores between digits.
+
+: net/protocol: Protocol#start
+
+ Now returns the return value of the given block.
+
+: net/protocol
+
+ Fixed to set timeout limit by default, and set read_timeout
+ dynamically.
+
+: net/smtp
+
+ Fixed not to resolve HELO domain automatically.
+
+: net/http: HTTP#{request_get,request_post}
+
+ Renamed from get2 and post2, respectively.
+
+: net/pop: POP#auth_only
+
+ Fixed.
+
+: $SAFE / block
+
+ Fixed not to pass a tainted block if $SAFE > 0.
+
+: ruby-mode.el
+
+ Now handles nested parentheses in a string and terminators in #{},
+ and fontifies instance/class/global variables that start with '_'.
+
+: Time#{gmtoff,gmt_offset,utc_offset}
+
+ Added.
+
+: time.rb
+
+ Imported. (which is formerly known as "timex.rb")
+
+: bugfixes
+
+ Numeral bugs have been fixed. There are too many to mention here.
+ Please refer to ChangeLog.
+
Summary of the changes since 1.6.5:
: Syslog module