4d073819d63b42f8b37807d8e447a8362640fc45
[gitmo/MooseX-Types.git] / Changes
1 Revision history for MooseX-Types
2
3 {{$NEXT}}
4
5 0.28    2011-08-02
6         - Fixed git and bug tracking info in META.{yml,json}. Reported by
7           Petter Rabbitson. (Dave Rolsky)
8
9 0.27    2011-06-06
10         - A better fix for type constraint changes in Moose 2.0100. (doy)
11
12 0.26    2011-06-05
13         - Small changes for forward compatibility with Moose 2.0100, when it
14           is released. (Dave Rolsky)
15         - Some small doc cleanup and improvements. (Dave Rolsky)
16
17 0.25    2010-11-30
18         - The test suite now uses Test::Fatal instead of Test::Exception
19           (Karen Etheridge).
20         - Modernized tests to use Test::Requires and done_testing. (Dave
21           Rolsky)
22         - MooseX::Types::Combine is a little more efficient, and only tries to
23           load the libraries it's combining when that list is set. It also
24           checks that each lib in the list actually provides types. (Dave
25           Rolsky).
26         - The MooseX::Types docs now contain a pointer to
27           MooseX::Types::Combine. (Dave Rolsky)
28
29 0.24    2010-09-11
30         - Avoid more warnings from Moose 1.09 in tests (Dave Rolsky).
31
32 0.23    2010-07-19
33         - Avoid warnings from Moose 1.09 in tests (Dave Rolsky).
34
35 0.22    2010-06-01
36         - Update docs to mention MRO::Compat rather than Class::C3.
37         - Added '0+' overloading to solve the type constraint equality
38           regression introduced when Moose 1.05 tightened the rules
39           determing type constraint equality.  Added tests for the
40           regression.
41
42 0.21    2009-12-23
43         - Attempting to import a non-existent type from a combined type
44           library gave a very confusing error message from the
45           MooseX::Types::Combined internals. Now it gives you a much more
46           useful message. (Dave Rolsky)
47         - bump up Moose dep (RT#53016)
48
49 0.20    2009-09-10
50         - fix "empty export" warning (doy).
51
52 0.19    2009-08-23
53         - un-fix coercions on parameterized types, since it broke
54           MooseX::Method::Signatures, as well as any other code that relied on
55           new type constraint objects being generated each time a type was
56           parameterized (hdp).
57
58 0.18    2009-08-22
59         - fix coercions on parameterized types (Hans Dieter Pearcey).
60
61 0.17    2009-08-18
62         - Documentation typo fix (Dave Rolsky).
63         - Stop blowing up in has_available_type_export if the introspected code
64           symbol exists but is not a type export (Florian Ragwitz).
65         - Reorganize author/copyright sections at the request of Debian
66           packagers (Rafael Kitover).
67
68 0.16    2009-06-29
69         - Ship with Module::Install 0.91
70
71 0.15    2009-06-27
72         - Change all uses of croak in TypeDecorator to use the Moose
73           throw_exception method.
74         - More test cases for the union mixed string type issue, and
75           better handling of this in the | overload in TypeDecorator
76
77 0.14    2009-06-26
78         - Fix union with string type
79
80 0.13    2009-06-23
81         - Add Test::Moose to build_requires for Fedora
82
83 0.12    2009-06-14
84         - fix mixing of typelibs with regular Moose classes
85
86 0.11    2009-05-23
87         - warning on string types and unregistered class/role types
88         - better error for missing comma
89         - MooseX::Types::Combine for combining type libs
90
91 0.10    2009-03-06
92         - Removed unneeded debugging code from one of the tests, which was
93           causing installation errors for people that didn't already have
94           Data::Dump installed. (jjnapiork)
95 0.09    ...
96         - Added MooseX::Types::Util::has_available_type_export($p, $n) to
97           allow introspection of available types for other libraries wanting
98           to use type export names for type specifications.
99
100 0.08    2008-12-09
101         - Added experimental support for recursive type constraints.  Pod and
102           tests for this feature.  Let the madness begin.
103         - Documentation updates.
104         - Workaround test case for the SUb::Exporter compatibility issue.  Also
105           documented in Pod.
106
107 0.07    2008-10-07
108         - Bumped minimum allowed Moose version to fix problem with overloading
109           on some versions of Perl
110         - Tiny documentation updates.
111
112 0.06    2008-10-24
113         - Added support for parameterized types and type unions, tests for all
114         that and documentation updates.
115
116 0.05    [unknown]
117         - moved export mechanism to Sub::Exporter. ::Base contains
118           a bunch of wrapping logic to allow the export-along functionality
119           for the helper symbols
120         - removed vestigial load of Sub::UpLevel since it breaks
121           the argument display in confess()
122
123 0.04    2007-08-09
124         - Automatically set strict and warnings like Moose does
125
126 0.03    2007-08-09
127         - Minor POD typo correction
128         - Added some error messages for wrong type names
129         - Coercion handler not exported without type object
130         - Moved from Class::Inspector to Class::MOP::load_class
131
132 0.02    2007-08-08
133         - Changed declaration to croak when it sees '::' in a typename
134
135 0.01    2007-08-08
136         - Initial release