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