1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172
|
Revision history for Mouse
v2.5.11 2024-08-04T11:38:02Z
- Use Devel-PPPort 3.59 (atoomic #113)
- Mark "builtin" as foreign (#123)
v2.5.10 2020-03-28T13:15:57Z
- Do not use Fatal (#108)
v2.5.9 2019-08-26T14:46:49Z
- Fix circular dependencies between Mouse and MouseX::Foreign (pghmcfc #102)
v2.5.8 2019-08-25T18:52:19Z
- Fix segmentation fault which occurs when using MouseX::Foreign and role->apply at the same time (ken39arg #100, #101)
v2.5.7 2019-08-12T08:45:37Z
- Bump Module::Build::XSUtil prereq (KnowZero #99)
- Fix typo (michael-stevens #98)
v2.5.6 2018-08-13T22:47:57Z
- Revert "Warn if accessors overwrite methods/functions" for now; it may cause crashes in perl 5.28.0 (#94)
v2.5.5 2018-08-13T15:41:32Z
- Warn if accessors overwrite methods/functions (ybrliiu #86, #90, #93)
- Fix for threads and XS; use newSVpvs instead of newSVpvs_share (sergeykolychev #92)
v2.5.4 2018-05-05T03:43:55Z
- Follow Devel::PPPort 3.42 (#87)
v2.5.3 2018-05-05T03:35:45Z
- Sorry, I made a mistake. Do not use this version.
v2.5.2 2018-02-17T01:47:32Z
- Skip t/900_mouse_bugs/016_issue17_memleak.t under 5.10.0
v2.5.1 2018-01-07T14:34:19Z
- use PERL_UNUSED_RESULT (#83)
- Apply several minor patches, especially for packaging (#84)
v2.5.0 2017-11-26T18:38:18Z
- Fix build under perl 5.8 (wyoung #63, autarch #76, #79)
- Use version->declare() to declare $VERSION (neilb #55, #80)
- Make `prove -br t` work with dot-not-in-INC perls (#81)
v2.4.10 2017-07-18T04:12:23Z
- https://github.com/gfx/p5-Mouse/compare/v2.4.9...v2.4.10
v2.4.9 2017-02-22T01:23:31Z
- Fix build issue on newer Perl
v2.4.8 2017-02-16T08:45:28Z
- Fix stack collapse(#71)
v2.4.7 2017-01-14T13:46:04Z
- Workaround for issue #64(#67)
In some case stack is corrupted at more than 23 attributes.
This change may makes a bit slow in that case.
v2.4.6 2017-01-06T06:51:15Z
- Fix test for older Perls (#68)
- Define macros for older Visual Studio compiler(#66)
v2.4.5 2015-08-03T15:57:50Z
- Fix for older Perl(< 5.14.0) (#54)
v2.4.4 2015-08-02T09:49:34Z
- Fix for older Perl(< 5.22.0) (#53)
v2.4.3 2015-08-02T07:10:09Z
- Fix for Perl 5.22.0 or higher(#50)
2.4.2 2015-04-12T01:22:02Z
- Fixed #40; 'use strict' not enabled when 'use 5.010' follows 'use Mouse'
- Fixed #39; New warnings in Perl 5.21.x: redundant arguments for sprintf
- Fixed #38; Avoid warnings introduced in Perl 5.21.x
- Fixed #36; Excess dependency on Test::Exception::LessClever (kentnl, #37)
2.4.1 2014-09-21T12:57:11Z
- Fix build issues (#34)
v2.4.0 2014-09-21T02:04:01Z
- Fix build issues (#32)
2.3.0 2014-05-25T23:07:19Z
- Fixed #17; memory leak in applying roles to instances
2.2.0 2014-04-03T22:34:42Z
- Fixed #16 - inconsistent coercion/validation of Bool type (tokuhirom)
2.1.1 2014-03-26T13:23:48Z
- Fixed #18 (tokuhirom)
2.1.0 2013-11-26T13:15:54Z
- Dropped 5.6.2 support
- Migrated to Minilla
2.0.0 2013-11-06 09:15:00+0900
[BUG FIXES]
- Merged the pull-request #13, which fixed an issue where
the behavior of role method confliction was different
from Moose. This change might affect your existing code
so the major version has incremented.
See t/030_roles/role_conflict_and_inheritance.t for details.
1.13 2013-10-10 00:09:35+0900
[BUG FIXES]
- Fix for perl 5.19.4 (RT 88295)
1.12 2013-09-29 09:52:47+0900
[BUG FIXES]
- Fix a memory leak related to triggers,
which was introduced in 1.07 (issue#7)
1.11 2013-04-28 22:00:38
[TEST FIXES]
- Ensure Try::Tiny is bundled
1.10 2013-04-26 10:53:40
[TEST FIXES]
- Bundle Try::Tiny for tests
1.09 2013-04-25 14:03:13
[TEST FIXES]
- Bundle Test::Fatal for tests
1.08 2013-04-24 16:20:53
[FEATURES]
- Support PUREPERL_ONLY
See the Lancaster Consensus:
https://github.com/sjn/toolchain-site/blob/219db464af9b2f19b04fec05547ac10180a469f3/lancaster-consensus.md#specifying-pure-perl-builds
1.07 2013-04-24 08:47:17
[BUG FIXES]
- Make trigger pass in the old value for Moose compatibility
(PR#6 by schwern)
[TEST FIXES]
- Get perlcritic tests working for PC 1.118 (PR#6 by schwern)
1.06 2013-04-09 23:40:02
[TEST FIXES]
- Resolve RT#84518 caused by hash randomization
1.05 2013-02-08 00:32:33
[BUG FIXES]
- Fix a memory leak introduced by v1.04 (creaktive & aiyumi, pull-req #4)
1.04 2013-01-11 01:46:18
[FEATURES]
- Implement $attr->default($instance) for compatibility with Moose
1.03 2013-01-11 01:10:38
[FEATURES]
- Add maybe_type() from Moose::Util::TypeConstraints (schwern)
1.02 2012-08-27 10:27:21
[IMPROVEMENT]
- performance improvement for v5.14.0 or grater (dex4er)
1.01 2012-08-24 09:03:29
[BUG FIXES]
- fix circular dependency which was introduced in 1.00 (hanekomu++)
1.00 2012-08-23 20:50:46
This is 1.00 but has no significant change!
[BUG FIXES]
- Fix a problem which occured in a case where a role applied
to an instance with AUTOLOAD.
0.99 2012-06-30 14:47:03
[BUG FIXES]
- Resolve RT#73592 use of local $_ was buggy in older perls
- Resolve RT#75093 warning about weak_ref
0.98 2012-06-30 14:02:26
[ANNOUNCE]
- The repository has been moved to github
https://github.com/gfx/p5-Mouse
in order toto accept pull-requests easily!
[BUG FIXES]
- Resolve RT#75313 and RT#77227 ($@ issues)
0.97 2011-10-09 14:45:55
[TEST FIXES]
- Fixes in 0.96 is broken
0.96 2011-10-09 14:34:39
[TEST FIXES]
- Workaround for RT #71211 (made the failing test a TODO)
0.95 2011-10-07 13:41:31
[TEST FIXES]
- Workaround for RT #71211 (maybe)
0.94 2011-10-03 17:07:57
[BUG FIXES]
* Resolve #68351, tests produced deprecation warnings in 5.14
* Resolve #70518, a build problem in 5.15
* Resolve #70569, prototype mismatch warnings might happen in 5.8
0.93 2011-05-17 00:22:12
[BUG FIXES]
* Make sure weak attributes remain weak when cloning (Moose 2.0007)
0.92 2011-4-14 23:37
[BUG FIXES]
* Replace C++-style comments (//) with C89-style comments(/* */)
(RT #67412)
0.91 2011-03-14 13:12:35
[CHANGES]
* $type_constraint->check() accepts extra arguments for extensibility
(requested by @lestrrat)
0.90 2011-02-21 10:48:58
[BUG FIXES]
* Fix an abuse of a private Perl API, which changed at Perl 5.13.10
(Thanks to avar)
[NEW FEATURES]
* Support the DOES() method for Mouse::Object
0.89 2011-01-27 09:18:39
[BUG FIXES]
* Disable foreign class warnings introduced at 0.71, which affects
compatibility with Moose (and will re-introduce in more compatible
way in the future)
0.88 2010-12-05 14:24:14
[BUG FIXES]
* Workaround SL4A where mro.pm doesn't exist even if Perl >= 5.10.0
(reported by @hide_o_55)
0.87 2010-11-13 23:44:20
[BUG FIXES]
* Fix packaging issues
- META.yml was not updated (reported by @shohex)
- `make realclean` should remove xshelper.h
(patched by Ingy dot Net, and modified by gfx)
[OTHERS]
* Type coercion routines have been refactored; coercions are compiled
on demand.
0.86 2010-11-12 20:12:53
[BUG FIXES]
* Role application to instances cached anonymous classes in wrong way
0.85 2010-11-11 10:51:45
[BUG FIXES]
* Fix an error message to be compatible with Moose's
* Fix build problems
0.84 2010-11-10 14:31:20
* No feature changes
* Fix tests not to depend on platforms
0.83 2010-11-08 11:40:25
[BUG FIXES]
* 'Int' type constraint passed dualvars (e.g. $!) while Moose's doesn't
0.82 2010-11-05 18:12:28
[BUG FIXES]
* Wrong name for a method in Mouse::Meta::TypeConstraint:
s/is_a_subtype_of/is_a_type_of/
* $type_constraint->type_parameter didn't return the correct value
if it's a subtype of paramterized type constraints
0.81 2010-10-28 21:49:40
[BUG FIXES]
* Roles which attributes has no methods could affect cache invalidation
0.80 Wed Oct 6 00:15:49 2010
[BUG FIXES]
* Resolve RT #61906 (Syohei Yoshida): A single 'accessor' did
not define the method for the attribute
0.79 Tue Oct 5 19:26:11 2010
[BUG FIXES]
* Fix a mis-use of aTHX_/pTHX_ in XS (Vincent Pit)
0.78 Tue Oct 5 15:27:13 2010
[BUG FIXES]
* Resolve RT #61852 (Vincent Pit): Parametrized type constraints didn't
call their "where" clause anymore.
* Mouse::Object::DESTROY could fail to call DEMOLISHes in some cases
(reported by @typester).
0.77 Wed Sep 29 21:35:11 2010
[BUG FIXES]
* Fix tests failed against 5.6.2
* Combination of 'isa' and 'does' for has() sugar was incorrectly
proccessed in Mouse::PurePerl.
* Fix foreign class checking routines. Please update MouseX::Foreign.
0.76 Tue Sep 28 16:10:31 2010
[BUG FIXES]
* Workaround 5.6.problems
* Fix edge cases of handles => sub { ... }
* Aoid warnigs on attribute cloning
0.75 Mon Sep 27 15:07:03 2010
[BUG FIXES]
* Diamond inheritanc without C3 mro cauld cause problems in Mouse::XS
0.74 Sun Sep 26 11:46:29 2010
[BUG FIXES]
* Workaround Test::Builder2 problem again.
Loading Mouse before loading Test::Builder 2.00_01 could causes SEGV,
so I ensure to load Test::Builder first.
* Fix some compatibility issues on perl 5.6.2
0.73 Sat Sep 25 21:49:30 2010
[BUG FIXES]
* Resolve RT #61613 (Brett)
0.72 Sat Sep 25 20:47:51 2010
[BUG FIXES]
* Internal refatoring has removed a number of incompatibilities
in Mouse::PurePerl.
* Error messages from duck types are now compatible with Moose.
0.71 Fri Sep 24 19:51:04 2010
[CHANGES]
* Inheritance from non-Mouse classes now produces warnings.
Use MouseX::Foreign if you want this type of inheritance.
* A new module Mouse::Meta::Role::Application has been added.
It doesn not affect public APIs, but internals are radically
changed. For users, using Mouse without roles should consume
less memory.
[BUG FIXES]
* Meta class reinitialization caused by Mouse::Util::MetaRole
did not work correctly
0.70 Fri Sep 17 19:07:02 2010
[BUG FIXES]
* Delegations ignored method modifiers
0.69 Mon Sep 13 14:04:41 2010
[BUG FIXES]
* Workaround a problem with Test::Builder 2.00_01, which could cause
SEGV (the HEAD in the repository of tb2 is okay)
0.68 Sat Sep 11 16:24:42 2010
[CHANGES]
* Remove an optional depenency, Data::Util.
This is used to make method modifiers faster, but the effect
is limited to 'before' and 'after' modifiers. Rather,
D::U's modifiers are slightly different from the standalone version,
and sometimes the difference caused problems.
0.67 Fri Sep 10 13:56:38 2010
[BUG FIXES]
* Oops! Fix a mistake of removing neccesary denepdencies
0.66 Fri Sep 10 13:30:41 2010
[BUG FIXES]
* Workaround older perl's bug that caused segv in throwing errors
* Fix looks_like_number portability
0.65 Thu Sep 9 13:30:33 2010
[CHANGES]
* An attribute in a subclass can now override the value of "is"
(Moose 1.07 feature)
* Remove long deprecated methods:
_create_args(), compute_all_applicable_attributes(),
and clone_instance()
[BUG FIXES]
* Fix tests that misused test functions. This problem was revealed
by Test::Builder2
* Improve C++ compatibility in Mouse::XS
0.64 Mon Jul 26 20:48:13 2010
[BUG FIXES]
* Build failure on 5.13.3
[CHANGES]
* Illegal inheritance options for clone_and_inherit_options()
is now a black list, not a white list (Moose 1.09 feature)
* Remove long deprecated methods in Mouse::Meta::Attribute:
clone_parent, get_parent_args, canonicalize_args, create
0.63 Tue Jul 20 19:26:30 2010
[CHANGES]
* Resolve RT#59460: Test::Requires is not a required prerequisite unless
release-testing... (Curtis Jewell)
See also https://rt.cpan.org/Public/Bug/Display.html?id=59460
[FEATURES]
* Add Mouse::Util::TypeConstraints::register_type_constraint()
(Vincent Pit)
See also https://rt.cpan.org/Public/Bug/Display.html?id=59539
0.62 Tue Jul 6 20:18:58 2010
[FEATURES]
* Support MouseX::StrictConstructor (gfx)
0.61 Sat Jun 19 15:35:48 2010
[BUG FIXES]
* Workaround the Perl_call_sv() problem again (gfx)
* Update Module::Install to 0.99 for older versions of perls (gfx)
0.60 Wed Jun 9 19:43:55 2010
[CHANGES]
* BUILDALL is now called by Mouse::Meta::Class::new_object, rather than
by Mouse::Object::new. (Moose 1.05)
[BUG FIXES]
* Fix type constraint validation messages to not include the string
'failed' twice in the same sentence. (Moose 1.05)
* Resolve RT #57975: The prefix "Exception caught" is no longer added
to exceptions Mouse catches. (gfx)
[OTHERS]
* A difficult test (t/900_mouse_bugs/006_RT69939.t) will be skipped on
some platforms. (gfx)
0.59 Tue May 18 16:29:57 2010
[CHANGES]
* Improve error messages on $class->accessor() (gfx)
0.58 Sat May 8 11:18:17 2010
[BUG FIX]
* Compliant with 5.12.0+
0.57 Fri May 7 14:27:00 2010
[BUG FIX]
* Resolve RT #57144: Fix problems in Perl_call_sv() again (gfx)
0.56 Thu Apr 29 11:15:45 2010
[BUG FIX]
* Resolve RT#56837: Role application to instance with init_arg'd
attributes caused problems (Sanko Robinson)
0.55 Wed Apr 21 13:27:13 2010
[BUG FIX]
* Fix a bug that traits could cause panic/SEGV on threads (gfx)
0.54 Sat Apr 17 17:15:54 2010
[BUG FIX]
* Resolve RT#56523: has with reader, writer, lazy and builder
could not create a write-only accessor (Michael G Schwern)
0.53 Sun Apr 11 11:39:03 2010
[BUG FIX]
* Mouse::Meta::Class could not clone objects with "required" attrs (gfx)
0.52 Sat Mar 27 15:38:52 2010
* Workaround Perl-RT#69939 (eval "use $module" in Perl_call_sv()
may cause segmentation faults,
http://rt.perl.org/rt3/Public/Bug/Display.html?id=69939)
0.51 Mon Mar 15 15:25:58 2010
SUMMARY
[BUG FIXES]
* Mouse::Object::DESTROY could cause SEGVs
* Attribute triggers could cause panics
* Integers > 2**32 were not groked as Int
* Incorrect types, e.g. "Array[Int", was accepted
* Metaclass compatibility was sometimes ignored
[MOOSE COMPATIBILITY]
* before/around/after accept regular expressions
* has() becomes strict
* the global destruction flag is passed to DEMOLISH methods
* Delegations can be curried
* Built-in type constraints have the same hierarchy as Moose's
0.50_09 Mon Mar 15 12:02:28 2010
* (re)fix RT #55048 to grok 2**46+0.5 as Int, but
accept 2**46 as Int even on 32 bit environments;
note that an Int is exactly what is matched to /^[+-]?[0-9]+$/,
so 10e100 will not be groked as Int (gfx)
0.50_08 Thu Mar 11 19:28:58 2010
* Makefile.PL
- Resolved #55419: Add Devel::PPPort to build_requires (gfx)
* Mouse::Exporter
- Turns on warnings FATAL => 'recursion' by default (gfx)
* Mouse::Util::TypeConstraints
- Change the type parser to check syntax (gfx)
(Now it throws erros to "ArrayRef[]", "ArrayRef[Int", etc.)
0.50_07 Sun Mar 7 19:59:37 2010
* Mouse::Meta::Attribute
- Fix a possible panic, caused by triggers, reported by
Nobuo Danjou (gfx)
0.50_06 Tue Mar 2 18:35:12 2010
* Mouse::PurePerl
- Fix an issue on metaclass compatibility again (gfx)
- Fix more-than-32-bit-int progrem again (gfx)
0.50_05 Mon Mar 1 11:18:26 2010
* Mouse::Util::TypeConstraints
- Mouse used an incorrect cast at the C-level which meant that
its idea of numbers was different from that of Perl's (and
Mouse's). Notably > 2**32 Integers on 32 bit systems didn't
work, RT #55048 (AEvar).
* Mouse::Meta::Classs
- Fix an issue on metaclass compatibility (gfx)
0.50_04 Fri Feb 26 18:57:24 2010
* All
- Warnings are less noisy, as shown by example/warns.pl (gfx)
- Various optimization and refactoring (gfx)
0.50_03 Mon Feb 22 17:56:47 2010
* Mouse::Meta::Attribute
- Catch up about Moose 0.84 about warnings (gfx)
- If an attribute generates no accessors, it will be warned
- If both 'isa' and 'does' are specified and 'isa' does not do
'does', then it will be warned
* Mouse::Object
- Fix a possible segv which is caused by destructors (gfx)
* Mouse::Util::TypeConstraints
- Implement the built-in type hierarchy (gfx)
0.50_02 Sat Feb 20 14:37:16 2010
* Mouse::Meta::Attribute
- Implement argument currying for delegation (gfx)
* Mouse::Meta::Method::Constructor
- Implement strict constructors experimentally, which will warn
unkown constructor arguments (gfx)
0.50_01 Sat Feb 13 16:39:48 2010
* Mouse
- before/around/after now accept regexps (gfx)
* Mouse::Object
- Support the global destruction flag in DEMOLISH (gfx)
* Mouse::Meta::Attribute
- Attribute constructors now warn very noisily about unknown (or
misspelled) arguments (gfx)
0.50 Mon Feb 8 13:43:19 2010
* Mouse::Tiny
- Allow "use Mouse::Tiny VERSION" with a patch contributed by
chocolateboy, RT #54383 (gfx)
* Mouse::Util::MetaRole
- Add Mouse::Util::MetaRole::apply_metaroles
to catch up the latest Moose API for metaroles (gfx)
0.49 Tue Feb 2 12:58:45 2010
* MouseAccessor.xs
- Fix RT #54203 that writers might return undef in setting values
reported by chocolateboy (gfx)
0.48 Sun Jan 31 17:53:31 2010
* MouseTypeConstraints.xs
- Fix magic handling in type constraints reported by sunnavy (gfx)
0.47 Fri Jan 15 15:07:21 2010
* Makefile.PL
- Shipped with M::I::XSUtil 0.21 (gfx)
- Fix an issue that gcc 4.0 don't support -Wc++-compat (gfx)
* Mouse
- Add a caveat on XS callbacks to the pod (gfx)
0.46 Sat Jan 9 17:54:30 2010
* Mouse::Meta::Attribute
- Add support for code references for handles
patched by Frank Cuny (gfx)
* Mouse::Util::TypeConstraints
- Fix Str and ScalarRef for typeglobs, lvalues, and etc. (gfx)
* oose.pm
- Add Moose::Util::TypeConstraints exports to allow easier testing
of TypeConsraints from the command line (gfx)
0.4501 Tue Dec 22 16:02:15 2009
* Fix an issue on circular dependencies (RT #52939, thanks to t0m)
- (see also http://rt.cpan.org/Public/Bug/Display.html?id=52939 )
0.45 Sat Dec 19 17:22:46 2009
* Fix filename portability issue (RT #52828, thanks to Peter Edwards)
* Fix an issue that definitions of anonymous types could fail (gfx)
* Mouse::Meta::Attributes
- Add set_value/get_value/has_value/clear_value (gfx)
(Note that thsese methods are depend on the accessors)
* Test::Mouse
- Add with_immutable (gfx)
0.44 Wed Dec 9 21:43:21 2009
* Shipped with Module::Install::XSUtil 0.19 (gfx)
* Test::Mouse
- Added (gfx)
* Mouse::Util::TypeConstraints
- Add duck_type (gfx)
0.43 Mon Dec 7 14:21:59 2009
* Improve documents
* Mouse::Meta::Module
- Remove undocumented has_package_symbol and get_package_symbol (gfx)
(They are introduced in 0.41, but seem useless in Mouse)
0.42 Sat Dec 5 16:05:06 2009
* Fix a PAUSE indexing issue (gfx)
0.41 Sat Dec 5 15:00:33 2009
* This is the first stable version of Mouse::XS
- Mouse::XS is about 2 times faster than Mouse::PurePerl
* SUMMARY
- Many stuff are now in XS
- Support "use Mouse -traits => ..." subdirective
* INCOMPATIBILITY CHANGES (but compatible with Moose)
- The type of default value is constrained correctly
- The default values is weakend correctly
- BUILDALL/DEMOLISHALL are no longer called
0.40_09 Thu Dec 3 13:42:17 2009
* Mouse
- Remove @Mouse::EXPORT, which was no longer used (gfx)
* Mouse::Role
- Remove @Mouse::Role::EXPORT, which was no longer used (gfx)
* Mouse::Util
- Fix a bug which caused segv on 5.6.2 (gfx)
* Mouse::Meta::Module
- Add has_package_symbol and get_package_symbol (gfx)
0.40_08 Thu Nov 26 21:36:49 2009
* Mouse::Exporter
- Add the "-traits => ..." subdirective (gfx)
* Mouse::Meta::Class
- Add metaclass incompatibility resolution (gfx)
0.40_07 Tue Nov 17 18:28:57 2009
* Mouse::Util::MetaRole
- Implemented, but there are many to be done (gfx)
* Mouse::Meta::Method::Accessor
* Mouse::Meta::Method::Constructor
- Fix a bug that default values are not weaken()ed (gfx)
0.40_06 Mon Nov 16 17:21:10 2009
* Shipped with Module::Install::XSUtil 0.17 (gfx)
* Mouse::Object
- BUILDALL and DMELISHALL are no longer called by the default ctr/dtr,
because generated ctrs/dtrs have never call them anyway (gfx)
- new and DESTROY are now in XS (gfx)
0.40_05 Mon Nov 2 11:59:01 2009
* Shipped with Module::Install::XSUtil 0.16 (gfx)
0.40_04 Tue Nov 1 11:58:27 2009
* Implement type constraint generators in XS (gfx)
0.40_03 Fri Oct 30 12:03:58 2009
* Update Module::Install::XSUtil to 0.15 (gfx)
0.40_02 Tue Oct 27 15:04:10 2009
* Add the Mouse::XS documentation (gfx)
* Mouse::Meta::Method::Accessor
- Apply type constraints to default values as Moose does (gfx)
0.40_01 Mon Oct 26 17:31:23 2009
* Add an optional XS implementation (gfx)
0.40 Mon Oct 19 18:30:32 2009
* Mouse::Meta::TypeConstraint
- Fix a subtyping issue (Thanks miyagawa san) (gfx)
* Mouse/Mouse::Role
- Now export their sugars to the "main" package (gfx)
0.39 Tue Oct 13 16:42:31 2009
* Fix RT #50421 (Thanks Michael G Schwern)
* Fix RT #50422 (Thanks Michael G Schwern)
0.38 Tue Oct 13 15:40:39 2009
* No code changes from 0.37_06
* SUMMARY from 0.37 to 0.38
- Add documents about compatiblity and incompatibility to Mouse::Spec
- Refactor type constraints and type coercions
- Now ArrayRef[Foo | Bar] is parsed correctly
- Type coercions are stored in type constraint objects
- Add Mouse::Exporter for import/unimport methods
- Make roles applicable to instances
- Implement inner/augment keywords
- Port a lot of Moose's tests
- Fix a lot of bugs
0.37_06 Mon Oct 12 16:34:18 2009
* Mouse::Meta::Attribute
- Support handles => qr/pattern/ in has() (gfx)
* Mouse::Meta::Method::Destructor
- Locallize $@ and $? in DESTROY as Moose does (gfx)
* Mouse::Meta::Role
- Fix role application to instances (gfx)
* Tests
- Move t/*.t to t/001_moose/
0.37_05 Fri Oct 9 15:21:43 2009
* Mouse::Exporter
- Add build_import_methods() (gfx)
* Mouse::Spec
- Add notes about Moose::Cookbook (gfx)
* Fix some minor bugs (gfx)
0.37_04 Thu Oct 8 20:49:11 2009
* Mouse::Meta::Role::Composite
- Fix and improve role composition mechanism (gfx)
* Import a number of tests from Moose, and fix various bugs (gfx)
* Mouse::Tiny is always generated in Makefile.PL (gfx)
0.37_03 Wed Oct 7 21:10:05 2009
* Mouse::Exporter
- Add Mouse::Exporter (gfx)
* Mouse::Meta::Method::Constructor
- Optimize generated constructors (gfx)
* Mouse::Meta::Role
- Implement role application to instances (gfx)
0.37_02 Sun Oct 4 17:29:15 2009
* Mouse
- Implement the argument/inner keywords
* Mouse::Meta::Attribute
- Add get_read_method_ref() and get_write_method_ref() (gfx)
- Add find_attribute_by_name() (gfx)
- Fix clone_and_inherit_options() to deal with 'traits' (gfx)
* Mouse::Util
- Fix meta() method, which was not tested (gfx)
* Tests
- Port t/010_basics/*.t from Moose
0.37_01 Thu Oct 1 15:32:58 2009
* Type coercions are stored to type constraints (gfx)
* Refactor the type parser to parse 'ArrayRef[Object|Int]' (gfx)
* Remove Class::MOP specific subroutines from Mouse::Meta::Module (gfx)
(this change might be reverted in the release version)
- version, authority, identifier,
get_all_metaclasses, store_metaclass_by_name,
weaken_metaclass, does_metaclass_exist, remove_metaclass_by_name
* Add new public utilities to Mouse::Util (gfx)
- class_of, the counterpart for Class::MOP::class_of
- get_metaclass_by_name for Class::MOP::get_metaclass_by_name
0.37 Mon Sep 28 10:48:27 2009
* Ensure backward compatibility by author/test-externa.pl (gfx)
* Change the algorithm of has_method() for backward compatibility (gfx)
* $ENV{MOUSE_VERBOSE}=1 for Moose-compatible warnings (gfx)
0.36 Sun Sep 27 16:53:06 2009
* Fix an issue that breaks backward compatibility (gfx)
- MouseX::Attribute does work, although make tests doesn't pass
0.35 Sat Sep 26 12:38:27 2009
* Work around Test::Exception 0.27_0x by including authorized ver. (gfx)
0.34 Fri Sep 25 21:55:48 2009
* Make sure to work on 5.6.2 (gfx)
* Remove Class::Method::Modifiers dependency (gfx)
* Remove testing modules from inc/ (gfx)
* Put t/019-handles.t on ice (gfx)
0.33_01 Thu Sep 24 16:16:57 2009
* Implement traits => [...] in has() (gfx)
0.33 Wed Sep 23 15:06:40 2009
* Fix RT #49902: 0.32 fails tests reported by GRUBER (gfx)
* Add some tests
0.32 Tue Sep 22 16:44:57 2009
* Add many tests copied from Moose (gfx)
* Fix Mouse::Util::find_meta() and Mouse::Util::does_role() (gfx)
* Fix the timing triggers are invoked (gfx)
* Implement confliction checks in roles
* work around create() and create_anon() in Mouse::Meta::Role
0.31 Tue Sep 22 11:08:12 2009
* Add find_meta() and does_role() to Mouse::Util (gfx)
* Fix tests using Class::Method::Modifiers to be skipped correctly (gfx)
* Remove Test::Mouse, which was accidentally included (gfx)
0.30 Mon Sep 21 16:43:05 2009
* Implement RT #46930 (accessor/reader/writer in has()) (gfx)
* Work around anonymous classes as mortal classes (gfx)
* Implement with $role => -exlucdes => [...] (gfx)
* Implement get_method() in M::Meta::Class and M::Meta::Role (gfx)
* Make get_method_list() compatible with Moose's (gfx)
* Make unimport() not to remove non-Mouse functions (blessed and confess) (gfx)
* Remove a lot of duplication code (gfx)
* Support is => 'bare', and you must pass and 'is' option to has() (gfx)
0.29 Thu Sep 17 11:49:49 2009
* role class has ->meta in method_list, because it does in Moose since 0.9
0.28 Wed Sep 8 20:00:06 2009
* Alter Makefile.PL so in author mode we generate lib/Mouse/Tiny.pm on
every run so that 'make dist' actually does what it's meant to (mst)
* Only unlink Mouse::Tiny if it exists, otherwise autodie pitches
a fit (miyagawa)
* Make auto_deref also handles isa not only ArrayRef and HashRef, but also
ArrayRef[Foo::Bar] and HashRef[Foo::Bar]
0.27 Thu Jul 2 15:17:37 2009
* Doc updates (Sartak)
* Include missing Mouse::Tiny
0.26 Wed Jul 1 13:39:30 2009
* Fix failing tests by requiring a newer Moose in that test (t0m)
0.25 Fri Jun 19 12:05:42 2009
* Fix SIGNATURE (reported by daxim) ... by removing it :)
0.24 Mon Jun 15 14:47:18 2009
* Moose's construct_instance is deprecated, use new_object (tokuhirom)
* Improve Mouse::Tiny generation (tokuhirom)
* Inlining destructor fixes (tokuhirom)
* Add Mouse->init_meta (tokuhirom)
* Fix failing tests by requiring a newer Moose in that test (Sartak)
* Don't warn in tests about Squirrel deprecations (Sartak)
0.23 Wed May 27 16:52:28 2009
* Take the mro::linearized_isa DEMOLISHALL fix from Moose
(originally by doy)
* Mouse::class_of to mirror Class::MOP::class_of
0.22 Tue Apr 21 03:26:43 2009
* Regenerate broken signature (Sartak)
reported by Michael Gray [rt.cpan.org #45167]
* does_role now checks parent classes (tokuhirom)
* Fix for $_ not being available type constraint messages (Sartak)
0.21 Sat Apr 11 13:52:11 2009
* clone_instance has been made private, like in Moose (tokuhirom)
* Fix method modifiers applying to the wrong class (gfuji)
reported by Heikki Lehvaslaiho in [rt.cpan.org #42992]
* Fix test failures when user does not have C::Method::Modifiers(::Fast)
installed (Joel Bernstein)
* use get_all_attributes instead of
compute_all_applicable_attributes (tokuhirom)
* fixed pod bug (tokuhirom)
reported by Ryan52 in [rt.cpan.org #44928]
* Parameterized type constraints can now have messages (tokuhirom)
* Added documentation about type constraints (Mark Stosberg)
0.20 Thu Apr 9 20:22:33 2009
* Squirrel is now deprecated. Use Any::Moose instead (Sartak)
* To improve Moose compat, the third argument to trigger
(the attribute metaobject) has been removed (Sartak)
* To improve Moose compat, a single undef passed to new
is now disallowed (Sartak)
* Implemented Mouse::Object->does (wu-lee)
* Implemented override and super functions for Mouse::Role.
(wu-lee)
* Implemented stub augment and inner functions for Mouse::Role,
which merely throw an exception as in Moose::Role. (wu-lee)
* Stole more tests from Moose (020_roles/*). Not all these pass
yet; the rest have been moved to 020_roles/failing for later
examination. (wu-lee)
* Implemented Mouse::Role->does_role. This does not yet quite
seem to pass all the tests it should. (wu-lee)
* Fixed bug in Mouse::Meta::Role->apply and ->combine_apply, so that
030_roles/002_role.t tests pass. (wu-lee)
* Implemented ->version, ->authority and ->identifier methods in
Mouse::Meta::Role and Mouse::Meta::Class (mainly to make more
Moose tests pass). (wu-lee)
* Implemented emulations of Class::MOP's metaclass accessors
(get_metaclass_by_name etc.) in Mouse::Meta::Class.
* Mouse attribute property 'isa' now accepts Role names. (wu-lee)
* Fixed bug: typecoercion application order was reversed. (wu-lee)
* Fixed bug: inlined constructor was invoking BUILD methods in
wrong order. (wu-lee)
* Fixed bug: immutable constructor now redispatches correctly to
Mouse::Object::new when used in derived classes (wu-lee).
* Maybe parameterized type constraint (lestrrat)
* Performance improvements! (tokuhirom)
* Improve Moose compat of class_type (lestrrat)
* Many type-constraint fixes (tokuhirom and lestrrat)
* Mouse::Meta::Class->has_method and ->get_attribute_list (tokuhirom)
* Add get_all_attributes, use it internally instead of
compute_all_applicable_attributes (nothingmuch)
0.19 Sun Mar 8 04:38:01 2009
* Parameterized type constraints for ArrayRef and HashRef (lestrrat)
* Allow extensible attribute metaclass in traits too(tokuhirom)
* Don't use method modifiers in a test since they may not be
available (Sartak)
0.18 Fri Mar 6 19:09:33 2009
* Fix the issue preventing Mouse usage on Perl 5.6 - a bug in older
Scalar::Util! (tokuhirom)
* Allow extensible attribute metaclass (tokuhirom)
* Optimization for method modifiers (tokuhirom)
* Implement Mouse->import({into_level => 1}) (tokuhirom)
* Support for Class->meta->add_attribute($name => %options) (tokuhirom)
* Throw a more useful error message when trying to use a parameterized
type (Sartak)
0.17 Tue Feb 17 20:10:29 2009
* Load mro directly if Perl is recent enough (Nicholas Clark)
* Add dump method from Moose::Object into Mouse::Object (perigrin)
* Add role-role composition (tokuhirom)
0.16 Mon Feb 9 20:56:27 2009
* Implement get_all_method_names
* Support for anonymous enums: enum [elements]
* Moose's make_immutable returns true allowing calling code to skip
setting an explicit true value at the end of a source file. (obra)
0.15 Thu Feb 5 11:44:05 2009
* Don't export Mouse's sugar into the package 'main'
* Rename Mouse::TypeRegistry to Mouse::Util::TypeConstraints
* "type" sugar for when you're not subtyping anything
* Keep track of the source package of each type
* Moose lets you redefine a type within the same package, so we now do too
* Borrow more of Moose's meta API
* Mouse::Util::TypeConstraints now uses Exporter so you can select which
sugar you want
* class_type shouldn't load the class (Moose compat; no easy fix :/)
* suppress warnings when we use "around" and "has '+...'" (dann)
* use Data::Util to make method modifiers fast if it's available (dann)
* Implement "enum" type constraints
* Implement "override" and "super"
* MouseX::Types is now in its own dist
0.14 Sat Dec 20 16:53:05 2008
* POD fix
* Document what changes tokuhirom and Yappo made (see below)
0.13 Tue Dec 16 02:01:40 2008
* Pass in the instance to the default sub in the constructor (reported with
failing tests by rjbs)
* Tons of new features implemented by tokuhirom++ and Yappo++:
- method API in classes and roles!
- "requires" and "with" for Mouse::Role
- Type coercion
- Inject a constructor after make_immutable. Huge speedup!
- class_type and role_type
- Inject a destructor for more speedup
- MouseX::Types (may move into its own dist)
- create_anon_class
- union type constraints (eg 'Str | Undef')
- subtypes and sugar for them
0.12 Thu Dec 4 19:23:10 2008
* Provide Test::Exception function unless it's version 0.27 - RT #41254
* Mouse::Util now provides dies_ok
* Make class-like types behave more like Moose; subclasses OK! (rjbs)
* Steal more tests from Moose
0.11 Sun Nov 2 11:35:04 2008
* Throw an error if accessor/predicate/clearer/handles code eval fails
* Optimizations for generated methods, they should now be on par with Moose
0.10 Tue Oct 28 19:23:07 2008
* Require a recent Moose (which has the bugfix) for
t/500_moose_extends_mouse.t
* ouse.pm for perl -Mouse one-liners (thanks rjbs)
* Doc for init_arg => undef (thanks rjbs)
0.09 Sun Sep 28 22:37:13 2008
* Initial version of Mouse::Tiny, a one-file concatenation of the Mouse
classes for easy embedding
* Fixes caused by test failures (Carp not being loaded, Moose being
required in a test)
0.08 Sun Sep 28 12:46:07 2008
* ALL dependencies have been removed!
* Fixes for Class::Method::Modifiers being required for testing
0.07 Sun Sep 28 00:19:07 2008
* All runtime dependencies have been removed! The only change in
functionality (hopefully) is that the Sub::Exporter features can no
longer be used (we've backed down to regular Exporter). Scalar::Util is
required for "weaken" support, and Class::Method::Modifiers is required
for method modifier support, but only if you use these features!
Having Scalar::Util and MRO::Compat installed will provide only
performance increases.
* Tests and fixes for extending a Mouse class with Moose (nothingmuch)
* Support for adding method modifiers to a role, and composing them into
classes (we'll get true methods some day)
* Method modifiers now go through the metaclass instead of invoking
Class::Method::Modifiers directly
* Remove the deprecated before/after/around triggers
* Roles keywords 'requires' and 'excludes' now throw errors instead of
silently doing nothing (they aren't implemented yet)
0.06 Thu Jul 23 02:10:07 2008
* Deprecating before/after/around triggers! Switch back to coderef +
whatever you used to do. Moose is have it implemented it as an extension
trait.
* Mouse
- updated trigger doc (thanks perigrin)
- which will not see CPAN :( sorry perigrin!
* Mouse::Meta::Class
- add a make_immutable method which does nothing(!), for even more
Moose compat (nothingmuch's idea)
0.05 Thu Jul 17 01:53:20 2008
* Mouse::Role
Mouse::Meta::Role
Mouse
Squirrel::Role
- Begin adding roles! Attributes are mostly there. Still experimental.
* Mouse::Meta::Class
Mouse::Object
- Add clone_object and clone_instance (nothingmuch)
* Mouse::Object
- Add BUILDARGS (nothingmuch)
* Mouse::Meta::Attribute
Mouse::Object
- Add "before" and "around" triggers. Moose doesn't even have them yet! :)
* Everywhere
- Improvements to the MOP (e.g. Class->add_method)
* (build)
- Excise dependency on Test::Warn, we only used it in one simple test
0.04 Tue Jun 17 04:56:36 2008
* Mouse
Mouse::Meta::Attribute
- Add support for has '+name'
- Add lazy_build (nothingmuch)
0.03 Thu Jun 12 21:54:07 2008
* Mouse
- Add before/after/around, courtesy of Class::Method::Modifiers
* Mouse::Object
- Add support for ->new({...})
- Use compute_all_applicable_attributes in the constructor to get the
attributes of superclasses
- Add better support for undef init_arg
* Mouse::Meta::Class
- More methods: compute_all_applicable_attributes, has_attribute
0.02 Wed Jun 11 01:56:44 2008
* Squirrel
- Add Squirrel which acts as Moose if it's already loaded, otherwise
Mouse (thanks nothingmuch)
* Mouse::Meta::Object
- Fix the order in which BUILD methods are called (thanks Robert
Boone)
0.01 Tue Jun 10 02:13:21 2008
* Initial release.
|