From: Dave Rolsky Date: Fri, 29 Oct 2010 15:12:29 +0000 (-0500) Subject: Add changes entry for native delegation lazy default type fixes X-Git-Tag: 1.18~9 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a0b7667e3b0c1339366c08deadf3a0f861783a1e;p=gitmo%2FMoose.git Add changes entry for native delegation lazy default type fixes --- diff --git a/Changes b/Changes index 7e2a692..2931fbc 100644 --- a/Changes +++ b/Changes @@ -20,6 +20,9 @@ for, noteworthy changes. method will coerce the integer to a DateTime object. Reported by Karen Etheridge. RT #62351. (Dave Rolsky) + * An attribute using native delegations did not always properly coerce and + type check a lazily set default value. (doy and Dave Rolsky) + * Using a regexp to define delegations for a class which was not yet loaded did not actually work, but did not explicitly fail. However, it caused an error when the class was loaded later. Reported by Max Kanat-Alexander. RT