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