aboutsummaryrefslogtreecommitdiffstats
path: root/NEWS
diff options
context:
space:
mode:
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS19
1 files changed, 19 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 90761c4eca..52101ecb66 100644
--- a/NEWS
+++ b/NEWS
@@ -22,6 +22,9 @@ with all sufficient information, see the ChangeLog file or Redmine
* Refinements is enabled with Kernel#send and BasicObject#__send__.
[Feature #11476]
+* Resque modifier now applicable to method arguments.
+ [Feature #12686]
+
=== Core classes updates (outstanding ones only)
* Array
@@ -35,6 +38,9 @@ with all sufficient information, see the ChangeLog file or Redmine
This is different from Enumerable#sum in that Array#sum doesn't depend on
the definition of each method.
+ * Array#concat [Feature #12333]
+ Now takes multiple arguments.
+
* Comparable
* Comparable#clamp. [Feature #10594]
@@ -91,6 +97,10 @@ with all sufficient information, see the ChangeLog file or Redmine
* Module.used_modules [Feature #7418]
+* Numeric
+
+ * Numeric#finite?, Numeric#infinite? [Feature #12039]
+
* Regexp
* Regexp#match? [Feature #8110]
@@ -112,6 +122,9 @@ with all sufficient information, see the ChangeLog file or Redmine
* String.new(capacity: size) [Feature #12024]
+ * String#concat, String#prepend [Feature #12333]
+ Now takes multiple arguments.
+
* Symbol
* Symbol#match now returns MatchData. [Bug #11991]
@@ -198,6 +211,10 @@ with all sufficient information, see the ChangeLog file or Redmine
is processed, but the operation has to be limited to ASCII only.
A good example of this are internationalized domain names.
+* TRUE / FALSE / NIL
+ These constants are now obsoleted. [Feature #12574]
+ Use true / false / nil resp. instead.
+
=== Stdlib compatibility issues (excluding feature bug fixes)
* DateTime
@@ -224,6 +241,8 @@ with all sufficient information, see the ChangeLog file or Redmine
RUBY_SHOW_COPYRIGHT_TO_DIE is set to 0. This will be the default in
the future.
+* rb_gc_adjust_memory_usage() [Feature #12690]
+
=== Supported platform changes
* FreeBSD < 4 is no longer supported