Changes for native delegation branch
[gitmo/Moose.git] / Changes
diff --git a/Changes b/Changes
index 432909c..8c7cf41 100644 (file)
--- a/Changes
+++ b/Changes
@@ -3,6 +3,16 @@ for, noteworthy changes.
 
 NEXT
 
+  [ENHANCEMENTS]
+
+  * Almost every native delegation method which changes the attribute value
+    now has an explicitly documented return value. In general, this return
+    value matches what Perl would return for the same operation. (Dave Rolsky)
+
+  * Lots of work on native delegation documentation, including documenting
+    what arguments each native delegation method allows or requires. (Dave
+    Rolsky)
+
   [BUG FIXES]
 
   * A number of native trait methods which expected strings as arguments did
@@ -10,6 +20,16 @@ NEXT
     String->replace, and String->substr. Reported by Whitney Jackson. RT
     #61962. (Dave Rolsky)
 
+  * 'no Moose' no longer inadvertently removes imports it didn't create
+    itself. RT #60013. (Florian Ragwitz, doy)
+
+  * Roles now support passing an array reference of method names to method
+    modifier sugar functions. (doy)
+
+  * Native traits no longer use optimized inlining routines if the instance
+    requests it (in particular, if inline_get_slot_value doesn't return
+    something that can be assigned to). This should fix issues with
+    KiokuDB::Class. (doy)
 
 1.15 Tue, Oct 5, 2010
 
@@ -1235,7 +1255,7 @@ NEXT
         vetting on names created via the sugar functions, so that they
         can only contain alphanumerics, ":", and ".". (Dave Rolsky)
 
-0.65 Thu, January 22, 2008
+0.65 Thu, January 22, 2009
     * Moose and Moose::Meta::Method::Overridden
       - If an overridden method called super(), and then the
         superclass's method (not overridden) _also_ called super(),