2 - Fix tests that broke with new hash randomization in 5.17.6. (Dagfinn
6 - The validated_list and validated_hash functions now accept the values to
7 be validated as both a hash and a hash reference.
10 - Add MX_PARAMS_VALIDATE_ALLOW_EXTRA which allows extra parameters in
11 validation calls (like allow_extra for Params::Validate).
12 - Converted to Test::Fatal.
15 - The validated_hash method failed when called on in an overloaded
16 stringify method. Patch by Ian Sillitoe. RT #52565.
19 - Fix so that validated_hash does not try to coerce optional
20 parameters which are not present. Patch by Ian Sillitoe.
22 - Same fix for pos_validated_list. (Dave Rolsky)
25 - Using the subroutine name as a cache key for validation specs
26 broke in the face of method modifiers, which all appear to have
27 the same name. Now we use Devel::Caller to get the CV of the
28 caller and use its refaddr as the key, which will be unique in
29 all cases. Bug report by Jos Boumans. RT #46730.
32 - The validation functions tried to coerce optional keys which
33 weren't present in the incoming parameters, leading to weird
34 errors. Based on a patch from Jos Boumans. RT #46344.
36 - Allow other callbacks to be specified. Previously these were
37 silently thrown out. But we'd recommend just defining types that
38 encapsulate everything in the callback instead. Based on a patch
39 from Jos Boumans. RT #47647.
42 - Shut up deprecation warnings from the tests. Reported by John
46 - The subroutine name being reported in error messages was screwy.
49 - Renamed validate to validated_hash and validatep to
50 validated_list. The old function names are still available under
51 the ":deprecated" import tag.
53 - Added a new pos_validated_list which can validate position
56 - Errors now reflect the subroutine that called the validation
57 function, rather than coming form inside the validation function
61 - No code changes, just fixing missing prereqs (Dave Rolsky)
64 - Fixes to work with Moose 0.58 (Dave Rolsky)
66 - Switched to using Module::Install (Dave Rolsky)
69 - This package would cause a fatal error if loaded
70 by a non-Moose class (Dave Rolsky)
71 - added tests for this (Dave Rolsky)
73 - Added support for coercions (Dave Rolsky)
76 - upped the Moose dependency and added support
77 for the new improved Moose type constraints
78 - added tests for this
80 - adding caching of the prepared parameter
81 specs, this results in approx. 3x speedup
82 using rough benchmarks.
84 - added special caching handlers see the
85 IMPORTANT NOTE ON CACHING section of the
87 - added tests for this
90 - added support for using this
91 within role methods too.
94 - added validatep, which returns the captured
95 args as positional instead of as hash
96 - added docs and tests
99 - trying to fill a gap, we will see ...