summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorshugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-14 00:53:37 +0000
committershugo <shugo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-14 00:53:37 +0000
commit73a229c3a5032d50f21de698869cf2117084d12f (patch)
tree16a52d44a07cdaa383cbda494eadacdadcaf83e9 /NEWS
parent34f25ffaf4b3e45f3bc529062a4506e8e163c87c (diff)
* NEWS: add notes for $SAFE.
* doc/security.rd: remove the description of $SAFE=4. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41290 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS10
1 files changed, 10 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 72662cff59..0a7473870a 100644
--- a/NEWS
+++ b/NEWS
@@ -43,6 +43,10 @@ with all sufficient information, see the ChangeLog file.
=== Core classes compatibility issues (excluding feature bug fixes)
+* Kernel#untrusted?, untrust, and trust
+ * These methods are deprecated and their behavior is same as tainted?,
+ taint, and untaint, respectively. If $VERBOSE is true, they show warnings.
+
* IO
* incompatible changes:
* open ignore internal encoding if external encoding is ASCII-8BIT.
@@ -120,4 +124,10 @@ with all sufficient information, see the ChangeLog file.
It gets encoding argument to convert before percent encode.
UTF-16 strings aren't converted to UTF-8 before percent encode by default.
+=== Built-in global variables compatibility issues
+
+* $SAFE
+ * $SAFE=4 is obsolete. If $SAFE is set to 4 or larger, an ArgumentError
+ is raised.
+
=== C API updates