changed the recursion test to reflect subtype syntac clarification
[gitmo/MooseX-Types-Structured.git] / Changes
CommitLineData
d24da8ec 1Revision history for MooseX-Types-Structured
65748864 2
0e914b09 30.09 07 March 2009
4 - I guess we don't support the "subtype MyType, [TypeConstraint]" syntax
5 anymore. Changed the recursion test to reflect that, which should fix
6 my 100% fail rate :)
d54624ea 70.08 06 March 2009
8 - New Feature: slurpy method for when you want a structured type
9 constraint that allows trailing arguments of indeterminate length.
10 Please see the documentation and the '11-overflow.t' test for more.
11 - Documentation for above as well as a bunch of POD cleanups, spell
12 checks and improvements to formatting.
13 - Stevan Little submitted a sweet update to the '10-recursion.t' test
14 that blows my mind. Will probably form the core of a to be done set
15 of cookbook style PODs. Worth looking at.
16 - First step at improving the error message you get when validation
17 fails. A full error stacktrace is not in this release, but you now
18 at least get to see part of the offending value.
19
8885cba0 200.07 09 December 2008
21 - Fixed typo in previous changelog
22 - documentation improvements and updates
23 - increased version requirement for MooseX::Types so that we can take
24 advantage of the recursion support added.
25 - added test for recursion.
26
270.06 06 December 2008
dd8c991f 28 - Added a 'helper' type constraint called Optional. See docs for more.
3108fd7b 29 - added lots of tests to cover the API better, coverage and fixes for
d8547fef 30 the ->parameterize method in particular have been clarified.
dd8c991f 31 - changes so that the type contraints are more forgiving when null
32 values appear in method calls.
3108fd7b 33 - used ->make_immutable which should speed up the constraints.
34 - removed some unnecessary calls to use Moose when I wasn't using Moose.
d8547fef 35 - lots of little code cleanup work and more internal documentation.
36 - This version requires a newer Moose than previous versions. The
22727dd5 37 Makefile.PL has been updated to reflect this. This is a required
38 update.
dd8c991f 39
d87e8b74 400.05 08 November 2008
41 - Fixed some wackiness in the documentation.
42
98336987 430.04 07 November 2008
44 - Bumped minimum required versions of Moose and MooseX-Types to solve
45 problem with overloading and type constraint names (issue resolved
d8547fef 46 in Moose code.)
98336987 47 - Changed the way the required Perl version string is used to increase
48 compatibility and lowered minimum required Perl
49
59deb858 500.03 29 October 2008
51 - Fixed incorrect Perl version string (rafl)
52 - hide the meta classes from pause. This should clarify which POD is
53 the right one to read and also I want to discourage people from
54 subclassing that stuff since it will probably change
55 - various documentation cleanup
56 - new test 'example.t' with runable versions of the code in the example
57 POD section.
58
af1d00c9 590.02 28 October 2008
fe1fd33c 60 - cleared up some typos in the test suite
af1d00c9 61 - Fixed some POD formatting issues, mostly some dumb tabs I ended up
62 with when I switched editors. Added a bit more documentation
63
16aea7bf 640.01 27 October 2008
af1d00c9 65 - Completed basic requirements, documentation and tests.