2017-05-17 13:05:44 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated p5-Specio to 0.37.
0.37 2017-05-09
- Possible fix for very weird failures seen under threaded Perls with some
modules that use Specio.
|
2017-02-22 12:43:35 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated p5-Specio to 0.36.
0.36 2017-02-19
- Inlined coercions would attempt to coerce for every type which matched the
value given, instead of stopping after the first type. Fixed by Graham Knop
(GH #11).
- Inlined coercions did not include the inline environment variables needed by
the type from which the coercion was being performed. Fixed by Graham Knop
(GH #8).
- When you use the same type repeatedly as coderef (for example, as a
constraint with Moo), it will only generated its subified form once, rather
than regenerating it each time it is de-referenced.
- Added an API to Specio::Subs to allow you to combine type libraries and
helper subs in one package for exporting. See the Specio::Exporter docs for
more details.
|
2017-02-16 16:10:04 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated p5-Specio to 0.35.
0.35 2017-02-12
- Added Specio::Subs, a module which allows you to turn one or more library's
types into subroutines like is_Int() and to_Int().
- Added an inline_coercion method to Specio constraints.
|
2017-01-30 02:47:44 by Wen Heping | Files touched by this commit (2) |
Log message:
Update to 0.34
Upstream changes:
0.34 2017-01-29
- Packages with Specio::Exporter can now specify additional arbitrary subs to
exporter. See the Specio::Exporter docs for details.
- Importing the same library twice in a given package would throw an
exception. The second attempt to import is now ignored.
|
2017-01-25 13:19:55 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated p5-Specio to 0.33.
0.33 2017-01-24
- Fixed a mistake in the SYNOPSIS for Specio::Declare. The example for the
*_isa_type helpers was not correct.
- Removed the alpha warning from the docs. This is being used by enough of my
modules on CPAN that I don't plan on doing any big breaking changes without
a deprecation first.
|
2017-01-16 10:40:39 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated p5-Specio to 0.32.
0.32 2017-01-12
- Fixed a bug in the inlining for types create by any_can_type() and
object_can_type(). This inlining mostly worked by accident because of some
List::Util XS magic, but this broke under the debugger. Reported by
Christian Walde (GH #17) and Chan Wilson
(https://github.com/houseabsolute/DateTime.pm/issues/49).
|
2016-11-07 14:30:04 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
Update devel/p5-Specio to 0.31
------------------------------
0.31 2016-11-05
- The stack trace contained by Specio::Exception objects no longer includes a
stack frames for the Specio::Exception package.
- Made the inline_environment() and description() methods public on type and
coercion objects.
|
2016-10-18 10:30:12 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated p5-Specio to 0.30.
0.30 2016-10-15
- Fix a bug with the Sub::Quoted sub returned by $type->coercion_sub. If a
type had more than one coercion, the generated sub could end up coercing the
value to undef some of the time. Depending on hash key ordering, this could
end up being a heisenbug that only occured some of the time.
|
2016-10-12 14:41:48 by Makoto Fujiwara | Files touched by this commit (2) |
Log message:
Updated devel/p5-Specio to 0.29
-------------------------------
0.29 2016-10-09
- Doc Specio::PartialDump because you may want to use it as part of the
failure message generation code for a type.
|
2016-10-05 08:40:27 by Thomas Klausner | Files touched by this commit (2) |
Log message:
Updated p5-Specio to 0.28.
0.28 2016-10-02
- Added a Test::Specio module to provide helpers for testing Specio libraries.
- Fixed another bug with a subtype of special types and inlining.
0.27 2016-10-01
- Cloning a type with coercions defined on it would cause an exception.
- Creating a subtype of a special type created by *_isa_type, *_can_type, or
*_does_type, or enum would die when trying to inline the type constraint.
- Removed the never-documented Any type.
- Added documentation for each type in Specio::Library::Builtins.
|