diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-03-11 22:37:04 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-03-11 22:37:04 +0000 |
commit | 48b5b163fcb6dbf20402ae319114583d00a77805 (patch) | |
tree | d930406e778dacb3eac3a5b6efbbb08fc72454d5 /NEWS | |
parent | bcb9e567c422f535b4871ce2795179af808d0077 (diff) | |
download | ruby-48b5b163fcb6dbf20402ae319114583d00a77805.tar.gz |
* lib/tmpdir.rb: update document for changing
FileUtils.remove_entry_secure to FileUtils.remove_entry.
* NEWS: add incompatiblity note for lib/tmpdir.rb.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34980 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -73,6 +73,13 @@ with all sufficient information, see the ChangeLog file. * Shellwords#shelljoin() accepts non-string objects in the given array, each of which is stringified using to_s. +* lib/tmpdir.rb + * incompatible changes: + * Dir.mktmpdir uses FileUtils.remove_entry instead of + FileUtils.remove_entry_secure. This means that applications should not + change the permission of the created temporary directory to make + accessible from other users. + * zlib * Added support for the new deflate strategies Zlib::RLE and Zlib::FIXED. @@ -93,3 +100,7 @@ with all sufficient information, see the ChangeLog file. * Kernel#respond_to? against a protected method now returns false unless the second argument is true. + + * Dir.mktmpdir in lib/tmpdir.rb + + See above. |