Add .gitignore
[gitmo/MooseX-Params-Validate.git] / ChangeLog
1 Revision history for Perl extension MooseX-Params-Validate
2
3 0.14 Sun. Mar. 18, 2010
4     - The validated_hash method failed when called on in an overloaded
5       stringify method. Patch by Ian Sillitoe. RT #52565.
6
7
8 0.13 Sun. Nov. 29, 2009
9     - Fix so that validated_hash does not try to coerce optional
10       parameters which are not present. Patch by Ian Sillitoe.
11
12     - Same fix for pos_validated_list. (Dave Rolsky)
13
14 0.12 Tue. Jul. 7, 2009
15     - Using the subroutine name as a cache key for validation specs
16       broke in the face of method modifiers, which all appear to have
17       the same name. Now we use Devel::Caller to get the CV of the
18       caller and use its refaddr as the key, which will be unique in
19       all cases. Bug report by Jos Boumans. RT #46730.
20
21 0.11 Tue. Jul. 7, 2009
22     - The validation functions tried to coerce optional keys which
23       weren't present in the incoming parameters, leading to weird
24       errors. Based on a patch from Jos Boumans. RT #46344. 
25
26     - Allow other callbacks to be specified. Previously these were
27       silently thrown out. But we'd recommend just defining types that
28       encapsulate everything in the callback instead. Based on a patch
29       from Jos Boumans. RT #47647.
30         
31 0.10 Tue. Jun. 30, 2009
32     - Shut up deprecation warnings from the tests. Reported by John
33       Goulah.
34
35 0.09 Sun. Feb. 1, 2009
36     - The subroutine name being reported in error messages was screwy.
37
38 0.08 Sun. Feb. 1, 2009
39     - Renamed validate to validated_hash and validatep to
40       validated_list. The old function names are still available under
41       the ":deprecated" import tag.
42
43     - Added a new pos_validated_list which can validate position
44       parameters.
45
46     - Errors now reflect the subroutine that called the validation
47       function, rather than coming form inside the validation function
48       itself.
49         
50 0.07 Sun. Sep. 21, 2008
51     - No code changes, just fixing missing prereqs (Dave Rolsky)
52
53 0.06 Sat. Sep. 20, 2008
54     - Fixes to work with Moose 0.58 (Dave Rolsky)
55
56     - Switched to using Module::Install (Dave Rolsky)
57
58 0.05 Fri. Mar. 7th, 2008
59     - This package would cause a fatal error if loaded
60       by a non-Moose class (Dave Rolsky)
61       - added tests for this (Dave Rolsky)
62
63     - Added support for coercions (Dave Rolsky)
64
65 0.04 Tues. Jan. 8th, 2008
66     - upped the Moose dependency and added support
67       for the new improved Moose type constraints
68       - added tests for this
69     
70     - adding caching of the prepared parameter 
71       specs, this results in approx. 3x speedup 
72       using rough benchmarks. 
73       
74     - added special caching handlers see the 
75       IMPORTANT NOTE ON CACHING section of the 
76       POD for more details
77       - added tests for this
78
79 0.03 Fri. June 8th, 2007
80     - added support for using this 
81       within role methods too.
82
83 0.02 Wed. April 25, 2007
84     - added validatep, which returns the captured
85       args as positional instead of as hash
86       - added docs and tests
87
88 0.01 Wed. April 18, 2007
89     - trying to fill a gap, we will see ...