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
|
@prefix cpan-uri: <http://purl.org/NET/cpan-uri/terms#> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix doap-changeset: <http://ontologi.es/doap-changeset#> .
@prefix doap-deps: <http://ontologi.es/doap-deps#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://dev.perl.org/licenses/>
dc:title "the same terms as the perl 5 programming language system itself".
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/project>
a doap:Project;
dc:contributor <http://purl.org/NET/cpan-uri/person/tobyink>;
doap-deps:develop-recommendation [ doap-deps:on "Dist::Inkt 0.001"^^doap-deps:CpanId ];
doap-deps:develop-requirement [ doap-deps:on "Mite 0.006001"^^doap-deps:CpanId ];
doap-deps:runtime-recommendation [ doap-deps:on "Sub::Util"^^doap-deps:CpanId ];
doap-deps:runtime-requirement [ doap-deps:on "perl 5.008001"^^doap-deps:CpanId ], [ doap-deps:on "Exporter::Shiny"^^doap-deps:CpanId ], [ doap-deps:on "Type::Tiny 1.004"^^doap-deps:CpanId ], [ doap-deps:on "Role::Tiny"^^doap-deps:CpanId ], [ doap-deps:on "Role::Hooks 0.008"^^doap-deps:CpanId ], [
doap-deps:on "Class::Method::Modifiers"^^doap-deps:CpanId;
], [ doap-deps:on "List::Util 1.54"^^doap-deps:CpanId ];
doap-deps:test-recommendation [ doap-deps:on "Moo"^^doap-deps:CpanId ], [ doap-deps:on "MooX::TypeTiny"^^doap-deps:CpanId ], [ doap-deps:on "Class::Tiny"^^doap-deps:CpanId ], [ doap-deps:on "Object::Pad 0.70"^^doap-deps:CpanId ], [
doap-deps:on "MooseX::Extended 0.22"^^doap-deps:CpanId;
], [ doap-deps:on "Moose"^^doap-deps:CpanId ], [ doap-deps:on "Mouse"^^doap-deps:CpanId ];
doap-deps:test-requirement [ doap-deps:on "Test::More 0.96"^^doap-deps:CpanId ], [ doap-deps:on "Test::Fatal"^^doap-deps:CpanId ], [ doap-deps:on "Try::Tiny"^^doap-deps:CpanId ], [ doap-deps:on "Test::Requires"^^doap-deps:CpanId ];
doap:bug-database <https://github.com/tobyink/p5-sub-handlesvia/issues>;
doap:created "2020-01-18"^^xsd:date;
doap:developer <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:download-page <https://metacpan.org/release/Sub-HandlesVia>;
doap:homepage <https://metacpan.org/release/Sub-HandlesVia>;
doap:license <http://dev.perl.org/licenses/>;
doap:maintainer <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:name "Sub-HandlesVia";
doap:programming-language "Perl";
doap:release <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-001>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-002>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-003>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-004>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-005>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-006>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-007>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-008_000>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-008_001>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-008_002>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-008_003>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-009>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-010>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-011>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-012>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-013>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-014>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-015>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-016>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-017>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-018>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-019>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-020>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-021>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-022>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-023>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-024>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-025>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-026>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-027>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-028>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-029>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-030>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-031>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-032>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-033>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-034>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-035>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-036>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-037>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-038>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-039>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-040>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-041>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-042>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-043>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-044>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-045>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-046>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050000>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050001>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050002>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050004>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050005>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050006>, <http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050007>;
doap:repository [
a doap:GitRepository;
doap:browse <https://github.com/tobyink/p5-sub-handlesvia>;
];
doap:shortdesc "alternative handles_via implementation".
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-001>
a doap:Version;
rdfs:label "Initial release";
dc:identifier "Sub-HandlesVia-0.001"^^xsd:string;
dc:issued "2020-01-21"^^xsd:date;
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.001.tar.gz>;
doap:revision "0.001"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-002>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.002"^^xsd:string;
dc:issued "2020-01-21"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Packaging;
rdfs:label "Add missing dependency on Class::Tiny.";
], [
a doap-changeset:Change;
rdfs:label "Drop dependency on List::MoreUtils by including our own copies of `natatime` and `firstidx`.";
], [
a doap-changeset:Documentation;
rdfs:label "Fix some typos.";
], [
a doap-changeset:Documentation;
rdfs:label "Remove some outdated information.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.002.tar.gz>;
doap:revision "0.002"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-003>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.003"^^xsd:string;
dc:issued "2020-01-21"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "A lot of refactoring, reducing duplication in Moo, Moose, and Mouse integration.";
], [
a doap-changeset:Documentation;
rdfs:label "Document API for how Sub::HandlesVia interacts with OO frameworks.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.003.tar.gz>;
doap:revision "0.003"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-004>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.004"^^xsd:string;
dc:issued "2020-01-22"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Support for Moo::Role, Moose::Role, and Mouse::Role.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.004.tar.gz>;
doap:revision "0.004"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-005>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.005"^^xsd:string;
dc:issued "2020-01-23"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "`head` method for Array.";
], [
a doap-changeset:Addition;
rdfs:label "`tail` method for Array.";
], [
a doap-changeset:Bugfix;
rdfs:label "Stop accidentally setting coerce=>'' for some Moo attributes. It confuses Moo.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.005.tar.gz>;
doap:revision "0.005"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-006>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.006"^^xsd:string;
dc:issued "2020-01-23"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Output some version numbers and environment variables in test suite.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.006.tar.gz>;
doap:revision "0.006"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-007>
a doap:Version;
rdfs:label "Bond... James Bond";
dc:identifier "Sub-HandlesVia-0.007"^^xsd:string;
dc:issued "2020-01-25"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "`scalar_ref` method for Scalar.";
], [
a doap-changeset:Bugfix;
rdfs:label "Better handling for non-hashref-based Moose instances.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.007.tar.gz>;
doap:revision "0.007"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-008_000>
a cpan-uri:DeveloperRelease, doap:Version;
dc:identifier "Sub-HandlesVia-0.008_000"^^xsd:string;
dc:issued "2020-01-26"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Spew some output in t/03moo_mxtt/trait_hash.t.";
], [
a doap-changeset:Packaging;
rdfs:label "Require MooX::TypeTiny and Moo.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.008_000.tar.gz>;
doap:revision "0.008_000"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-008_001>
a cpan-uri:DeveloperRelease, doap:Version;
dc:identifier "Sub-HandlesVia-0.008_001"^^xsd:string;
dc:issued "2020-01-26"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Load Carp::Always for failing test case.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.008_001.tar.gz>;
doap:revision "0.008_001"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-008_002>
a cpan-uri:DeveloperRelease, doap:Version;
dc:identifier "Sub-HandlesVia-0.008_002"^^xsd:string;
dc:issued "2020-01-27"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Spew even more output in t/03moo_mxtt/trait_hash.t.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.008_002.tar.gz>;
doap:revision "0.008_002"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-008_003>
a cpan-uri:DeveloperRelease, doap:Version;
dc:identifier "Sub-HandlesVia-0.008_003"^^xsd:string;
dc:issued "2020-01-27"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Skip t/03moo_mxtt/trait_hash.t if Type::Tiny is not using XS.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.008_003.tar.gz>;
doap:revision "0.008_003"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-009>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.009"^^xsd:string;
dc:issued "2020-01-27"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Revert MooX::TypeTiny test verbosity from 0.008_xxx.";
], [
a doap-changeset:Packaging;
rdfs:label "Revert testing dependency additions from 0.008_xxx.";
], [
a doap-changeset:Tests;
rdfs:label "Skip Array trait tests under Mouse if Mouse is not using XS due to Mouse::PurePerl bug.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.009.tar.gz>;
doap:revision "0.009"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-010>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.010"^^xsd:string;
dc:issued "2020-01-27"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "`apply` method for Array.";
], [
a doap-changeset:Addition;
rdfs:label "`for_each` method for Array.";
], [
a doap-changeset:Addition;
rdfs:label "`for_each_pair` method for Array.";
], [
a doap-changeset:Addition;
rdfs:label "`pick_random` method for Array.";
], [
a doap-changeset:Addition;
rdfs:label "`for_each_pair` method for Hash.";
], [
a doap-changeset:Addition;
rdfs:label "`for_each_key` method for Hash.";
], [
a doap-changeset:Addition;
rdfs:label "`for_each_value` method for Hash.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.010.tar.gz>;
doap:revision "0.010"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-011>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.011"^^xsd:string;
dc:issued "2020-01-27"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "`any` method for Array.";
], [
a doap-changeset:Documentation;
rdfs:label "Document which aliases MouseX::NativeTraits provides.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.011.tar.gz>;
doap:revision "0.011"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-012>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.012"^^xsd:string;
dc:issued "2020-02-02"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Add missing methods from List::Util to Array. (These are mostly untested, but probably don't have bugs as they are simple non-mutator methods.)";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.012.tar.gz>;
doap:revision "0.012"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-013>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.013"^^xsd:string;
dc:issued "2020-02-04"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Skip Moo tests on very old Moo.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.013.tar.gz>;
doap:revision "0.013"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-014>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.014"^^xsd:string;
dc:issued "2020-08-25"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Fix compilation errors caused by value coercions under some circumstances.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.014.tar.gz>;
doap:revision "0.014"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-015>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.015"^^xsd:string;
dc:issued "2020-09-12"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "`reset` method for Array.";
], [
a doap-changeset:Addition;
rdfs:label "`reset` method for Hash.";
], [
a doap-changeset:Change;
rdfs:label "Plain toolkit (used by non-Moo/Moose/Mouse classes) now supports defaults/builders.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.015.tar.gz>;
doap:revision "0.015"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-016>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.016"^^xsd:string;
dc:issued "2020-09-20"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Fix load order issue where handles_via is used in a Moo::Role when Moo.pm isn't loaded yet.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.016.tar.gz>;
doap:revision "0.016"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-017>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.017"^^xsd:string;
dc:issued "2022-06-11"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Numeric comparison methods.";
], [
a doap-changeset:Addition;
rdfs:label "String comparison methods.";
], [
a doap-changeset:Addition;
rdfs:label "Case-insensitive versions of string comparison methods.";
], [
a doap-changeset:Addition;
rdfs:label "String uc, lc, and fc methods.";
], [
a doap-changeset:Addition;
rdfs:label "String match_i method.";
], [
a doap-changeset:Addition;
rdfs:label "String starts_with, ends_with, and contains methods, plus case-insensitive versions of them.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.017.tar.gz>;
doap:revision "0.017"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-018>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.018"^^xsd:string;
dc:issued "2022-06-11"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Sub::HandlesVia::Handler objects now have a `documentation` attribute.";
], [
a doap-changeset:Documentation;
rdfs:label "Generated pod for the HandlerLibrary modules.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.018.tar.gz>;
doap:revision "0.018"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-019>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.019"^^xsd:string;
dc:issued "2022-06-11"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Include more examples in pod for HandlerLibrary modules.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.019.tar.gz>;
doap:revision "0.019"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-020>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.020"^^xsd:string;
dc:issued "2022-06-11"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Improve and document the Sub::HandlesVia::HandlerLibrary::Scalar module.";
], [
a doap-changeset:Tests;
rdfs:label "Additional tests based on pod examples.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.020.tar.gz>;
doap:revision "0.020"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-021>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.021"^^xsd:string;
dc:issued "2022-06-12"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Provide extended examples in HandlerLibrary pod.";
], [
a doap-changeset:Tests;
rdfs:label "Additional tests based on extended examples.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.021.tar.gz>;
doap:revision "0.021"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-022>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.022"^^xsd:string;
dc:issued "2022-06-14"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Additional Array example: push and shift.";
], [
a doap-changeset:Documentation;
rdfs:label "Other documentation improvements.";
], [
a doap-changeset:Change;
rdfs:label "Cleaned up Sub::HandlesVia::Handler and moved a lot of code into a new class Sub::HandlesVia::CodeGenerator, which replaces the big hash of callbacks which was passed around everywhere.";
], [
a doap-changeset:Documentation;
rdfs:label "Document Sub::HandlesVia::Handler and Sub::HandlesVia::CodeGenerator.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.022.tar.gz>;
doap:revision "0.022"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-023>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.023"^^xsd:string;
dc:issued "2022-06-14"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Major Sub::HandlesVia::CodeGenerator cleanups.";
], [
a doap-changeset:Removal;
rdfs:label "Sub::HandlesVia::CodeGenerator's simple_set concept has been removed; this was vestigial and had no effect.";
], [
a doap-changeset:Packaging;
rdfs:label "Changed minimum required Perl from 5.8.0 to 5.8.1.";
], [
a doap-changeset:Documentation;
rdfs:label "Minor documentation improvements.";
], [
a doap-changeset:Change;
rdfs:label "Move some code from Sub::HandlesVia::Toolkit::Plain to its base class.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.023.tar.gz>;
doap:revision "0.023"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-024>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.024"^^xsd:string;
dc:issued "2022-06-15"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Explicitly document that Sub::HandlesVia needs to be imported AFTER Moo/Moose/Mouse so that it can detect the class/role builder being used.";
], [
a doap-changeset:Tests;
rdfs:label "Test that Sub::HandlesVia works okay with MooseX::Extended.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.024.tar.gz>;
doap:revision "0.024"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-025>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.025"^^xsd:string;
dc:issued "2022-06-16"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Internally shift off the method invocant sometimes as benchmarking shows that to be faster.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.025.tar.gz>;
doap:revision "0.025"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-026>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.026"^^xsd:string;
dc:issued "2022-06-30"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Support classes built with Mite.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.026.tar.gz>;
doap:revision "0.026"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-027>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.027"^^xsd:string;
dc:issued "2022-06-30"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Skip Mite test on Perl < 5.10.1";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.027.tar.gz>;
doap:revision "0.027"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-028>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.028"^^xsd:string;
dc:issued "2022-07-02"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Update;
rdfs:label "Support for Mite roles.";
], [
a doap-changeset:Tests;
rdfs:label "Lots more tests for using Sub::HandlesVia with Mite.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.028.tar.gz>;
doap:revision "0.028"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-029>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.029"^^xsd:string;
dc:issued "2022-07-09"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Packaging;
rdfs:label "Use Mite internally, dropping the dependency on Class::Tiny.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.029.tar.gz>;
doap:revision "0.029"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-030>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.030"^^xsd:string;
dc:issued "2022-07-09"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Packaging;
rdfs:label "Drop dependency on Scope::Guard.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.030.tar.gz>;
doap:revision "0.030"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-031>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.031"^^xsd:string;
dc:issued "2022-07-09"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Packaging;
rdfs:label "Add dependencies on MRO::Compat and Devel::GlobalDestruction, but only on very old Perls.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.031.tar.gz>;
doap:revision "0.031"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-032>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.032"^^xsd:string;
dc:issued "2022-07-12"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Packaging;
rdfs:label "Require newer version of Role::Hooks.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.032.tar.gz>;
doap:revision "0.032"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-033>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.033"^^xsd:string;
dc:issued "2022-07-12"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Update;
rdfs:label "Recompile with newer Mite.";
], [
a doap-changeset:Change;
rdfs:label "Optimizations to Sub::HandlesVia::CodeGenerator.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.033.tar.gz>;
doap:revision "0.033"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-034>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.034"^^xsd:string;
dc:issued "2022-08-07"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Sub::HandlesVia::CodeGenerator now handles generating code for type assertions and coercions instead of relying on handlers to do it.";
], [
a doap-changeset:Change;
rdfs:label "Sub::HandlesVia::CodeGenerator now has a configurable sandbox package.";
], [
a doap-changeset:Update;
rdfs:label "Sub::HandlesVia::Toolkit::Mite supports recent Mite features such as lvalue accessors and new ways of specifying defaults.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.034.tar.gz>;
doap:revision "0.034"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-035>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.035"^^xsd:string;
dc:issued "2022-08-12"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Sub::HandlesVia::CodeGenerator method_installer is now a rw attribute as Sub::Accessor::Small was relying on that.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.035.tar.gz>;
doap:revision "0.035"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-036>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.036"^^xsd:string;
dc:issued "2022-08-26"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Fix integration issues with newer versions of Mite.";
], [
a doap-changeset:Addition;
rdfs:label "Add a delete_where method for hashes.";
], [
a doap-changeset:Addition;
rdfs:label "Add execute_list, execute_scalar, execute_void, and corresponding _method variants for coderefs.";
], [
a doap-changeset:Addition;
rdfs:label "The flatten_deep, natatime, and first_index methods for arrayrefs no longer use callbacks.";
], [
a doap-changeset:Documentation;
rdfs:label "Examples for a few methods.";
], [
a doap-changeset:Documentation;
rdfs:label "More tests for a few methods.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.036.tar.gz>;
doap:revision "0.036"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-037>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.037"^^xsd:string;
dc:issued "2022-09-26"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Hash:set shouldn't hardcode use of Carp::croak. Instead a CodeGenerator should decide how to deal with error messages.";
], [
a doap-changeset:Bugfix;
rdfs:label "Fix test case broken by Type::Tiny v2.";
doap-changeset:fixes <tdb:2013,https://github.com/tobyink/p5-sub-handlesvia/issues/2>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/syspete>;
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/2>;
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.037.tar.gz>;
doap:revision "0.037"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-038>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.038"^^xsd:string;
dc:issued "2022-10-21"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Minor changes to documentation for Hash:accessor and Array:accessor.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.038.tar.gz>;
doap:revision "0.038"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-039>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.039"^^xsd:string;
dc:issued "2022-10-26"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Mite has supported Perl 5.8.x for a while now, so Mite-related tests shouldn't be restricted to running on Perl 5.10.1+.";
], [
a doap-changeset:Bugfix;
rdfs:label "Fix application of Sub::HandlesVia Moose/Mouse traits to metaobjects that have other traits applied to them.";
doap-changeset:fixes <tdb:2013,https://github.com/tobyink/p5-sub-handlesvia/issues/3>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/brtastic>;
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/3>;
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.039.tar.gz>;
doap:revision "0.039"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-040>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.040"^^xsd:string;
dc:issued "2022-10-27"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Stricter detection of Moo::Role roles to prevent some false positives when given Mouse::Role and Moose::Role roles.";
doap-changeset:fixes <tdb:2013,https://github.com/tobyink/p5-sub-handlesvia/issues/4>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/brtastic>;
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/4>;
], [
a doap-changeset:Tests;
rdfs:label "Add a test using Sub::HandlesVia when Beam::Wire is loaded.";
doap-changeset:fixes <tdb:2013,https://github.com/tobyink/p5-sub-handlesvia/issues/5>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/brtastic>;
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/5>;
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.040.tar.gz>;
doap:revision "0.040"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-041>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.041"^^xsd:string;
dc:issued "2022-10-29"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Experimental support for Object::Pad.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.041.tar.gz>;
doap:revision "0.041"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-042>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.042"^^xsd:string;
dc:issued "2022-10-30"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Improved support for Object::Pad, including support for non-scalar fields.";
], [
a doap-changeset:Addition;
rdfs:label "Sub::HandlesVia::Declare for compile-time declaration of Sub::HandlesVia delegations.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.042.tar.gz>;
doap:revision "0.042"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-043>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.043"^^xsd:string;
dc:issued "2022-10-31"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Sub::HandlesVia::HandlerLibrary methods: handler_names, has_handler, and get_handler.";
], [
a doap-changeset:Addition;
rdfs:label "Sub::HandlesVia::HandlerLibrary::Blessed.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.043.tar.gz>;
doap:revision "0.043"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-044>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.044"^^xsd:string;
dc:issued "2022-10-31"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Moved a lot of pod out of Sub::HandlesVia and into Sub::HandlesVia::Manual::*.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.044.tar.gz>;
doap:revision "0.044"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-045>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.045"^^xsd:string;
dc:issued "2022-11-08"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Bugfix;
rdfs:label "Fix for `with qw(Role1 Role2)` in Moose where at least one role uses Sub::HandlesVia.";
doap-changeset:fixes <tdb:2013,https://github.com/tobyink/p5-sub-handlesvia/issues/6>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/brtastic>;
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/6>;
], [
a doap-changeset:Bugfix;
rdfs:label "Support attributes declared with `has '+name'`.";
doap-changeset:fixes <tdb:2013,https://github.com/tobyink/p5-sub-handlesvia/issues/7>;
doap-changeset:thanks <http://purl.org/NET/cpan-uri/person/brtastic>;
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/7>;
], [
a doap-changeset:Addition;
rdfs:label "Add a `generator_for_prelude` attribute to Sub::HandlesVia::CodeGenerator.";
doap-changeset:fixes <tdb:2013,https://github.com/tobyink/p5-sub-handlesvia/issues/8>;
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/8>;
], [
a doap-changeset:Documentation;
rdfs:label "Document that `with qw(Role1 Role2)` in Mouse is currently broken if either role uses Sub::HandlesVia.";
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/9>;
], [
a doap-changeset:Tests;
rdfs:label "Test that `with qw(Role1 Role2)` in Moo works if either role uses Sub::HandlesVia.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.045.tar.gz>;
doap:revision "0.045"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-046>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.046"^^xsd:string;
dc:issued "2022-12-16"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "Sub::HandlesVia::HandlerLibrary::Enum module.";
], [
a doap-changeset:Change;
rdfs:label "Handler libraries can now provide constants for shortcuts.";
], [
a doap-changeset:Update;
rdfs:label "Rebuild with latest Mite.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.046.tar.gz>;
doap:revision "0.046"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050000>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.050000"^^xsd:string;
dc:issued "2023-04-05"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Mention potential load-order bugs when importing multiple extensions for Moo into the same package.";
], [
a doap-changeset:Documentation;
rdfs:label "Add a few missing references to the Sub::HandlesVia::HandlerLibrary::Enum module to the documentation.";
], [
a doap-changeset:Documentation;
rdfs:label "Update Sub::HandlesVia::Manual::Comparison.";
], [
a doap-changeset:Packaging;
rdfs:label "Change versioning scheme.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.050000.tar.gz>;
doap:revision "0.050000"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050001>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.050001"^^xsd:string;
dc:issued "2025-03-23"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Update;
rdfs:label "Fix test cases which failed due to Object::Pad dropping the `has` keyword.";
], [
a doap-changeset:Documentation;
rdfs:label "Update documentation which is out of date due to Object::Pad dropping the `has` keyword.";
], [
a doap-changeset:Update;
rdfs:label "Fix test cases which will fail due to changed error messages in next release of Type::Tiny.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.050001.tar.gz>;
doap:revision "0.050001"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050002>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.050002"^^xsd:string;
dc:issued "2025-03-23"^^xsd:date, "2025-07-14"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:SecurityFix;
rdfs:label "Rebuild using Mite 0.013000.";
];
], [
doap-changeset:item [
a doap-changeset:Addition;
rdfs:label "String:trim.";
], [
a doap-changeset:Addition;
rdfs:label "Number:ceil and Number:floor.";
], [
a doap-changeset:Addition;
rdfs:label "ArrayRef:indexed.";
], [
a doap-changeset:Addition;
rdfs:label "Scalar:get and Scalar:set.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.050002.tar.gz>;
doap:revision "0.050002"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050004>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.050004"^^xsd:string;
dc:issued "2025-11-10"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Array:for_each, Hash:for_each_key, and Hash:for_each_value now support $_.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.050004.tar.gz>;
doap:revision "0.050004"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050005>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.050005"^^xsd:string;
dc:issued "2025-11-10"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Change;
rdfs:label "Bug fix for pathological case exposed by Hydrogen.";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.050005.tar.gz>;
doap:revision "0.050005"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050006>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.050006"^^xsd:string;
dc:issued "2025-11-10"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Documentation;
rdfs:label "Document usage with the Perl 5.38+ `class` keyword (Corinna).";
], [
a doap-changeset:Tests;
rdfs:label "Test with Perl 5.38+ `class` keyword (Corinna).";
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.050006.tar.gz>;
doap:revision "0.050006"^^xsd:string.
<http://purl.org/NET/cpan-uri/dist/Sub-HandlesVia/v_0-050007>
a doap:Version;
dc:identifier "Sub-HandlesVia-0.050007"^^xsd:string;
dc:issued "2025-11-15"^^xsd:date;
doap-changeset:changeset [
doap-changeset:item [
a doap-changeset:Tests;
rdfs:label "Some of the Corinna test cases accidentally required Moo.";
rdfs:seeAlso <https://github.com/tobyink/p5-sub-handlesvia/issues/18>;
];
];
doap-changeset:released-by <http://purl.org/NET/cpan-uri/person/tobyink>;
doap:file-release <http://backpan.cpan.org/authors/id/T/TO/TOBYINK/Sub-HandlesVia-0.050007.tar.gz>;
doap:revision "0.050007"^^xsd:string.
<http://purl.org/NET/cpan-uri/person/brtastic>
a foaf:Person;
foaf:homepage <https://bbrtj.eu/>;
foaf:name "Bartosz Jarzyna";
foaf:nick "BRTASTIC";
foaf:page <https://github.com/bbrtj>, <https://metacpan.org/author/BRTASTIC>.
<http://purl.org/NET/cpan-uri/person/syspete>
a foaf:Person;
foaf:name "Peter Mottram";
foaf:nick "SYSPETE";
foaf:page <https://github.com/SysPete>, <https://metacpan.org/author/SYSPETE>.
<http://purl.org/NET/cpan-uri/person/tobyink>
a foaf:Person;
foaf:mbox <mailto:tobyink@cpan.org>;
foaf:name "Toby Inkster";
foaf:nick "TOBYINK";
foaf:page <https://metacpan.org/author/TOBYINK>.
|