fix is subtype of (sortof)
[gitmo/MooseX-Types-Structured.git] / Changes
CommitLineData
d24da8ec 1Revision history for MooseX-Types-Structured
65748864 2
d716430a 30.11 06 April 2009
4 - Fixed braindead bug in the way I override ->validate, which caused
5 valiate to never correctly pass a constraint.
7559b71f 60.10 02 April 2009
7 - Minor documentation grammar fixes and one major example error fixed
8 - Much improved error reporting. Now we return the 'internal' error
9 that kicked a validation failure. It's still best to use this for
10 debugging rather than for actual user error messages, since I think
11 we are rapidly approaching a need for Moose constraints needing more
12 in the error and message reporting.
13 - Documentation for the above.
0e914b09 140.09 07 March 2009
15 - I guess we don't support the "subtype MyType, [TypeConstraint]" syntax
16 anymore. Changed the recursion test to reflect that, which should fix
17 my 100% fail rate :)
d54624ea 180.08 06 March 2009
19 - New Feature: slurpy method for when you want a structured type
20 constraint that allows trailing arguments of indeterminate length.
21 Please see the documentation and the '11-overflow.t' test for more.
22 - Documentation for above as well as a bunch of POD cleanups, spell
23 checks and improvements to formatting.
24 - Stevan Little submitted a sweet update to the '10-recursion.t' test
25 that blows my mind. Will probably form the core of a to be done set
26 of cookbook style PODs. Worth looking at.
27 - First step at improving the error message you get when validation
28 fails. A full error stacktrace is not in this release, but you now
29 at least get to see part of the offending value.
30
8885cba0 310.07 09 December 2008
32 - Fixed typo in previous changelog
33 - documentation improvements and updates
34 - increased version requirement for MooseX::Types so that we can take
35 advantage of the recursion support added.
36 - added test for recursion.
37
380.06 06 December 2008
dd8c991f 39 - Added a 'helper' type constraint called Optional. See docs for more.
3108fd7b 40 - added lots of tests to cover the API better, coverage and fixes for
d8547fef 41 the ->parameterize method in particular have been clarified.
dd8c991f 42 - changes so that the type contraints are more forgiving when null
43 values appear in method calls.
3108fd7b 44 - used ->make_immutable which should speed up the constraints.
45 - removed some unnecessary calls to use Moose when I wasn't using Moose.
d8547fef 46 - lots of little code cleanup work and more internal documentation.
47 - This version requires a newer Moose than previous versions. The
22727dd5 48 Makefile.PL has been updated to reflect this. This is a required
49 update.
dd8c991f 50
d87e8b74 510.05 08 November 2008
52 - Fixed some wackiness in the documentation.
53
98336987 540.04 07 November 2008
55 - Bumped minimum required versions of Moose and MooseX-Types to solve
56 problem with overloading and type constraint names (issue resolved
d8547fef 57 in Moose code.)
98336987 58 - Changed the way the required Perl version string is used to increase
59 compatibility and lowered minimum required Perl
60
59deb858 610.03 29 October 2008
62 - Fixed incorrect Perl version string (rafl)
63 - hide the meta classes from pause. This should clarify which POD is
64 the right one to read and also I want to discourage people from
65 subclassing that stuff since it will probably change
66 - various documentation cleanup
67 - new test 'example.t' with runable versions of the code in the example
68 POD section.
69
af1d00c9 700.02 28 October 2008
fe1fd33c 71 - cleared up some typos in the test suite
af1d00c9 72 - Fixed some POD formatting issues, mostly some dumb tabs I ended up
73 with when I switched editors. Added a bit more documentation
74
16aea7bf 750.01 27 October 2008
af1d00c9 76 - Completed basic requirements, documentation and tests.