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