Changes for member coercion fixes
[gitmo/Moose.git] / Changes
diff --git a/Changes b/Changes
index 87fbe3a..e367dd5 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,35 @@
 Also see Moose::Manual::Delta for more details of, and workarounds
 for, noteworthy changes.
 
+[NEXT]
+
+  [ENHANCEMENTS]
+
+  * Type constraint objects now have an assert_coerce method which will either
+    return a valid value or throw an error. (rjbs)
+
+  [BUG FIXES]
+
+  * The native Array and Hash delegation methods now coerce individual new
+    members, if the _member type_ has a coercion. In other words, if the array
+    reference is defined as an ArrayRef[DateTime], and you've defined a
+    coercion from Int to DateTime, then pushing an integer via a delegation
+    method will coerce the integer to a DateTime object. Reported by Karen
+    Etheridge. RT #62351. (Dave Rolsky)
+
+  [OTHER]
+
+  * The Moose test suite now uses Test::Fatal instead of
+    Test::Exception. (rjbs)
+
+1.17 Tue, Oct 19, 2010
+
+  [BUG FIXES]
+
+  * Make native delegation inlining work with instance metaclasses where slot
+    access is an do {} block, like Kioku. This fixes the use of native
+    delegations together with Kioku. (Scott, doy)
+
 1.16 Mon, Oct 18, 2010
 
   [ENHANCEMENTS]
@@ -21,6 +50,10 @@ for, noteworthy changes.
     Moose::Error::Default for details. This feature is considered
     experimental, and may change in a future release. (Marcus Ramberg)
 
+  * The deprecation warning for using alias and excludes without a leading
+    dash now tells you the role being applied and what it was being applied
+    to. (mst).
+
   [BUG FIXES]
 
   * A number of native trait methods which expected strings as arguments did