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
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
|
Also see Moose::Manual::Delta for more details of, and workarounds
for, noteworthy changes.
2.1405 2015-06-06
[BUG FIXES]
- The native 'Array' trait 'sort' accessor now returns the number of
elements in scalar context, instead of the undefined value (or a
different, seemingly-random, value under 5.23.x).
2.1404 2015-04-16
[BUG FIXES]
- Add Sub::Identify to prereqs. (RT #101661)
- bump List::Util prereq to avoid a memory leak (RT#101124)
[DOCUMENTATION]
- Added section to Moose::Manual::Resources to list external links related
to Moose (RT #101993, Michael LaGrasta)
2.1403 2014-12-07
[DOCUMENTATION]
- Added a section to Moose::Manual::MethodModifiers illustrating how method
modifiers work with inheritance. (Andreas Koenig, RT #98940)
- Added docs to Moose.pm on the -meta_name import option. This addresses RT
#98488.
[BUG FIXES]
- Fix a test that fails on MSWin32 systems using nmake
- fix dev build compilation error when using MSVC (A. Sinan Unur)
[OTHER]
- the modules in the git repository now have a defined $VERSION, to make it
easier to test MooseX::* and other code under development.
2.1402 2014-11-05
[BUG FIXES]
- Fix a test that was trying to load Test::Exception instead of Test::Fatal.
(Michael Schout)
2.1401 2014-11-03
[BUG FIXES]
- The core overloading support interacted badly with
MooseX::MarkAsMethods. If you used MooseX::MarkAsMethods in a role that
provided overloading, then that overloading would not be properly applied
to consuming classes, leading to very weird errors of the form:
Can't resolve method "???" overloading """" in package "Class2" ...
Note that the problems that MooseX::MarkAsMethods fixes are no longer
present if you are using Moose 2.1400+ and namespace::autoclean 0.16+. We
encourage you to upgrade both of these modules and remove
MooseX::MarkAsMethods from your code base.
2.1400 2014-10-31
[BUG FIXES]
- Moose exception classes now stringify all stack frames, to avoid issues
in global destruction (see RT#99811)
2.1307 2014-10-26 (TRIAL RELEASE)
[ENHANCEMENTS]
- Support added to Moose::Exporter for exporting subs by their fully
qualified name, as well as coderefs. This avoids internal breakage if some
other module has monkey-patched a sub to be exported and left it anonymous
(e.g. RT#88669). (Graham Knop, PR#84)
[BUG FIXES]
- Further refined the overloading fixes from 2.1306, fixing fallback
handling on older perl versions (Dave Rolsky, PR#85)
2.1306 2014-10-25 (TRIAL RELEASE)
[ENHANCEMENTS]
- Rewrote overloading implementation to use a new Class::MOP::Overload
object. This object properly captures all overloading information. The
Class::MOP::Method::Overload class has been removed. (Dave Rolsky, PR#83)
[BUG FIXES]
- If a role had method-based overloading but did not actually implement the
specified method, its overloading was simply ignored when applying
overloading to other roles or classes. Reported by rjbs. RT #98531.
2.1305 2014-10-22 (TRIAL RELEASE)
[ENHANCEMENTS]
- By default, exceptions thrown from inside Moose now remove most of the
Moose internals from their stack trace when stringifying. This makes for
much more readable error messages in most cases. Set the
MOOSE_FULL_EXCEPTION env var to true to get the complete stack trace.
2.1304 2014-09-25 (TRIAL RELEASE)
[BUG FIXES]
- closed a memory leak in Moose exception objects where captured stack
trace frames would contain circular references to the exception objects
themselves (Graham Knop, PR#81)
2.1303 2014-09-19 (TRIAL RELEASE)
[TEST FIXES]
- fix tests that fail on altered warning messages in perl 5.21.4 (RT#98987)
2.1302 2014-08-19 (TRIAL RELEASE)
[BUG FIXES]
- When a role consumes another role and they differ in their overloading
fallback settings, the consuming role now silently wins instead of
throwing an exception. This is consistent with how other
role-consumes-role conflicts are handled.
- Fixed the docs for overloading conflicts to match reality.
2.1301 2014-08-19 (TRIAL RELEASE)
[BUG FIXES]
- Conflict detection for overloading operators is now more correct. If a
class consumed two roles that both had identical overloading methods
(because they got them from some other role, for example), this caused an
error, but it shouldn't. GH #4. (rjbs)
- Similarly, when a role consumes another role, conflicts in overloading
operators are now silently resolved in favor of the consuming role, just
as they are with methods. Note that conflicts between the fallback setting
for roles are still an error.
2.1300 2014-08-11 (TRIAL RELEASE)
[ENHANCEMENTS]
- Moose now has core support for overloading in roles. When a role with
overloading is applied to classes or other roles, the overloading settings
are transferred to the consumer. Conflicts between roles are treated much
like method conflicts. This obviates the need for
MooseX::Role::WithOverloading. If you are using
MooseX::Role::WithOverloading, upgrade to version 0.15+ and it will simply
become a no-op when used with this version of Moose.
[OTHER]
- The overloading info methods for roles and classes no longer treat
"fallback" as an overloaded op. Instead, there are new
get_overload_fallback_value() and set_overload_fallback_value() methods to
deal with this explicitly. This is arguably a bug fix.
2.1213 2014-09-25
[BUG FIXES]
- closed a memory leak in Moose exception objects where captured stack
trace frames would contain circular references to the exception objects
themselves (Graham Knop, PR#81)
2.1212 2014-09-19
[TEST FIXES]
- fix tests that fail on altered warning messages in perl 5.21.4 (RT#98987)
2.1211 2014-08-11
[DOCUMENTATION]
- Updated Changes and Moose::Manual::Delta to note when we started removing
lazy_build from docs. Also added a note in the Moose::Meta::Attribute docs
stating that use of this feature is discouraged.
- Added a pointer from the auto_deref feature to
Moose::Meta::Attribute::Native. This is often a better choice.
[OTHER]
- The subs installed by Moose::Exporter->setup_import_methods are now named
using Sub::Name (Dave Rolsky, RT#97572)
2.1210 2014-07-03
[DOCUMENTATION]
- Clarify that Moose::Exception exists for internal usage and that user
code is better off using the Throwable role or Throwable::Error superclass.
- Moose::Manual::Support policy clarified regarding legacy Perl versions
[OTHER]
- logic has been removed for an alpha branch of Test::Builder that will
never see the light of day, and will break with upcoming Test::Builder
changes (Exodist)
2.1209 2014-06-04
[OTHER]
- The is_anon method now always returns false when called on
Moose::Meta::Role::Composite objects. This isn't strictly right, but for
the purposes of Moose internals, where "is_anon" really means "needs to be
cleaned up", it's correct. This fixes warnings that were seen when using
recent Moose (2.1100+) and MooseX::Role::Parameterized roles as part of a
composite role. These warnings only appear with Perl 5.16 and earlier.
2.1208 2014-06-01
[BUG FIXES]
- fix implementation of throw_exception in internal Class::MOP traits,
caused by changes in 2.1207 (ether, RT#96112)
2.1207 2014-05-26
[OTHER]
- Fixed Specio support to work with the latest Specio (0.10). This version of
Specio no longer uses Moose internally.
- exceptions in Class::MOP no longer use Moose::Util, instead using their
own private implementation of throw_exception, to avoid needless premature
loading of Moose logic.
2.1206 2014-05-14
[BUG FIXES]
- exceptions should not throw other exceptions; fixes cases where exceptions
were reporting the wrong error (Upasana, RT#92818 and RT#94795)
[OTHER]
- prereqs needed strictly for building with Dist::Zilla have been moved from
develop requires to develop recommends, to simplify automated testing on
older perls that cannot install all Dist::Zilla components
- removed instances of metaobjects in exception classes where they're not
really required
2.1205 2014-04-15
[ENHANCEMENTS]
- new utility interface: Moose::Util::is_role
[BUG FIXES]
- better error message provided when trying to load a trait class that does
not exist in @INC (Upasana, RT#94731)
[OTHER]
- new test added, to run last, which runs `moose-outdated` as a possibly
more visible mechanism to provide important information to the user
(re RT#92780)
2.1204 2014-02-06
[BUG FIXES]
- bump minimum prereq needed for optional test using MooseX::NonMoose (which
broke with new Module::Runtime, see 2.1203), so users can install Moose
and pass tests before updating MooseX::NonMoose.
2.1203 2014-02-06
[BUG FIXES]
- bump prereq on Module::Runtime to properly detect when a module fails to
load, and fix how we call these subs (Zefram, RT#92770, RT#86394, RT#92791)
[ENHANCEMENTS]
- line numbers in shipped code are now almost the same (within 3) as the
repository source, for easier debugging
2.1202 2014-01-19
[BUG FIXES]
- string comparisons are now possible with Moose exceptions (RT#92232)
2.1201 2014-01-11
[OTHER]
- re-release to index pod files (Moose::Cookbook::*, Moose::Manual::* etc).
2.1200 2014-01-06
[OTHER]
- Releasing 2.1108 as stable (last stable release was 2.1005).
2.1108 2014-01-04 (TRIAL RELEASE)
[OTHER]
- fixed distribution manifest
- minor documentation and metadata updates
2.1107 2013-11-29 (TRIAL RELEASE)
[OTHER]
- many additions to the list of conflicting modules (those that require
updates after installing Moose), reflecting recent API changes
- now failing early at build time, with a useful error message, if a
compiler is not available
2.1106 2013-11-05 (TRIAL RELEASE)
[BUG FIXES]
- throw_error import cleaned from Moose::Object after use (doy)
- resolved new circular load issue between Moose::Util and Class::MOP (Kent
Fredric, RT#89713 and PR#42)
2.1105 2013-10-30 (TRIAL RELEASE)
[BUG FIXES]
- legacy throw_error now takes multiple arguments, like confess does
(Karen Etheridge)
2.1104 2013-10-29 (TRIAL RELEASE)
[BUG FIXES]
- Class::MOP::Object::_inline_throw_error is back, used by some MooseX
modules (Upasana)
2.1103 2013-10-25 (TRIAL RELEASE)
[BUG FIXES]
- fix errors in last trial release relating to Moose::Error::Default,
Moose::Util::throw_error (Upasana)
2.1102 2013-10-20 (TRIAL RELEASE)
[BUG FIXES]
- die if a role to consume can't be found -- this restores behaviour as in
2.1005 (doy)
- fix test to accomodate Devel::PartialDump possibly not being installed
(Upasana)
2.1101 2013-10-20 (TRIAL RELEASE)
[ENHANCEMENTS]
- Moose string exceptions have been replaced by Moose::Exception objects. See
Moose::Manual::Delta for details.
2.1100 2013-09-07 (TRIAL RELEASE)
[DEPRECATIONS]
- Class::MOP::load_class, Class::MOP::is_class_loaded, and
Class::MOP::load_first_existing_class are now deprecated. See
Moose::Manual::Delta for details.
- The non-arrayref forms of enum and duck_type have been deprecated. See
Moose::Manual::Delta for details.
- Many deprecated features have now been removed:
- optimize_as for type constraints
- the "default is" and "default default" features for native delegations
- setting coerce => 1 on an attribute whose type constraint has no coercion
- the public version of Moose::Meta::Method::Destructor::initialize_body
[ENHANCEMENTS]
- Creating classes with Moose now always sets the appropriate entry in %INC,
even if it wasn't loaded from a file. This should make writing classes
inline easier, and will allow us to be more intelligent about figuring out
when classes are loaded in the future. See Moose::Manual::Delta for more
details. Note that this is slightly backwards-incompatible in some edge
cases.
- Moose now uses Module::Runtime instead of Class::Load to load classes. This
means that there are no more issues with the weird heuristics that
Class::Load does to determine if a class was previously loaded (inheriting
from an empty package is now possible, for instance). See
Moose::Manual::Delta for more details. This is also slightly
backwards-incompatible in some edge cases.
2.1005 2013-08-06
[ENHANCEMENTS]
- add_method now accepts blessed subs (Graham Knop, PR#28)
[BUG FIXES]
- If a role consumed another role, we resolve method conflicts just like a
class consuming a role, but when metaclass compat tried to fix up
metaclass roles, we were putting all methods into one composite role and
allowing methods in the metaclass roles to conflict. Now we resolve them
as we should. (Jesse Luehrs, PR#27)
- Some edge cases in tests with base.pm and non-existent module files are
handled more strictly (see also perl RT#118561) (Graham Knop, PR#25)
2.1004 2013-07-26
[BUG FIXES]
- 2.1003 was released with some bad metadata, which caused the prereq test
to fail.
2.1003 2013-07-26
[OTHER]
- Releasing 2.0901 as stable.
2.0901 2013-06-21 (TRIAL RELEASE)
[ENHANCEMENTS]
- The with_immutable() sub from Test::Moose now passes a boolean value to
the code block containing tests indicating whether or not the classes have
been made immutable. This can make for nicer test descriptions. (Dave
Rolsky)
- You can now use Specio types instead of Moose builtins or
MooseX::Types. However, this support is still experimental (as is Specio),
so use it with care. (Dave Rolsky)
2.0900 2013-05-26 (TRIAL RELEASE)
[API CHANGES]
- Fixed the Num builtin type to reject NaN, Inf, numbers with whitespace,
and other questionable strings. The MooseX::Types::LaxNum distro
implements the old behavior. RT#70539 (Upasana)
2.0802 2013-05-07
[ENHANCEMENTS]
- fix incompatibilities with Test::Builder 1.005+ (Karen Etheridge)
- Moose::Manual::Contributing updated to reflect the change of primary
repository from git.moose.perl.org to github.com
2.0801 2013-03-28
[BUG FIXES]
- properly apply traits at compile time (error introduced in 2.0800,
RT#77974). (doy)
2.0800 2013-03-27
[ENHANCEMENTS]
- The super() subroutine now carps if you pass it arguments. These arguments
are always ignored, but we used to ignore them silently. RT #77383.
- Roles can now override methods from other roles they consume directly,
without needing to manually exclude them (just like classes can). (mst)
[BUG FIXES]
- Fix false positive when checking for circular references for modules that
use the "also" parameter with Moose::Exporter. Reported by Jon
Swartz. Fixed by Matthew Wickline. RT #63818.
- Fix memory leak in type unions. (Karen Etheridge) RT#83929.
- Fix application of traits at compile time. (doy) RT#77974.
2.0604 2012-09-19
[BUG FIXES]
- Fix nonsensical error message for inlined accessors of required attributes.
(doy)
- Stop trying to localize a lexical (blead now throws an error for this). RT
#79257, perl #114628. (sprout)
[OTHER]
- Depend on a version of Carp new enough to have caller_info. RT #79367.
(pshangov)
2.0603 2012-06-28
[BUG FIXES]
- Fix test failure in blead. RT #78085.
2.0602 2012-05-07
[BUG FIXES]
- Ensure that the Moose::Exporter-generated init_meta returns the same value
that it did previously. This isn't really a bug, since the return value has
never been tested or documented, but since the generated init_meta is
nothing more than a compatibility shim at this point, there's no reason to
not make it as compatible as possible. Reported by Moritz Onken. (doy)
[DOCUMENTATION]
- The lazy_build attribute feature was removed from
Moose::Manual::BestPractices.
2.0601 2012-05-01
[BUG FIXES]
- Fix init_meta order when multiple also packages are specified (this matters
when one of them is being used to actually initalize the metaclass,
typically with also => 'Moose'). Reported by Randy Stauner. (doy)
2.0600 2012-04-29
[OTHER]
- Releasing 2.0502 as stable.
2.0502 2012-04-25 (TRIAL RELEASE)
[OTHER]
- The Test::DependentModules test now covers a much wider range of downstream
dependents (all of them in fact, for some definition of "all"). This should
allow us to track inadvertent backwards compatibility breakages much more
effectively. (doy)
- A few test tweaks to avoid spurious failures. (doy)
2.0501 2012-04-03 (TRIAL RELEASE)
[BUG FIXES]
- Avoid syntax errors on pre-5.14. (doy)
2.0500 2012-04-03 (TRIAL RELEASE)
[NEW FEATURES]
- Class::MOP::Class now has methods for introspecting and modifying the
overloaded operators for a class. (doy)
[ENHANCEMENTS]
- The cookbook recipes have all been renamed. Instead of numbered recipes
(Basics::Recipe1), we now have descriptive names
(Basics::Point_AttributesAndSubclassing). This makes it easier for us to
add and remove recipes in the future, and makes it a little easier to
converse about them, since the name gives us some clue of what they
contain.
[BUG FIXES]
- Re-declaring a class_type or role_type constraint that has already been
declared now just returns the original type constraint, rather than
replacing the original constraint and ergo losing any coercions that were
on the original constraint. Fixes RT #73289. (t0m)
- Moose::Exporter now calls init_meta methods in the correct order, when
multiple levels of 'also' parameters are specified. Reported by Rocco
Caputo. (doy, perigrin)
- Moose::Exporter no longer generates init_meta methods in order to apply
metaroles, since the metaclass itself isn't guaranteed to exist yet at that
point. Metaroles are now applied at the end of import, after all
user-defined init_meta methods have been called. Fixes RT #51561. (doy)
- Fixed a memory leak. This occurred when creating an anonymous
class. Immutabilizing an anonymous class still leaks memory due to a bug in
Eval::Closure (which should hopefully be fixed soon). Based on code and bug
report from Carlos Lima. RT #74650.
- Fix a segfault when adding a method to a class which was defined in a
package which was deleted. (doy)
2.0403 2012-04-03
[OTHER]
- No changes, reupload to fix indexing.
2.0402 2012-02-04
[OTHER]
- Minor documentation fixes.
- Fix test failure on blead (test was unnecessarily strict). Reported by
Nicholas Clark. (doy)
2.0401 2011-11-17
[BUG FIXES]
- Attributes with weak_ref now weaken their associated slot when they are
initialized through a lazy default or builder. Reported by tome. (doy)
2.0400 2011-11-15
[OTHER]
- No changes from 2.0302 (other than a few minor documentation tweaks).
2.0302 2011-11-02 (TRIAL RELEASE)
[BUG FIXES]
- Fix test failure on 5.8. (Dave Rolsky)
- Make make_immutable return value consistent and document it to be true.
(mst)
2.0301 2011-10-21 (TRIAL RELEASE)
[BUG FIXES]
- Fix compilation on 5.8. Reported by ether. (doy)
- A custom error class caused a warning when the class that used it was made
immutable. Reported by Maroš Kollár. RT #71514. (Dave Rolsky)
[ENHANCEMENTS]
- The enum type will now allow single value enumerations. Previously, two or
more values were required. (rjbs)
2.0300 2011-09-23 (TRIAL RELEASE)
[DEPRECATIONS]
- The optimize_as option for type constraints has been deprecated. Use the
inline_as option to provide inlining code instead. (Dave Rolsky)
[API CHANGES]
- Methods to introspect a class's methods will now return methods defined in
UNIVERSAL (isa, can, etc.). This also means that you can wrap these
methods with method modifiers. RT #69839. Reported by Vyacheslav
Matyukhin. (Dave Rolsky)
- The ->parent and ->parents method for a union now return the nearest
common ancestor of that union's component types. See Moose::Manual::Delta
for more details. (Dave Rolsky)
- The ->parents method used to return an arrayref for union types, and a
list of one or more types for all other types. Now they all return
lists. (Dave Rolsky)
- The ->is_subtype_of and ->is_a_type_of methods have changed their behavior
for union types. Previously, they returned true if any of their member
types returned true for a given type. Now, all of the member types must
return true. RT #67731. (Dave Rolsky)
[ENHANCEMENTS]
- The Moose::Exporter module now has a "meta_lookup" option when creating an
importer. This allows you to specify an alternate method for determining
the metaclass of a caller. This is useful for modules like
MooseX::Role::Parameterized which generate new metaclasses on the
fly. (sartak)
- Added a Moose::Meta::Method->is_stub method. (Dave Rolsky)
[BUG FIXES]
- A subtype of a union type did not return the right results when you called
->is_subtype_of or ->is_a_type_of on it. This has been fixed. RT
#70322. (Dave Rolsky)
- An attribute accessor or delegation method can overwrite a stub method and
this will no longer throw an error. Reported by Mark-Jason Dominus. RT
#69988. (Dave Rolsky)
- The error generated by unfulfilled method requirements during role
composition now mentions how to work around imported methods not being
recognized. Reported by Michael Schwern. RT #60583. (doy)
- class_type and role_type will now throw errors if you attempt to use them
to override existing types, just like type and subtype have always done.
(doy)
- Implicitly creating class or role types by using them as the 'isa' or
'does' parameter to attribute construction will now register the type. This
means that it cannot later be redefined as something else. (doy)
- $class_type->is_subtype_of no longer returns true if passed the name of the
class that the class type represents when the class type wasn't registered.
(doy)
- Removing anonymous metaclasses prematurely no longer prevents reaping of
the associated stash. (doy)
[OTHER]
- The Class::MOP::load_class and Class::MOP::is_class_loaded subroutines are
no longer documented, and will cause a deprecation warning in the
future. Moose now uses Class::Load to provide this functionality, and you
should as well. (Dave Rolsky)
2.0205 2011-09-06
[NEW FEATURES]
- The Array and Hash native traits now provide a "shallow_clone" method,
which will return a reference to a new container with the same contents as
the attribute's reference.
[ENHANCEMENTS]
- Specifying an invalid value in a hashref 'handles' value now throws a
sensible error. Reported by Mark-Jason Dominus. RT #69990. (Dave
Rolsky)
[BUG FIXES]
- When specifying an attribute trait, passing options for the trait besides
-alias or -excludes caused a warning. However, passing other options is
totally valid when using MooseX::Role::Parameterized. Fixes RT
#70419. (sartak)
- Allow regexp objects in duck_type constraints (to bring this in line with
the Object constraint).
2.0204 2011-08-25
[BUG FIXES]
- Validating duck_type type constraint turned out to work only by accident,
and only when not running under the debugger. This has been fixed.
(Florian Ragwitz)
[OTHER]
- Loosen the dependency on ExtUtils::ParseXS.
2.0203 2011-08-23
[BUG FIXES]
- is_class_loaded now properly detects packages which have a version object
in their $VERSION.
- Fix XS compilation under blead.
2.0202 2011-07-26
[BUG FIXES]
- Be more consistent about how type constraint messages are handled.
2.0201 2011-07-22
[BUG FIXES]
- Moose::Util::does_role shouldn't call ->does on things that don't inherit
from Moose::Object.
- Make ->does initialize the metaclass, so that calling it as a class method
on a class which sets up inheritance via some method other than extends
works properly (this fixes an issue with MooseX::Types).
- Make Dist::CheckConflicts a runtime requirement, so moose-outdated always
works.
2.0200 2011-07-18
[OTHER]
- No changes from 2.0105 (other than a few minor documentation tweaks).
2.0105 2011-06-27 (TRIAL RELEASE)
[ENHANCEMENTS]
- Moose::Util::does_role now respects overridden ->does methods. (doy)
2.0104 2011-06-20 (TRIAL RELEASE)
[OTHER]
- Include changes from 2.0010.
2.0103 2011-06-20 (TRIAL RELEASE)
[DEPRECATIONS]
- Several things that have been deprecated for a while have been removed. See
the 2.0000 section in Moose::Manual::Delta for details.
[NEW FEATURES]
- New Moose::Util::TypeConstraints::union function for creating union type
constraints without having to rely on the string type constraint parsing.
This also allows for creating unions of anonymous type constraints.
(kentnl)
[OTHER]
- Include changes from Moose 2.0009.
2.0102 2011-06-18 (TRIAL RELEASE)
[ENHANCEMENTS]
- The native Array trait now has a 'first_index' method, which works just
like the version in List::MoreUtils. (Karen Etheridge)
- Clean up some internal code to help out extensions.
[OTHER]
- Include changes from Moose 2.0008.
2.0101 2011-06-06 (TRIAL RELEASE)
[OTHER]
- Various packaging issues.
2.0100 2011-06-06 (TRIAL RELEASE)
[DEPRECATIONS]
- Using a hand-optimized type constraint is now deprecated. In keeping with
our release policy, this won't actually start warning until the 2.0200
release.
[NEW FEATURES]
- Type constraints can now provide inlined versions, which should make
inlined code which uses type constraints (such as accessors) faster. This
replaces the existing hand-optimized constraint feature. (Dave Rolsky)
[ENHANCEMENTS]
- Remove a lot of cases where generated methods closed over meta objects.
Most simple cases should now only close over simple data types and
coderefs. This should make deparsing simpler.
2.0010 2011-06-20
[BUG FIXES]
- Fix regression in 2.0009 and 2.0103 when applying roles during init_meta in
an exporter that also re-exports Moose or Moose::Role. (t0m, ilmari)
2.0009 2011-06-19
[BUG FIXES]
- duck_type type constraints now report reasonable errors when given
something which isn't an instance of an object. (t0m)
- Moose::Util::apply_all_roles now works even if the applicant is a non-Moose
class. (perigrin)
- When an object is reblessed, triggers are called on attributes that are
set during the reblessing. (Karen Etheridge).
[OTHER]
- Better error message if Moose->init_meta is called with a 'metaclass'
option when that metaclass hasn't been loaded. (jasonmay)
2.0008 2011-06-16
[BUG FIXES]
- The 'accessor' native delegation for hashrefs now allows setting the value
to undef. (sugoik, doy)
[ENHANCEMENTS]
- Various generated methods have more useful context information. (doy)
2.0007 2011-05-15
[BUG FIXES]
- Make sure weak attributes remain weak when cloning. (doy, rafl)
2.0006 2011-05-09
[BUG FIXES]
- Revert the List::MoreUtils version bump, as it breaks backwards
compatibility. The dependency will be bumped with Moose 2.0200.
2.0005 2011-05-09
[BUG FIXES]
- Only sort the alias keys when determining caching.
2.0004 2011-05-09
[BUG FIXES]
- Bump the List::MoreUtils dep to avoid buggy behavior in old versions.
- Sort the list of roles and the alias and excludes parameters when
determining caching, since their order doesn't matter.
2.0003 2011-05-09
[BUG FIXES]
- Applying multiple role objects (rather than role names) at once no longer
skips every other role. (rjbs)
- Caching of anon classes now works more sanely in the presence of role
application parameters - alias and excludes options are taken into account,
and caching is disabled entirely if other parameters exist. Asking for
caching (instead of just not weakening) when parameters are given will
begin warning in Moose 2.0200. (doy, autarch)
2.0002 2011-04-28
[ENHANCEMENTS]
- Provide definition context information for constructors and destructors, so
that they will show up as something other than "generated method (unknown
origin)". Also, add the package that accessors are defined in to their
definition context.
- Use Devel::PartialDump in type constraint error messages, if it is
installed.
[BUG FIXES]
- Stop hiding warnings produced by throwing errors in DEMOLISH methods.
- The 'reset' native delegation for Counter attributes will now also respect
builders (previously, it only respected defaults).
2.0001 2011-04-22
[ENHANCEMENTS]
- Anonymous classes and roles now have a unified implementation in
Class::MOP::Package. This means that anonymous packages are now also
possible. (Shawn M Moore, doy)
[BUG FIXES]
- No longer call XSLoader from multiple places, as this causes issues on
older perls. (doy, ribasushi)
- Moose::Meta::Role->create now accepts the 'roles' parameter, as it was
documented to. (Chris Weyl)
- Depend on Eval::Closure 0.04, which fixes some issues in mod_perl
environments. (doy, mateu)
2.0000 2011-04-11
[API CHANGES]
- The RegexpRef type constraint now accepts regular expressions blessed into
other classes, such as those found in pluggable regexp engines.
Additionally the 'Object' constraint no longer rejects objects implemented
as a blessed regular expression. (David Leadbeater)
[DOCUMENTATION]
- The lazy_build attribute feature was mostly removed from the docs and is
no longer encouraged.
[OTHER]
- Moose::Manual::Support now explicitly states when major releases are
allowed to happen (January, April, July, or October).
1.9906 2011-04-04 (TRIAL RELEASE)
[OTHER]
- Update conflicts list.
- Minor pod updates.
1.9905 2011-03-28 (TRIAL RELEASE)
[NEW FEATURES]
- The Moose::Meta::Role::Attribute class now has an original_role method
which returns the role which first defined an attribute. See the docs for
details. (Dave Rolsky)
- Moose::Util::MetaRole will make sure that the class to which you're
applying metaroles or base class roles can actually have them applied. If
not (it's not a Moose class, it has a non-Moose metaclass, etc.), then it
gives a useful error message. Previously, this would just end up dying in
the MetaRole code without a useful message. (Dave Rolsky)
[BUG FIXES]
- When a role had its own applied_attribute metaclass (usually from MetaRole
application), that metaclass would get lost when that role participated in
role composition. It was also lost if that role was consumed by some other
role. Both of these cases have been fixed. Attributes are always applied
with the applied_attribute metaclass of the role which originally defined
them. (Dave Rolsky)
1.9904 2011-03-04 (TRIAL RELEASE)
[BUG FIXES]
- Reinitializing anonymous roles used to accidentally clear out the role's
stash in some circumstances. This is now fixed. (doy)
- The Int type constraint now rejects integers with trailing newlines.
(Matthew Horsfall)
1.9903 2011-02-28 (TRIAL RELEASE)
[BUG FIXES]
- Reverse the order that Moose::Exporter 'also' exports are dispatched. When
trying to re-export from a package that itself exported a modified set of
Moose sugar, you'd get the original Moose sugar instead of the overrides.
There are also now tests for this. (perigrin)
- Don't initialize lazy attributes with defaults in the constructor (for
immutable classes). (mo)
- When reinitializing meta objects for classes and roles, we failed to
preserve roles and role applications. This led to weird bugs. Many MooseX
modules end up reinitializing your class or role. (Dave Rolsky)
1.9902 2011-01-03 (TRIAL RELEASE)
[OTHER]
- Fix generation of CCFLAGS.
- Add a bit more Dist::Zilla functionality.
1.9901 2011-01-03 (TRIAL RELEASE)
[OTHER]
- Fix some indexing issues.
- Fix a few issues with the conflict checking stuff.
1.9900 2011-01-01 (TRIAL RELEASE)
[OTHER]
- The entire Class::MOP distribution has been merged with Moose. In the
future, the Class::MOP code itself will be merged into Moose, and
eventually the Class::MOP namespace will disappear entirely. For the
current release, we have simply changed how Class::MOP is
distributed. (Dave Rolsky).
- Switched to Dist::Zilla for development. However, we still have a minimal
Makefile.PL in the repository that can be used for development. (Dave
Rolsky)
[API CHANGES]
- Roles now have their own default attribute metaclass to use during
application to a class, rather than just using the class's
attribute_metaclass. This is also overridable via ::MetaRole, with the
applied_attribute key in the role_metaroles hashref (doy).
- The internal code used to generate inlined methods (accessor, constructor,
etc.) has been massively rewritten. MooseX modules that do inlining will
almost certainly need to be updated as well.
[ENHANCEMENTS]
- We now load the roles needed for native delegations only as needed. This
speeds up the compilation time for Moose itself. (doy)
1.25 2011-04-01
[BUG FIXES]
- Reinitializing anonymous roles used to accidentally clear out the role's
stash in some circumstances. This is now fixed. (doy) (backported from
1.9904)
1.24 2011-02-22
[BUG FIXES]
- Reverse the order that Moose::Exporter 'also' exports are dispatched. When
trying to re-export from a package that itself exported a modified set of
Moose sugar, you'd get the original Moose sugar instead of the overrides.
There are also now tests for this. (perigrin) (backported from 1.9903)
1.23 2011-02-13
[PACKAGING FIX]
- The 1.22 release had a bad MANIFEST. This has been fixed.
1.22 2011-02-13
[BUG FIXES]
- When reinitializing meta objects for classes and roles, we failed to
preserve roles and role applications. This led to weird bugs. Many MooseX
modules end up reinitializing your class or role. (Dave Rolsky) (backported
from 1.9903)
1.21 2010-11-24
[ENHANCEMENTS]
- The Support manual has been updated to reflect our new major/minor version
policy. (Chris Prather)
- The Contributing manual has been updated to reflect workflow changes based
on this new support policy. (doy)
[BUG FIXES]
- The role attribute metaclass did not inherit from Class::MOP::Object,
which could cause errors when trying to resolve metaclass compatibility
issues. Reported by Daniel Ruoso. (doy)
- The lazy_build feature was accidentally removed from all the docs. Now
it's listed in Moose.pm again. (Chris Prather)
1.20 2010-11-19
[BUG FIXES]
- When using native delegations, if an array or hash ref member failed a
type constraint check, Moose ended up erroring out with "Can't call method
"get_message" on unblessed reference" instead of generating a useful error
based on the failed type constraint. Reported by t0m. RT #63113. (Dave
Rolsky)
1.19 2010-11-02
[BUG FIXES]
- There was still one place in the code trying to load Test::Exception
instead of Test::Fatal. (Karen Etheridge)
1.18 2010-10-31
[ENHANCEMENTS]
- Type constraint objects now have an assert_coerce method which will either
return a valid value or throw an error. (rjbs)
- We now warn when an accessor for one attribute overwrites an accessor for
another attribute. RT #57510. (Dave Rolsky)
[BUG FIXES]
- The native Array and Hash delegation methods now coerce individual new
members if the _member type_ has a coercion. In other words, if the array
reference is defined as an ArrayRef[DateTime], and you've defined a
coercion from Int to DateTime, then pushing an integer via a delegation
method will coerce the integer to a DateTime object. Reported by Karen
Etheridge. RT #62351. (Dave Rolsky)
- An attribute using native delegations did not always properly coerce and
type check a lazily set default value. (doy and Dave Rolsky)
- Using a regexp to define delegations for a class which was not yet loaded
did not actually work, but did not explicitly fail. However, it caused an
error when the class was loaded later. Reported by Max Kanat-Alexander. RT
#60596. (Dave Rolsky)
- Attempting to delegate to a class or role which is not yet loaded will now
throw an explicit error. (Dave Rolsky)
- Attempting to set lazy_build in an inherited attribute was ignored. RT
#62057. (perigrin)
[OTHER]
- The Moose test suite now uses Test::Fatal instead of
Test::Exception. (rjbs)
1.17 2010-10-19
[BUG FIXES]
- Make native delegation inlining work with instance metaclasses where slot
access is an do {} block, like Kioku. This fixes the use of native
delegations together with Kioku. (Scott, doy)
1.16 2010-10-18
[ENHANCEMENTS]
- Almost every native delegation method which changes the attribute value
now has an explicitly documented return value. In general, this return
value matches what Perl would return for the same operation. (Dave Rolsky)
- Lots of work on native delegation documentation, including documenting
what arguments each native delegation method allows or requires. (Dave
Rolsky)
- Passing an odd number of args to ->new() now gives a more useful warning
than Perl's builtin warning. Suggested by Sir Robert Burbridge. (Dave
Rolsky)
- Allow disabling stack traces by setting an environment variable. See
Moose::Error::Default for details. This feature is considered
experimental, and may change in a future release. (Marcus Ramberg)
- The deprecation warning for using alias and excludes without a leading
dash now tells you the role being applied and what it was being applied
to. (mst).
[BUG FIXES]
- A number of native trait methods which expected strings as arguments did
not allow the empty string. This included Array->join, String->match,
String->replace, and String->substr. Reported by Whitney Jackson. RT
#61962. (Dave Rolsky)
- 'no Moose' no longer inadvertently removes imports it didn't create
itself. RT #60013. (Florian Ragwitz, doy)
- Roles now support passing an array reference of method names to method
modifier sugar functions. (doy)
- Native traits no longer use optimized inlining routines if the instance
requests it (in particular, if inline_get_slot_value doesn't return
something that can be assigned to). This should fix issues with
KiokuDB::Class. (doy)
- We now ignore all Class::MOP and Moose classes when determining what
package called a deprecated feature. This should make the deprecation
warnings saner, and make it possible to turn them off more easily. (Dave
Rolsky)
- The deprecated "default is" warning no longer happens if the attribute has
any accessor method defined (accessor, reader, writer). Also, this warning
only happens when a method that was generated because of the "default is"
gets called, rather than when the attribute is defined. (Dave Rolsky)
- The "default default" code for some native delegations no longer issues a
deprecation warning when the attribute is required or has a builder. (Dave
Rolsky)
- Setting a "default default" caused a fatal error if you used the builder
or lazy_build options for the attribute. Reported by Kent Fredric. RT
#59613. (Dave Rolsky)
1.15 2010-10-05
[API CHANGES]
- Major changes to Native Traits, most of which make them act more like
"normal" attributes. This should be mostly compatible with existing code,
but see Moose::Manual::Delta for details.
- A few native traits (String, Counter, Bool) provide default values of "is"
and "default" when you created an attribute. Allowing them to provide
these values is now deprecated. Supply the value yourself when creating
the attribute.
- New option 'trait_aliases' for Moose::Exporter, which will allow you to
generate non-global aliases for your traits (and allow your users to
rename the aliases, etc). (doy)
- 'use Moose' and 'use Moose::Role' now accept a '-meta_name' option, to
determine which name to install the 'meta' name under. Passing 'undef'
to this option will suppress generation of the meta method entirely. (doy)
- Moose now warns if it overwrites an existing method named "meta" in your
class when you "use Moose". (doy)
[ENHANCEMENTS]
- Native Trait delegations are now all generated as inline code. This should
be much faster than the previous method of delegation. In the best case,
native trait methods will be very highly optimized.
- Reinitializing a metaclass no longer removes the existing method and
attribute objects (it instead fixes them so they are correct for the
reinitialized metaclass). This should make the order of loading many
MooseX modules less of an issue. (doy)
- The Moose::Manual docs have been revised and updated. (Dave Rolsky)
[BUG FIXES]
- If an attribute was weak, setting it to a non-ref value after the object
was constructed caused an error. Now we only call weaken when the new
value is a reference.
- t/040_type_constraints/036_match_type_operator.t failed on 5.13.5+. Fixed
based on a patch from Andreas Koenig.
1.14 2010-09-21
[BUG FIXES]
- Work around what looks like a bug in List::MoreUtils::any. This bug caused
a weird error when defining the same union type twice, but only when using
MooseX::Types. Reported by Curtis Jewell. RT #61001. (Dave Rolsky)
1.13 2010-09-13
[API CHANGES]
- The deprecation warnings for alias and excludes are back, use -alias and
-excludes instead. (Dave Rolsky)
[ENHANCEMENTS]
- When composing one role into another and there is an attribute conflict,
the error message now includes the attribute name. Reported by Sam
Graham. RT #59985. (Dave Rolsky)
- When a class is made immutable, the does_role method is overridden with a
much faster version that simply looks role names up in a hash. Code which
uses lots of role-based type constraints should be faster. (Dave Rolsky)
1.12 2010-08-28
[BUG FIXES]
- Fix the MANIFEST. Fixes RT #60831, reported by Alberto Simões.
1.11 2010-08-27
[API CHANGES]
- An attribute in a subclass can now override the value of "is". (doy)
- The deprecation warnings for alias and excludes have been turned back off
for this release, to give other module authors a chance to tweak their
code. (Dave Rolsky)
[BUG FIXES]
- mro::get_linear_isa was being called as a function rather than a method,
which caused problems with Perl 5.8.x. (t0m)
- Union types always created a type constraint, even if their constituent
constraints did not have any coercions. This bogus coercion always
returned undef, which meant that a union which included Undef as a member
always coerced bad values to undef. Reported by Eric Brine. RT
#58411. (Dave Rolsky)
- Union types with coercions would always fall back to coercing the value to
undef (unintentionally). Now if all the coercions for a union type fail,
the value returned by the coercion is the original value that we attempted
to coerce. (Dave Rolsky).
1.10 2010-08-22
[API CHANGES]
- The long-deprecated alias and excludes options for role applications now
issue a deprecation warning. Use -alias and -excludes instead. (Dave
Rolsky)
[BUG FIXES]
- Inlined code no longer stringifies numeric attribute defaults. (vg, doy)
- default => undef now works properly. (doy)
- Enum type constraints now throw errors if their values are nonsensical.
(Sartak)
[ENHANCEMENTS]
- Optimizations that should help speed up compilation time (Dave Rolsky).
1.09 2010-07-25
[API CHANGES]
- You can no longer pass "coerce => 1" for an attribute unless its type
constraint has a coercion defined. Doing so will issue a deprecation
warning. (Dave Rolsky)
- Previously, '+foo' only allowed a specific set of options to be
overridden, which made it impossible to change attribute options related
to extensions. Now we blacklist some options, and anything else is
allowed. (doy, Tuomas Jormola)
- Most features which have been declared deprecated now issue a warning using
Moose::Deprecated. Warnings are issued once per calling package, not
repeatedly. See Moose::Deprecated for information on how you can shut
these warnings up entirely. Note that deprecated features will eventually
be removed, so shutting up the warnings may not be the best idea. (Dave
Rolsky)
- Removed the long-deprecated Moose::Meta::Role->alias_method method. (Dave
Rolsky).
[NEW FEATURES]
- We no longer unimport strict and warnings when Moose, Moose::Role, or
Moose::Exporter are unimported. Doing this was broken if the user
explicitly loaded strict and warnings themself, and the results could be
generally surprising. We decided that it was best to err on the side of
safety and leave these on. Reported by David Wheeler. RT #58310. (Dave
Rolsky)
- New with_traits helper function in Moose::Util. (doy)
[BUG FIXES]
- Accessors will no longer be inlined if the instance metaclass isn't
inlinable. (doy)
- Use Perl 5.10's new recursive regex features, if possible, for the type
constraint parser. (doy, nothingmuch)
[ENHANCEMENTS]
- Attributes now warn if their accessors overwrite a locally defined
function (not just method). (doy)
[OTHER]
- Bump our required perl version to 5.8.3, since earlier versions fail tests
and aren't easily installable/testable.
1.08 2010-06-15
[ENHANCEMENTS]
- Refactored a small amount of Moose::Meta::Method::Constructor to allow it
to be overridden more easily (doy).
1.07 2010-06-05
[BUG FIXES]
- Fixed a minor metaclass compatibility fixing bug dealing with immutable
classes and non-class metaclass traits (doy, dougdude).
1.06 2010-06-01
[NEW FEATURES]
- Added '0+' overloading in Moose::Meta::TypeConstraint so that we can
more uniformly compare type constraints between 'classic' Moose type
constraints and MooseX::Types based type constraints.
1.05 2010-05-20
[API CHANGES]
- Packages and modules no longer have methods - this functionality was
moved back up into Moose::Meta::Class and Moose::Meta::Role individually
(through the Class::MOP::Mixin::HasMethods mixin) (doy).
- BUILDALL is now called by Moose::Meta::Class::new_object, rather than by
Moose::Object::new. (doy)
[NEW FEATURES]
- strict and warnings are now unimported when Moose, Moose::Role, or
Moose::Exporter are unimported. (doy, Adam Kennedy)
- Added a 'consumers' method to Moose::Meta::Role for finding all
classes/roles which consume the given role. (doy)
[BUG FIXES]
- Fix has '+attr' in Roles to explode immediately, rather than when the role
is applied to a class (t0m).
- Fix type constraint validation messages to not include the string 'failed'
twice in the same sentence (Florian Ragwitz).
- New type constraints will default to being unequal, rather than equal
(rjbs).
- The tests no longer check for perl's behavior of clobbering $@, which has
been fixed in perl-5.13.1 (Florian Ragwitz).
- Metaclass compatibility fixing has been completely rewritten, and should
be much more robust. (doy)
1.04 2010-05-20
- This release was broken and has been deleted from CPAN shortly after its
upload.
1.03 2010-05-06
[NEW FEATURES]
- Allow specifying required versions when setting superclasses or applying
roles (Florian Ragwitz).
1.02 2010-05-01
[BUG FIXES]
- Stop the natatime method provided by the native Array trait from returning
an exhausted iterator when being called with a callback. (Florian Ragwitz)
- Make Moose::Meta::TypeConstraint::Class correctly reject RegexpRefs.
(Florian Ragwitz)
- Calling is_subtype_of on a Moose::Meta::TypeConstraint::Class with itself or
the class the TC represents as an argument incorrectly returned true. This
behavior is correct for is_type_of, not is_subtype_of. (Guillermo Roditi)
- Use File::Temp for temp files created during tests. Previously, files were
written to the t/ dir, which could cause problems of the user running the
tests did not have write access to that directory.. (Chris Weyl, Ævar
Arnfjörð Bjarmason)
- Pass role arguments along when applying roles to instances. (doy, lsm)
1.01 2010-03-26
[NEW FEATURES]
- The handles option now also accepts a role type constraint in addition to a
plain role name. (Florian Ragwitz)
[OTHER]
- Record the Sartak/doy debt properly in Changes (perigrin)
1.00 2010-03-25
[BUG FIXES]
- Moose::Meta::Attribute::Native::Trait::Code no longer creates reader
methods by default. (Florian Ragwitz)
[DOCUMENTATION]
- Improve various parts of the documentation and fix many typos.
(Dave Rolsky, Mateu Hunter, Graham Knop, Robin V, Jay Hannah, Jesse Luehrs)
[OTHER]
- Paid the $10 debt to doy from 0.80 2009-06-06 (Sartak)
0.99 2010-03-08
[NEW FEATURES]
- New method find_type_for in Moose::Meta::TypeConstraint::Union, for finding
which member of the union a given value validates for. (Cory Watson)
[BUG FIXES]
- DEMOLISH methods in mutable subclasses of immutable classes are now called
properly (Chia-liang Kao, Jesse Luehrs)
[NEW DOCUMENTATION]
- Added Moose::Manual::Support that defines the support, compatiblity, and
release policies for Moose. (Chris Prather)
0.98 2010-02-10
[BUG FIXES]
- An internals change in 0.97 broke role application to an instance in some
cases. The bug occurred when two different roles were applied to different
instances of the same class. (Rafael Kitover)
0.97 2010-02-09
[BUG FIXES]
- Calling ->reinitialize on a cached anonymous class effectively uncached
the metaclass object, causing the metaclass to go out of scope
unexpectedly. This could easily happen at a distance by applying a
metarole to an anonymous class. (Dave Rolsky).
0.96 2010-02-06
[NEW FEATURES]
- ScalarRef is now a parameterized type. You can now specify a type
constraint for whatever the reference points to. (Closes RT#50857)
(Michael G. Schwern, Florian Ragwitz)
[BUG FIXES]
- ScalarRef now accepts references to other references. (Closes RT#50934)
(Michael G. Schwern)
0.95 2010-02-04
[NEW FEATURES]
- Moose::Meta::Attribute::Native::Trait::Code now provides execute_method as
a delegation option. This allows the code reference to be called as a
method on the object. (Florian Ragwitz)
[ENHANCEMENTS]
- Moose::Object::does no longer checks the entire inheritance tree, since
Moose::Meta::Class::does_role already does this. (doy)
- Moose::Util::add_method_modifier (and subsequently the sugar functions
Moose::before, Moose::after, and Moose::around) can now accept arrayrefs,
with the same behavior as lists. Types other than arrayref and regexp
result in an error. (Dylan Hardison)
0.94 2010-01-18
[API CHANGES]
- Please see the changes listed for 0.93_01 and Moose::Manual::Delta.
[ENHANCEMENTS]
- Improved support for anonymous roles by changing various APIs to take
Moose::Meta::Role objects as well as role names. This included
- Moose::Meta::Class->does_role
- Moose::Meta::Role->does_role
- Moose::Util::does_role
- Moose::Util::apply_all_roles
- Moose::Util::ensure_all_roles
- Moose::Util::search_class_by_role
Requested by Shawn Moore. Addresses RT #51143 (and then some). (Dave Rolsky)
[BUG FIXES]
- Fix handling of non-alphanumeric attributes names like '@foo'. This should
work as long as the accessor method names are explicitly set to valid Perl
method names. Reported by Doug Treder. RT #53731. (Dave Rolsky)
0.93_03 2010-01-05
[BUG FIXES]
- Portability fixes to our XS code so we compile with 5.8.8 and Visual
C++. Fixes RT #53391. Reported by Taro Nishino. (rafl)
0.93_02 2010-01-05
[BUG FIXES]
- Depend on Class::MOP 0.97_01 so we can get useful results from CPAN
testers. (Dave Rolsky)
0.93_01 2010-01-04
[API CHANGES]
See Moose::Manual::Delta for more details on backwards compatiblity issues.
- Role attributes are now objects of the Moose::Meta::Role::Attribute
class. (Dave Rolsky).
- There were major changes to how metaroles are applied. We now distinguish
between metaroles for classes vs those for roles. See the
Moose::Util::MetaRole docs for details. (Dave Rolsky)
- The old MetaRole API has been deprecated, but will continue to
work. However, if you are applying an attribute metaclass role, this may
break because of the fact that roles now have an attribute metaclass
too. (Dave Rolsky)
- Moose::Util::MetaRole::apply_metaclass_roles is now called
apply_metaroles. The old name is deprecated. (Dave Rolsky)
- The unimport subs created by Moose::Exporter now clean up re-exported
functions like blessed and confess, unless the caller imported them from
somewhere else too. See Moose::Manua::Delta for backcompat details. (rafl)
[ENHANCEMENTS AND BUG FIXES]
- Changed the Str constraint to accept magic lvalue strings like one gets from
substr et al, again. (sorear)
- Sped up the type constraint parsing regex. (Sam Vilain)
- The Moose::Cookbook::Extending::Recipe2 recipe was broken. Fix suggested by
jrey.
- Added Moose::Util::TypeConstraints exports when using oose.pm to allow
easier testing of TypeConstraints from the command line. (perigrin)
- Added a with_immutable test function to Test::Moose, to run a block of tests
with and without certain classes being immutable. (doy)
- We now use Module::Install extensions explicitly to avoid confusing errors
if they're not installed. We use Module::Install::AuthorRequires to stop
test extraction and general failures if you don't have the author side
dependencies installed.
- Fixed a grammar error in Moose::Cookbook::Basics::Recipe4. rt.cpan.org
#51791. (Amir E. Aharoni)
0.93 2009-11-19
- Moose::Object
- Calling $object->new() is no longer deprecated, and no longer
warns. (doy)
- Moose::Meta::Role
- The get_attribute_map method is now deprecated. (Dave Rolsky)
- Moose::Meta::Method::Delegation
- Preserve variable aliasing in @_ for delegated methods, so that
altering @_ affects the passed value. (doy)
- Moose::Util::TypeConstraints
- Allow array refs for non-anonymous form of enum and duck_type, not
just anonymous. The non-arrayref forms may be removed in the
future. (doy)
- Changed Str constraint to not accept globs (*STDIN or *FOO). (chansen)
- Properly document Int being a subtype of Str. (doy)
- Moose::Exporter
- Moose::Exporter using modules can now export their functions to the
main package. This applied to Moose and Moose::Role, among
others. (nothingmuch)
- Moose::Meta::Attribute
- Don't remove attribute accessors we never installed, during
remove_accessors. (doy)
- Moose::Meta::Attribute::Native::Trait::Array
- Don't bypass prototype checking when calling List::Util::first, to
avoid a segfault when it is called with a non-code argument. (doy)
- Moose::Meta::Attribute::Native::Trait::Code
- Fix passing arguments to code execute helpers. (doy)
0.92 2009-09-22
- Moose::Util::TypeConstraints
- added the match_on_type operator (Stevan)
- added tests and docs for this (Stevan)
- Moose::Meta::Class
- Metaclass compat fixing should already happen recursively, there's no
need to explicitly walk up the inheritance tree. (doy)
- Moose::Meta::Attribute
- Add tests for set_raw_value and get_raw_value. (nothingmuch)
0.91 2009-09-17
- Moose::Object
- Don't import any functions, in order to avoid polluting our namespace
with things that can look like methods (blessed, try, etc)
(nothingmuch)
- Moose::Meta::Method::Constructor
- The generated code needs to called Scalar::Util::blessed by its
fully-qualified name or else Perl can interpret the call to blessed as
an indirect method call. This broke Search::GIN, which in turn broke
KiokuDB. (nothingmuch)
0.90 2009-09-15
- Moose::Meta::Attribute::Native::Trait::Counter
- Moose::Meta::Attribute::Native::Trait::String
- For these two traits, an attribute which did not explicitly provide
methods to handles magically ended up delegating *all* the helper
methods. This has been removed. You must be explicit in your handles
declaration for all Native Traits. (Dave Rolsky)
- Moose::Object
- DEMOLISHALL behavior has changed. If any DEMOLISH method dies, we make
sure to rethrow its error message. However, we also localize $@ before
this so that if all the DEMOLISH methods success, the value of $@ will
be preserved. (nothingmuch and Dave Rolsky)
- We now also localize $? during object destruction. (nothingmuch and
Dave Rolsky)
- The handling of DEMOLISH methods was broken for immutablized classes,
which were not receiving the value of
Devel::GlobalDestruction::in_global_destruction.
- These two fixes address some of RT #48271, reported by Zefram.
- This is all now documented in Moose::Manual::Construction.
- Calling $object->new() is now deprecated. A warning will be
issued. (perigrin)
- Moose::Meta::Role
- Added more hooks to customize how roles are applied. The role
summation class, used to create composite roles, can now be changed
and/or have meta-roles applied to it. (rafl)
- The get_method_list method no longer explicitly excludes the "meta"
method. This was a hack that has been replaced by better hacks. (Dave
Rolsky)
- Moose::Meta::Method::Delegation
- fixed delegated methods to make sure that any modifiers attached to
the accessor being delegated on will be called (Stevan)
- added tests for this (Stevan)
- Moose::Meta::Class
- Moose no longer warns when a class that is being made immutable has
mutable ancestors. While in theory this is a good thing to warn about,
we found so many exceptions to this that doing this properly became
quite problematic.
0.89_02 2009-09-10
- Moose::Meta::Attribute::Native
- Fix Hash, which still had 'empty' instead of 'is_empty'. (hdp)
- Moose::Meta::Attribute::Native::Trait::Array
- Added a number of functions from List::Util and List::MoreUtils,
including reduce, shuffle, uniq, and natatime. (doy)
- Moose::Exporter
- This module will now generate an init_meta method for your exporting
class if you pass it options for
Moose::Util::MetaRole::apply_metaclass_roles or
apply_base_class_roles. This eliminates a lot of repetitive
boilerplate for typical MooseX modules. (doy).
- Documented the with_meta feature, which is a replacement for
with_caller. This feature was added by josh a while ago.
- The with_caller feature is now deprecated, but will not issue a
warning yet. (Dave Rolsky)
- If you try to wrap/export a subroutine which doesn't actually exist,
Moose::Exporter will warn you about this. (doy)
- Moose::Meta::Role::Application::ToRole
- When a role aliased a method from another role, it was only getting
the new (aliased) name, not the original name. This differed from what
happens when a class aliases a role's methods. If you _only_ want the
aliased name, make sure to also exclue the original name. (Dave
Rolsky)
0.89_01 2009-09-02
- Moose::Meta::Attribute
- Added the currying syntax for delegation from AttributeHelpers to the
existing delegation API. (hdp)
- Moose::Meta::Attribute::Native
- We have merged the functionality of MooseX::AttributeHelpers into the
Moose core with some API tweaks. You can continue to use
MooseX::AttributeHelpers, but it will not be maintained except
(perhaps) for critical bug fixes in the future. See
Moose::Manual::Delta for details. (hdp, jhannah, rbuels, Sartak,
perigrin, doy)
- Moose::Error::Croak
- Moose::Error::Confess
- Clarify documentation on how to use different error-throwing
modules. (Curtis Jewell)
- Moose
- Correct POD for builder to point to Recipe8, not 9. (gphat)
- Moose::Exporter
- When a nonexistent sub name is passed to as_is, with_caller, or
with_meta, throw a warning and skip the exporting, rather than
installing a broken sub. (doy)
- Moose::Meta::Class
- Moose now warns if you call C<make_immutable> for a class with mutable
ancestors. (doy)
0.89 2009-08-13
- Moose::Manual::Attributes
- Clarify "is", include discussion of "bare". (Sartak)
- Moose::Meta::Role::Method::Conflicting
- Moose::Meta::Role::Application::ToClass
- For the first set of roles involved in a conflict, report all
unresolved method conflicts, not just the first method. Fixes #47210
reported by Ovid. (Sartak)
- Moose::Meta::TypeConstraint
- Add assert_valid method to use a TypeConstraint for assertion (rjbs)
- Moose::Exporter
- Make "use Moose -metaclass => 'Foo'" do alias resolution, like -traits
does. (doy)
- Allow specifying role options (alias, excludes, MXRP stuff) in the
arrayref passed to "use Moose -traits" (doy)
- Moose::Util
- Add functions meta_class_alias and meta_attribute_alias for creating
aliases for class and attribute metaclasses and metatraits. (doy)
- Moose::Meta::Attribute
- Moose::Meta::Method::Accessor
- A trigger now receives the old value as a second argument, if the
attribute had one. (Dave Rolsky)
- Moose::Meta::Method::Constructor
- Fix a bug with $obj->new when $obj has stringify overloading.
Reported by Andrew Suffield [rt.cpan.org #47882] (Sartak)
- However, we will probably deprecate $obj->new, so please don't start
using it for new code!
- Moose::Meta::Role::Application
- Moose::Meta::Role::Application::RoleSummation
- Rename alias and excludes to -alias and -excludes (but keep the old
names for now, for backcompat) (doy)
0.88 2009-07-24
- Moose::Manual::Contributing
- Re-write the Moose::Manual::Contributing document to reflect
the new layout and methods of work for the Git repository. All
work now should be done in topic branches and reviewed by a
core committer before being applied to master. All releases
are done by a cabal member and merged from master to
stable. This plan was devised by Yuval, blame him. (perigrin)
- Moose::Meta::Role
- Create metaclass attributes for the different role application
classes. (rafl)
- Moose::Util::MetaRole
- Allow applying roles to a meta role's role application
classes. (rafl)
- Moose::Meta::Attribute
- Add weak_ref to allowed options for "has '+foo'" (mst)
- Moose::Meta::Method::Accessor
- No longer uses inline_slot_access in accessors, to support
non-lvalue-based meta instances. (sorear)
0.87 2009-07-07
- Moose::Meta::Method::Delegation
- Once again allow class names as well as objects for
delegation. This was changed in 0.86.
0.86 2009-07-03
- Moose::Meta::Class::Immutable::Trait
- Fixes to work with the latest Class::MOP.
- Moose::Meta::Method::Delegation
- Delegation now dies with a more useful error message if the
attribute's accessor returns something defined but
unblessed. (hdp)
0.85 2009-06-26
- Moose::Meta::Attribute
- The warning for 'no associated methods' is now split out into
the _check_associated_methods method, so that extensions can
safely call 'after install_accessors => ...'. This fixes a
warning from MooseX::AttributeHelpers. (hdp)
0.84 2009-06-26
- Moose::Role
- has now sets definition_context for attributes defined in
roles. (doy)
- Moose::Meta::Attribute
- When adding an attribute to a metaclass, if the attribute has
no associated methods, it will give a deprecation
warning. (hdp)
- Methods generated by delegation were not being added to
associated_methods. (hdp)
- Attribute accessors (reader, writer, accessor, predicate,
clearer) now warn if they overwrite an existing method. (doy)
- Attribute constructors now warn very noisily about unknown (or
misspelled) arguments
- Moose::Util::TypeConstraints
- Deprecated the totally useless Role type name, which just
checked if $object->can('does'). Note that this is _not_ the
same as a type created by calling role_type('RoleName').
- Moose::Util::TypeConstraints
- Moose::Meta::TypeConstraint::DuckType
- Reify duck type from a regular subtype into an actual class
(Sartak)
- Document this because Sartak did all my work for me
(perigrin)
- Moose::Meta::Attribute
- Allow Moose::Meta::TypeConstraint::DuckType in handles, since
it is just a list of methods (Sartak)
- Moose::Meta::Role
- The get_*_method_modifiers methods would die if the role had
no modifiers of the given type (Robert Buels).
0.83 2009-06-23
- Moose::Meta::Class
- Fix _construct_instance not setting the special __MOP__ object
key in instances of anon classes. (doy)
0.82 2009-06-21
- Moose::Manual::Types
- Mention MooseX::Types early to avoid users falling down the
string parsing rathole (mst)
- Moose::Manual::MooseX
- Add warnings about class-level extensions and mention considering
using plain objects instead
0.81 2009-06-07
- Bumped our Class::MOP prereq to the latest version (0.85), since
that's what we need.
0.80 2009-06-06
- Moose::Manual::FAQ
- Add FAQ about the coercion change from 0.76 because it came up
three times today (perigrin)
- Win doy $10 dollars because Sartak didn't think anybody
would document this fast enough (perigrin)
- Moose::Meta::Method::Destructor
- Inline a DESTROY method even if there are no DEMOLISH methods
to prevent unnecessary introspection in
Moose::Object::DEMOLISHALL
- Moose::*
- A role's required methods are now represented by
Moose::Meta::Role::Method::Required objects. Conflicts are now
represented by Moose::Meta::Role::Method::Conflicting
objects. The benefit for end-users in that unresolved
conflicts generate different, more instructive, errors,
resolving Ovid's #44895. (Sartak)
- Moose::Role
- Improve the error message of "extends" as suggested by Adam
Kennedy and confound (Sartak)
- Link to Moose::Manual::Roles from Moose::Role as we now have
excellent documentation (Adam Kennedy)
- Tests
- Update test suite for subname change in Class::MOP
(nothingmuch)
- Add TODO test for infinite recursion in Moose::Meta::Class
(groditi)
0.79 2009-05-13
- Tests
- More fixes for Win32 problems. Reported by Robert Krimen.
- Moose::Object
- The DEMOLISHALL method could still blow up in some cases
during global destruction. This method has been made more
resilient in the face of global destruction's random garbage
collection order.
- Moose::Exporter
- If you "also" a module that isn't loaded, the error message
now acknowledges that (Sartak)
- Moose
- When your ->meta method does not return a Moose::Meta::Class,
the error message gave the wrong output (Sartak)
0.78 2009-05-12
- Moose::Cookbook::FAQ and Moose::Cookbook::WTF
- Merged these documents into what is now Moose::Manual::FAQ
- Moose::Unsweetened
- Moved to Moose::Manual::Unsweetened
- Moose::Cookbook::Basics::Recipes 9-12
- Renamed to be 8-11, since recipe 8 did not exist
- Moose::Exporter
- Make Moose::Exporter import strict and warnings into packages
that use it (doy)
- Moose::Object
- Fix DEMOLISHALL sometimes not being able to find DEMOLISH
methods during global destruction (doy)
- Moose::Meta::Class
- Moose::Meta::Role::Application::ToClass
- Track the Role::Application objects created during class-role
consumption (Sartak)
- Moose::Meta::Class
- Fix metaclass incompatibility errors when extending a vanilla perl
class which isa Moose class with a metaclass role applied (t0m)
- Moose::Meta::Role
- Add a role-combination hook, _role_for_combination, for the
benefit of MooseX::Role::Parameterized (Sartak)
- Tests
- Some tests were failing on Win32 because they explicit checked
warning output for newlines. Reported by Nickolay Platonov.
0.77 2009-05-02
- Moose::Meta::Role
- Add explicit use of Devel::GlobalDestruction and Sub::Name
(perigrin)
- Moose::Object
- Pass a boolean to DEMOLISHALL and DEMOLISH indicating whether
or not we are currently in global destruction (doy)
- Add explicit use of Devel::GlobalDestruction and Sub::Name
(perigrin)
- Moose::Cookbook::FAQ
- Reworked much of the existing content to be more useful to
modern Moose hackers (Sartak)
- Makefile.PL
- Depend on Class::MOP 0.83 instead of 0.82_01.
0.76 2009-04-27
- Moose::Meta::TypeConstraint
- Do not run coercions in coerce() if the value already passes the type
constraint (hdp)
- Moose::Meta::TypeConstraint::Class
- In validation error messages, specifically say that the value is not
an instance of the class. This should alleviate some frustrating
forgot-to-load-my-type bugs. rt.cpan.org #44639 (Sartak)
- Moose::Meta::Role::Application::ToClass
- Revert the class-overrides-role warning in favor of a solution outside
of the Moose core (Sartak)
- Tests
- Make Test::Output optional again, since it's only used in a few files
(Sartak)
0.75_01 2009-04-23
- Moose::Meta::Role::Application::ToClass
- Moose now warns about each class overriding methods from roles it
consumes (Sartak)
- Tests
- Warnings tests have standardized on Test::Output which is now an
unconditionally dependency (Sartak)
- Moose::Meta::Class
- Changes to immutabilization to work with Class::MOP 0.82_01+.
0.75 2009-04-20
- Moose
- Moose::Meta::Class
- Move validation of not inheriting from roles from Moose::extends to
Moose::Meta::Class::superclasses (doy)
- Moose::Util
- add ensure_all_roles() function to encapsulate the common "apply this
role unless the object already does it" pattern (hdp)
- Moose::Exporter
- Users can now select a different metaclass with the "-metaclass"
option to import, for classes and roles (Sartak)
- Moose::Meta::Role
- Make method_metaclass an attr so that it can accept a metarole
application. (jdv)
0.74 2009-04-07
- Moose::Meta::Role
- Moose::Meta::Method::Destructor
- Include stack traces in the deprecation warnings.
(Florian Ragwitz)
- Moose::Meta::Class
- Removed the long-deprecated _apply_all_roles method.
- Moose::Meta::TypeConstraint
- Removed the long-deprecated union method.
0.73_02 2009-04-06
- More deprecations and renamings
- Moose::Meta::Method::Constructor
- initialize_body => _initialize_body (this is always called
when an object is constructed)
- Moose::Object
- The DEMOLISHALL method could throw an exception during global
destruction, meaning that your class's DEMOLISH methods would
not be properly called. Reported by t0m.
- Moose::Meta::Method::Destructor
- Destructor inlining was totally broken by the change to the
is_needed method in 0.72_01. Now there is a test for this
feature, and it works again.
- Moose::Util
- Bold the word 'not' in the POD for find_meta (t0m)
0.73_01 2009-04-05
- Moose::*
- Call user_class->meta in fewer places, with the eventual goal
of allowing the user to rename or exclude ->meta
altogether. Instead uses Class::MOP::class_of. (Sartak)
- Moose::Meta::Method::Accessor
- If an attribute had a lazy default, and that value did not
pass the attribute's type constraint, it did not get the
message from the type constraint, instead using a generic
message. Test provided by perigrin.
- Moose::Util::TypeConstraints
- Add duck_type keyword. It's sugar over making sure an object
can() a list of methods. This is easier than jrockway's
suggestion to fork all of CPAN. (perigrin)
- add tests and documentation (perigrin)
- Moose
- Document the fact that init_meta() returns the target class's
metaclass object. (hdp)
- Moose::Cookbook::Extending::Recipe1
- Moose::Cookbook::Extending::Recipe2
- Moose::Cookbook::Extending::Recipe3
- Moose::Cookbook::Extending::Recipe4
- Make init_meta() examples explicitly return the metaclass and
point out this fact. (hdp)
- Moose::Cookbook::Basics::Recipe12
- A new recipe, creating a custom meta-method class.
- Moose::Cookbook::Meta::Recipe6
- A new recipe, creating a custom meta-method class.
- Moose::Meta::Class
- Moose::Meta::Method::Constructor
- Attribute triggers no longer receive the meta-attribute object
as an argument in any circumstance. Previously, triggers
called during instance construction were passed the
meta-attribute, but triggers called by normal accessors were
not. Fixes RT#44429, reported by Mark Swayne. (hdp)
- Moose::Manual::Attributes
- Remove references to triggers receving the meta-attribute object as an
argument. (hdp)
- Moose::Cookbook::FAQ
- Remove recommendation for deprecated Moose::Policy and
Moose::Policy::FollowPBP; recommend MooseX::FollowPBP
instead. (hdp)
- Many methods have been renamed with a leading underscore, and a
few have been deprecated entirely. The methods with a leading
underscore are consider "internals only". People writing
subclasses or extensions to Moose should feel free to override
them, but they are not for "public" use.
- Moose::Meta::Class
- check_metaclass_compatibility => _check_metaclass_compatibility
- Moose::Meta::Method::Accessor
- initialize_body => _initialize_body (this is always called
when an object is constructed)
- /(generate_.*_method(?:_inline)?)/ => '_' . $1
- Moose::Meta::Method::Constructor
- initialize_body => _initialize_body (this is always called
when an object is constructed)
- /(generate_constructor_method(?:_inline)?)/ => '_' . $1
- attributes => _attributes (now inherited from parent)
- meta_instance => _meta_instance (now inherited from parent)
- Moose::Meta::Role
- alias_method is deprecated. Use add_method
0.73 2009-03-27
- No changes from 0.72_01.
0.72_01 2009-03-26
- Everything
- Almost every module has complete API documentation. A few
methods (and even whole classes) have been intentionally
excluded pending some rethinking of their APIs.
- Moose::Util::TypeConstraints
- Calling subtype with a name as the only argument is now an
exception. If you want an anonymous subtype do:
my $subtype = subtype as 'Foo';
- Moose::Cookbook::Meta::Recipe7
- A new recipe, creating a custom meta-instance class.
- Moose::Cookbook::Basics::Recipe5
- Fix various typos and mistakes. Includes a patch from Radu
Greab.
- Moose::Cookbook::Basics::Recipe9
- Link to this recipe from Moose.pm's builder blurb
- Moose::Exporter
- When wrapping a function with a prototype, Moose::Exporter now
makes sure the wrapped function still has the same
prototype. (Daisuke Maki)
- Moose::Meta::Attribute
- Allow a subclass to set lazy_build for an inherited
attribute. (hdp)
- Makefile.PL
- Explicitly depend on Data::OptList. We already had this dependency
via Sub::Exporter, but since we're using it directly we're
better off with it listed. (Sartak)
- Moose::Meta::Method::Constructor
- Make it easier to subclass the inlining behaviour. (Ash
Berlin)
- Moose::Manual::Delta
- Details significant changes in the history of Moose, along
with recommended workarounds.
- Moose::Manual::Contributing
- Contributor's guide to Moose.
- Moose::Meta::Method::Constructor
- The long-deprecated intialize_body method has been removed
(yes, spelled like that).
- Moose::Meta::Method::Destructor
- This is_needed method is now always a class method.
- Moose::Meta::Class
- Changes to the internals of how make_immutable works to match
changes in latest Class::MOP.
0.72 2009-02-23
- Moose::Object
- Moose::Meta::Method::Constructor
- A mutable class accepted Foo->new(undef) without complaint,
while an immutable class would blow up with an unhelpful
error. Now, in both cases we throw a helpful error
instead. Reported by doy.
0.71_01 2009-02-22
- Moose::Cookbook
- Hopefully fixed some POD errors in a few recipes that caused
them to display weird on search.cpan.org.
- Moose::Util::TypeConstraints
- Calling type or subtype without the sugar helpers (as, where,
message) is now deprecated.
- The subtype function tried hard to guess what you meant, but
often got it wrong. For example:
my $subtype = subtype as 'ArrayRef[Object]';
This caused an error in the past, but now works as you'd
expect.
- Everywhere
- Make sure Moose.pm is loaded before calling
Moose->throw_error. This wasn't normally an issue, but could
bite you in weird cases.
0.71 2009-02-19
- Moose::Cookbook::Basics::Recipe11
- A new recipe which demonstrates the use of BUILDARGS and
BUILD. (Dave Rolsky)
- Moose::Cookbook::Roles::Recipe3
- A new recipe, applying a role to an object instance. (Dave
Rolsky)
- Moose::Exporter
- Allow overriding specific keywords from "also" packages. (doy)
- Tests
- Replace hardcoded cookbook tests with Test::Inline to ensure
the tests match the actual code in the recipes. (Dave Rolsky)
- Moose::Cookbook
- Working on the above turned up a number of little bugs in the
recipe code. (Dave Rolsky)
- Moose::Util::TypeConstraints::Optimized
- Just use Class::MOP for the optimized ClassName check. (Dave
Rolsky)
0.70 2009-02-14
- Moose::Util::TypeConstraints
- Added the RoleName type (stevan)
- added tests for this (stevan)
- Moose::Cookbook::Basics::Recipe3
- Updated the before qw[left right] sub to be a little more
defensive about what it accepts (stevan)
- added more tests to t/000_recipies/basics/003_binary_tree.t
(stevan)
- Moose::Object
- We now always call DEMOLISHALL, even if a class does not
define DEMOLISH. This makes sure that method modifiers on
DEMOLISHALL work as expected. (doy)
- added tests for this (EvanCarroll)
- Moose::Util::MetaRole
- Accept roles for the wrapped_method_metaclass (rafl)
- added tests for this (rafl)
- Moose::Meta::Attribute
- We no longer pass the meta-attribute object as a final
argument to triggers. This actually changed for inlined code a
while back, but the non-inlined version and the docs were
still out of date.
- Tests
- Some tests tried to use Test::Warn 0.10, which had bugs. Now
they require 0.11. (Dave Rolsky)
- Documentation
- Lots of small changes to the manual, cookbook, and
elsewhere. These were based on feedback from various
users, too many to list here. (Dave Rolsky)
0.69 2009-02-12
- Moose
- Make some keyword errors use throw_error instead of croak
since Moose::Exporter wraps keywords now (Sartak)
- Moose::Cookbook::*
- Revised every recipe for style and clarity. Also moved some
documentation out of cookbook recipes and into Moose::Manual
pages. This work was funded as part of the Moose docs grant
from TPF. (Dave Rolsky)
- Moose::Meta::Method::Delegation
- If the attribute doing the delegation was not populated, the
error message did not specify the attribute name
properly. (doy)
0.68 2009-02-04
- POD
- Many spelling, typo, and formatting fixes by daxim.
- Moose::Manual::Attributes
- The NAME section in the POD used "Attribute" so search.cpan
didn't resolve links from other documents properly.
- Moose::Meta::Method::Overriden
- Now properly spelled as Overridden. Thanks to daxim for
noticing this.
0.67 2009-02-03
- Moose::Manual::*
- Lots of little typo fixes and a few clarifications. Several
pages didn't have proper titles, and so weren't actually
visible on search.cpan.org. Thanks to hanekomu for a variety
of fixes and formatting improvements.
0.66 2009-02-03
- Moose::Manual
- This is a brand new, extensive manual for Moose. This aims to
provide a complete introduction to all of Moose's
features. This work was funded as part of the Moose docs grant
from TPF. (Dave Rolsky)
- Moose::Meta::Attribute
- Added a delegation_metaclass method to replace a hard-coded
use of Moose::Meta::Method::Delegation. (Dave Rolsky)
- Moose::Util::TypeConstraints
- If you created a subtype and passed a parent that Moose didn't
know about, it simply ignored the parent. Now it automatically
creates the parent as a class type. This may not be what you
want, but is less broken than before. (Dave Rolsky)
- Moose::Util::TypeConstraints
- This module tried throw errors by calling Moose->throw_error,
but it did not ensure that Moose was loaded first. This could
cause very unhelpful errors when it tried to throw an error
before Moose was loaded. (Dave Rolsky)
- Moose::Util::TypeConstraints
- You could declare a name with subtype such as "Foo!Bar" that
would be allowed, but if you used it in a parameterized type
such as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some
vetting on names created via the sugar functions, so that they
can only contain alphanumerics, ":", and ".". (Dave Rolsky)
0.65 2009-01-22
- Moose and Moose::Meta::Method::Overridden
- If an overridden method called super(), and then the
superclass's method (not overridden) _also_ called super(),
Moose went into an endless recursion loop. Test provided by
Chris Prather. (Dave Rolsky)
- Moose::Meta::TypeConstraint
- All methods are now documented. (gphat)
- t/100_bugs/011_DEMOLISH_eats_exceptions.t
- Fixed some bogus failures that occurred because we tried to
validate filesystem paths in a very ad-hoc and
not-quite-correct way. (Dave Rolsky)
- Moose::Util::TypeConstraints
- Added maybe_type to exports. See docs for details. (rjbs)
- Moose
- Added Moose::Util::TypeConstraints to the SEE ALSO
section. (pjf)
- Moose::Role
- Methods created via an attribute can now fulfill a "requires"
declaration for a role. (nothingmuch)
- Moose::Meta::Method::*
- Stack traces from inlined code will now report its line and
file as being in your class, as opposed to in Moose
guts. (nothingmuch).
0.64 2008-12-31
- Moose::Meta::Method::Accessor
- Always inline predicate and clearer methods (Sartak)
- Moose::Meta::Attribute
- Support for parameterized traits (Sartak)
- verify_against_type_constraint method to avoid duplication
and enhance extensibility (Sartak)
- Moose::Meta::Class
- Tests (but no support yet) for parameterized traits (Sartak)
- Moose
- Require Class::MOP 0.75+, which has the side effect of making
sure we work on Win32. (Dave Rolsky)
0.63 2008-12-08
- Moose::Unsweetened
- Some small grammar tweaks and bug fixes in non-Moose example
code. (Dave Rolsky)
0.62_02 2008-12-05
- Moose::Meta::Role::Application::ToClass
- When a class does not provide all of a role's required
methods, the error thrown now mentions all of the missing
methods, as opposed to just the first one found. Requested by
Curtis Poe (RT #41119). (Dave Rolsky)
- Moose::Meta::Method::Constructor
- Moose will no longer inline a constructor for your class
unless it inherits its constructor from Moose::Object, and
will warn when it doesn't inline. If you want to force
inlining anyway, pass "replace_constructor => 1" to
make_immutable. Addresses RT #40968, reported by Jon
Swartz. (Dave Rolsky)
- The quoting of default values could be broken if the default
contained a single quote ('). Now we use quotemeta to escape
anything potentially dangerous in the defaults. (Dave Rolsky)
0.62_01 2008-12-03
- Moose::Object
- use the method->execute API for BUILDALL
and DEMOLISHALL (Sartak)
- Moose::Util::TypeConstraints
- We now make all the type constraint meta classes immutable
before creating the default types provided by Moose. This
should make loading Moose a little faster. (Dave Rolsky)
0.62 2008-11-26
- Moose::Meta::Role::Application::ToClass
Moose::Meta::Role::Application::ToRole
- fixed issues where excluding and aliasing the
same methods for a single role did not work
right (worked just fine with multiple
roles) (stevan)
- added test for this (stevan)
- Moose::Meta::Role::Application::RoleSummation
- fixed the error message when trying to compose
a role with a role it excludes (Sartak)
- Moose::Exporter
- Catch another case where recursion caused the value
of $CALLER to be stamped on (t0m)
- added test for this (t0m)
- Moose
- Remove the make_immutable keyword, which has been
deprecated since April. It breaks metaclasses that
use Moose without no Moose (Sartak)
- Moose::Meta::Attribute
- Removing an attribute from a class now also removes delegation
(handles) methods installed for that attribute (t0m)
- added test for this (t0m)
- Moose::Meta::Method::Constructor
- An attribute with a default that looked like a number (but was
really a string) would accidentally be treated as a number
when the constructor was made immutable (perigrin)
- added test for this (perigrin)
- Moose::Meta::Role
- create method for constructing a role
dynamically (Sartak)
- added test for this (Sartak)
- anonymous roles! (Sartak)
- added test for this (Sartak)
- Moose::Role
- more consistent error messages (Sartak)
- Moose::Cookbook::Roles::Recipe1
- attempt to explain why a role that just requires
methods is useful (Sartak)
0.61 2008-11-07
- Moose::Meta::Attribute
- When passing a role to handles, it will be loaded if necessary
(perigrin)
- Moose::Meta::Class
- Method objects returned by get_method (and other methods)
Could end up being returned without an associated_metaclass
attribute. Removing get_method_map, which is provided by
Class::MOP::Class, fixed this. The Moose version did nothing
different from its parent except introduce a bug. (Dave Rolsky)
- added tests for this (jdv79)
- Various
- Added a $VERSION to all .pm files which didn't have one. Fixes
RT #40049, reported by Adam Kennedy. (Dave Rolsky)
- Moose::Cookbook::Basics::Recipe4
- Moose::Cookbook::Basics::Recipe6
- These files had spaces on the first line of the SYNOPSIS, as
opposed to a totally empty line. According to RT #40432, this
confuses POD parsers. (Dave Rolsky)
0.60 2008-10-24
- Moose::Exporter
- Passing "-traits" when loading Moose caused the Moose.pm
exports to be broken. Reported by t0m. (Dave Rolsky)
- Tests for this bug. (t0m)
- Moose::Util
- Change resolve_metaclass alias to use the new
load_first_existing_class function. This makes it a lot
simpler, and also around 5 times faster. (t0m)
- Add caching to resolve_metaclass_alias, which gives an order
of magnitude speedup to things which repeatedly call the
Moose::Meta::Attribute->does method, notably MooseX::Storage
(t0m)
- Moose::Util::TypeConstraint
- Put back the changes for parameterized constraints that
shouldn't have been removed in 0.59. We still cannot parse
them, but MooseX modules can create them in some other
way. See the 0.58 changes for more details. (jnapiorkowski)
- Changed the way subtypes are created so that the job is
delegated to a type constraint parent. This clears up some
hardcoded checking and should allow correct subtypes of
Moose::Meta::Type::Constraint. Don't rely on this new API too
much (create_child_type) because it may go away in the
future. (jnapiorkowski)
- Moose::Meta::TypeConstraint::Union
- Type constraint names are sorted as strings, not numbers.
(jnapiorkowski)
- Moose::Meta::TypeConstraint::Parameterizable
- New parameterize method. This can be used as a factory method
to make a new type constraint with a given parameterized
type. (jnapiorkowski)
- added tests (jnapiorkowski)
0.59 2008-10-14
- Moose
- Add abridged documentation for builder/default/initializer/
predicate, and link to more details sections in
Class::MOP::Attribute. (t0m)
- Moose::Util::TypeConstraints
- removed prototypes from all but the &-based stuff (mst)
- Moose::Util::TypeConstraints
- Creating a anonymous subtype with both a constraint and a
message failed with a very unhelpful error, but should just
work. Reported by t0m. (Dave Rolsky)
- Tests
- Some tests that used Test::Warn if it was available failed
with older versions of Test::Warn. Reported by Fayland. (Dave
Rolsky)
- Test firing behavior of triggers in relation to builder/default/
lazy_build. (t0m)
- Test behavior of equals/is_a_type_of/is_a_subtype_of for all
kinds of supported type. (t0m)
- Moose::Meta::Class
- In create(), do not pass "roles" option to the superclass
- added related test that creates an anon metaclass with
a required attribute
- Moose::Meta::TypeConstraint::Class
- Moose::Meta::TypeConstraint::Role
- Unify behavior of equals/is_a_type_of/is_a_subtype_of with
other types (as per change in 0.55_02). (t0m)
- Moose::Meta::TypeConstraint::Registry
- Fix warning when dealing with unknown type names (t0m)
- Moose::Util::TypeConstraints
- Reverted changes from 0.58 related to handle parameterized
types. This caused random failures on BSD and Win32 systems,
apparently related to the regex engine. This means that Moose
can no longer parse structured type constraints like
ArrayRef[Int,Int] or HashRef[name=>Str]. This will be
supported in a slightly different way via MooseX::Types some
time in the future. (Dave Rolsky)
0.58 2008-09-20
!! This release has an incompatible change regarding !!
!! how roles add methods to a class !!
- Roles and role application
! Roles now add methods by calling add_method, not
alias_method. They make sure to always provide a method
object, which will be cloned internally. This means that it is
now possible to track the source of a method provided by a
role, and even follow its history through intermediate roles.
This means that methods added by a role now show up when
looking at a class's method list/map. (Dave Rolsky)
- Makefile.PL
- From this release on, we'll try to maintain a list of
conflicting modules, and warn you if you have one
installed. For example, this release conflicts with ...
- MooseX::Singleton <= 0.11
- MooseX::Params::Validate <= 0.05
- Fey::ORM <= 0.10
In general, we try to not break backwards compatibility for
most Moose users, but MooseX modules and other code which
extends Moose's metaclasses is often affected by very small
changes in the Moose internals.
- Moose::Meta::Method::Delegation
- Moose::Meta::Attribute
- Delegation methods now have their own method class. (Dave
Rolsky)
- Moose::Meta::TypeConstraint::Parameterizable
- Added a new method 'parameterize' which is basically a factory
for the containing constraint. This makes it easier to create
new types of parameterized constraints. (jnapiorkowski)
- Moose::Meta::TypeConstraint::Union
- Changed the way Union types canonicalize their names to follow
the normalized TC naming rules, which means we strip all
whitespace. (jnapiorkowski)
- Moose::Util::TypeConstraints
- Parameter and Union args are now sorted, this makes Int|Str
the same constraint as Str|Int. (jnapiorkowski)
- Changes to the way Union types are parsed to more correctly
stringify their names. (jnapiorkowski)
- When creating a parameterized type, we now use the new
parameterize method. (jnapiorkowski)
- Incoming type constraint strings are now normalized to remove
all whitespace differences. (jnapiorkowski)
- Changed the way we parse type constraint strings so that we now
match TC[Int,Int,...] and TC[name=>Str] as parameterized type
constraints. This lays the foundation for more flexible type
constraint implementations.
- Tests and docs for all the above. (jnapiorkowski)
- Moose::Exporter
- Moose
- Moose::Exporter will no longer remove a subroutine that the
exporting package re-exports. Moose re-exports the
Carp::confess function, among others. The reasoning is that we
cannot know whether you have also explicitly imported those
functions for your own use, so we err on the safe side and
always keep them. (Dave Rolsky)
- added tests for this (rafl)
- Moose::Meta::Class
- Changes to how we fix metaclass compatibility that are much
too complicated to go into. The summary is that Moose is much
less likely to complain about metaclass incompatibility
now. In particular, if two metaclasses differ because
Moose::Util::MetaRole was used on the two corresponding
classes, then the difference in roles is reconciled for the
subclass's metaclass. (Dave Rolsky)
- Squashed an warning in _process_attribute (thepler)
- Moose::Meta::Role
- throw exceptions (sooner) for invalid attribute names (thepler)
- added tests for this (thepler)
- Moose::Util::MetaRole
- If you explicitly set a constructor or destructor class for a
metaclass object, and then applied roles to the metaclass,
that explicitly set class would be lost and replaced with the
default.
- Moose::Meta::Class
- Moose::Meta::Attribute
- Moose::Meta::Method
- Moose
- Moose::Object
- Moose::Error::Default
- Moose::Error::Croak
- Moose::Error::Confess
- All instances of confess() changed to use overridable
C<throw_error> method. This method ultimately calls a class
constructor, and you can change the class being called. In
addition, errors now pass more information than just a string.
The default C<error_class> behaves like C<Carp::confess>, so
the behavior is not visibly different for end users.
0.57 2008-09-03
- Moose::Intro
- A new bit of doc intended to introduce folks familiar with
"standard" Perl 5 OO to Moose concepts. (Dave Rolsky)
- Moose::Unsweetened
- Shows examples of two classes, each done first with and then
without Moose. This makes a nice parallel to
Moose::Intro. (Dave Rolsky)
- Moose::Util::TypeConstraints
- Fixed a bug in find_or_parse_type_constraint so that it
accepts a Moose::Meta::TypeConstraint object as the parent
type, not just a name (jnapiorkowski)
- added tests (jnapiorkowski)
- Moose::Exporter
- If Sub::Name was not present, unimporting failed to actually
remove some sugar subs, causing test failures (Dave Rolsky)
0.56 2008-09-01
For those not following the series of dev releases, there are
several major changes in this release of Moose.
! Moose::init_meta should now be called as a method. See the
docs for details.
- Major performance improvements by nothingmuch.
- New modules for extension writers, Moose::Exporter and
Moose::Util::MetaRole by Dave Rolsky.
- Lots of doc improvements and additions, especially in the
cookbook sections.
- Various bug fixes.
- Removed all references to the experimental-but-no-longer-needed
Moose::Meta::Role::Application::ToMetaclassInstance.
- Require Class::MOP 0.65.
0.55_04 2008-08-30
- Moose::Util::MetaRole
- Moose::Cookbook::Extending::Recipe2
- This simplifies the application of roles to any meta class, as
well as the base object class. Reimplemented metaclass traits
using this module. (Dave Rolsky)
- Moose::Cookbook::Extending::Recipe1
- This a new recipe, an overview of various ways to write Moose
extensions (Dave Rolsky)
- Moose::Cookbook::Extending::Recipe3
- Moose::Cookbook::Extending::Recipe4
- These used to be Extending::Recipe1 and Extending::Recipe2,
respectively.
0.55_03 2008-08-29
- No changes from 0.55_02 except increasing the Class::MOP
dependency to 0.64_07.
0.55_02 2008-08-29
- Makefile.PL and Moose.pm
- explicitly require Perl 5.8.0+ (Dave Rolsky)
- Moose::Util::TypeConstraints
- Fix warnings from find_type_constraint if the type is not
found (t0m).
- Moose::Meta::TypeConstraint
- Predicate methods (equals/is_a_type_of/is_subtype_of) now
return false if the type you specify cannot be found in the
type registry, rather than throwing an unhelpful and
coincidental exception. (t0m).
- added docs & test for this (t0m)
- Moose::Meta::TypeConstraint::Registry
- add_type_constraint now throws an exception if a parameter is
not supplied (t0m).
- added docs & test for this (t0m)
- Moose::Cookbook::FAQ
- Added a faq entry on the difference between "role" and "trait"
(t0m)
- Moose::Meta::Role
- Fixed a bug that caused role composition to not see a required
method when that method was provided by another role being
composed at the same time. (Dave Rolsky)
- test and bug finding (tokuhirom)
0.55_01 2008-08-20
!! Calling Moose::init_meta as a function is now !!
!! deprecated. Please see the Moose.pm docs for details. !!
- Moose::Meta::Method::Constructor
- Fix inlined constructor so that values produced by default
or builder methods are coerced as required. (t0m)
- added test for this (t0m)
- Moose::Meta::Attribute
- A lazy attribute with a default or builder did not attempt to
coerce the default value. The immutable code _did_
coerce. (t0m)
- added test for this (t0m)
- Moose::Exporter
- This is a new helper module for writing "Moose-alike"
modules. This should make the lives of MooseX module authors
much easier. (Dave Rolsky)
- Moose
- Moose::Cookbook::Meta::Recipe5
- Implemented metaclass traits (and wrote a recipe for it):
use Moose -traits => 'Foo'
This should make writing small Moose extensions a little
easier (Dave Rolsky)
- Moose::Cookbook::Basics::Recipe1
- Removed any examples of direct hashref access, and applied an
editorial axe to reduce verbosity. (Dave Rolsky)
- Moose::Cookbook::Basics::Recipe1
- Also applied an editorial axe here. (Dave Rolsky)
- Moose
- Moose::Cookbook::Extending::Recipe1
- Moose::Cookbook::Extending::Recipe2
- Rewrote extending and embedding moose documentation and
recipes to use Moose::Exporter (Dave Rolsky)
- Moose
- Moose::Role
- These two modules now warn when you load them from the main
package "main" package, because we will not export sugar to
main. Previously it just did nothing. (Dave Rolsky)
- Moose::Role
- Now provide an init_meta method just like Moose.pm, and you
can call this to provide an alternate role metaclass. (Dave
Rolsky and nothingmuch)
- get_method_map now respects the package cache flag (nothingmuch)
- Moose::Meta::Role
- Two new methods - add_method and wrap_method_body
(nothingmuch)
- many modules
- Optimizations including allowing constructors to accept hash
refs, making many more classes immutable, and making
constructors immutable. (nothingmuch)
0.55 2008-08-03
- Moose::Meta::Attribute
- breaking down the way 'handles' methods are
created so that the process can be more easily
overridden by subclasses (stevan)
- Moose::Meta::TypeConstraint
- fixing what is passed into a ->message with
the type constraints (RT #37569)
- added tests for this (Charles Alderman)
- Moose::Util::TypeConstraints
- fix coerce to accept anon types like subtype can (mst)
- Moose::Cookbook
- reorganized the recipes into sections - Basics, Roles, Meta,
Extending - and wrote abstracts for each section (Dave Rolsky)
- Moose::Cookbook::Basics::Recipe10
- A new recipe that demonstrates operator overloading
in combination with Moose. (bluefeet)
- Moose::Cookbook::Meta::Recipe1
- an introduction to what meta is and why you'd want to make
your own metaclass extensions (Dave Rolsky)
- Moose::Cookbook::Meta::Recipe4
- a very simple metaclass example (Dave Rolsky)
- Moose::Cookbook::Extending::Recipe1
- how to write a Moose-alike module to use your own object base
class (Dave Rolsky)
- Moose::Cookbook::Extending::Recipe2
- how to write modules with an API just like C<Moose.pm> (Dave
Rolsky)
- all documentation
- Tons of fixes, both syntactical and grammatical (Dave
Rolsky, Paul Fenwick)
0.54 2008-07-03
... this is not my day today ...
- Moose::Meta::Attribute
- fixed legal_options_for_inheritance such that
clone_and_inherit options still works for
Class::MOP::Attribute objects and therefore
does not break MooseX::AttributeHelpers
(stevan)
0.53 2008-07-03
- Whoops, I guess I should run 'make manifest' before
actually releasing the module. No actual changes
in this release, except the fact that it includes
the changes that I didn't include in the last
release. (stevan--)
0.52 2008-07-03
- Moose
- added "FEATURE REQUESTS" section to the Moose docs
to properly direct people (stevan) (RT #34333)
- making 'extends' croak if it is passed a Role since
this is not ever something you want to do
(fixed by stevan, found by obra)
- added tests for this (stevan)
- Moose::Object
- adding support for DOES (as in UNIVERSAL::DOES)
(nothingmuch)
- added test for this
- Moose::Meta::Attribute
- added legal_options_for_inheritance (wreis)
- added tests for this (wreis)
- Moose::Cookbook::Snacks::*
- removed some of the unfinished snacks that should
not have been released yet. Added some more examples
to the 'Keywords' snack. (stevan)
- Moose::Cookbook::Style
- added general Moose "style guide" of sorts to the
cookbook (nothingmuch) (RT #34335)
- t/
- added more BUILDARGS tests (stevan)
0.51 2008-06-26
- Moose::Role
- add unimport so "no Moose::Role" actually does
something (sartak)
- Moose::Meta::Role::Application::ToRole
- when RoleA did RoleB, and RoleA aliased a method from RoleB in
order to provide its own implementation, that method still got
added to the list of required methods for consumers of
RoleB. Now an aliased method is only added to the list of
required methods if the role doing the aliasing does not
provide its own implementation. See Recipe 11 for an example
of all this. (Dave Rolsky)
- added tests for this
- Moose::Meta::Method::Constructor
- when a single argument that wasn't a hashref was provided to
an immutabilized constructor, the error message was very
unhelpful, as opposed to the non-immutable error. Reported by
dew. (Dave Rolsky)
- added test for this (Dave Rolsky)
- Moose::Meta::Attribute
- added support for meta_attr->does("ShortAlias") (sartak)
- added tests for this (sartak)
- moved the bulk of the `handles` handling to the new
install_delegation method (Stevan)
- Moose::Object
- Added BUILDARGS, a new step in new()
- Moose::Meta::Role::Application::RoleSummation
- fix typos no one ever sees (sartak)
- Moose::Util::TypeConstraints
- Moose::Meta::TypeConstraint
- Moose::Meta::TypeCoercion
- Attempt to work around the ??{ } vs. threads issue
(not yet fixed)
- Some null_constraint optimizations
0.50 2008-06-12
- Fixed a version number issue by bumping all modules
to 0.50.
0.49 2008-06-12
!! This version now approx. 20-25% !!
!! faster with new Class::MOP 0.59 !!
- Moose::Meta::Attribute
- fixed how the is => (ro|rw) works with
custom defined reader, writer and accessor
options.
- added docs for this (TODO).
- added tests for this (Thanks to Penfold)
- added the custom attribute alias for regular
Moose attributes which is "Moose"
- fix builder and default both being used
(groditi)
- Moose
Moose::Meta::Class
Moose::Meta::Attribute
Moose::Meta::Role
Moose::Meta::Role::Composite
Moose::Util::TypeConstraints
- switched usage of reftype to ref because
it is much faster
- Moose::Meta::Role
- changing add_package_symbol to use the new
HASH ref form
- Moose::Object
- fixed how DEMOLISHALL is called so that it
can be overrided in subclasses (thanks to Sartak)
- added test for this (thanks to Sartak)
- Moose::Util::TypeConstraints
- move the ClassName type check code to
Class::MOP::is_class_loaded (thanks to Sartak)
- Moose::Cookbook::Recipe11
- add tests for this (thanks to tokuhirom)
0.48 2008-05-29
(early morning release engineering)--
- fixing the version in Moose::Meta::Method::Destructor
which was causing the indexer to choke
0.47 2008-05-29
(late night release engineering)--
- fixing the version is META.yml, no functional
changes in this release
0.46 2008-05-28
!! This version now approx. 20-25% !!
!! faster with new Class::MOP 0.57 !!
- Moose::Meta::Class
- some optimizations of the &initialize method
since it is called so often by &meta
- Moose::Meta::Class
Moose::Meta::Role
- now use the get_all_package_symbols from the
updated Class::MOP, test suite is now 10 seconds
faster
- Moose::Meta::Method::Destructor
- is_needed can now also be called as a class
method for immutablization to check if the
destructor object even needs to be created
at all
- Moose::Meta::Method::Destructor
Moose::Meta::Method::Constructor
- added more descriptive error message to help
keep people from wasting time tracking an error
that is easily fixed by upgrading.
0.45 2008-05-24
- Moose
- Because of work in Class::MOP 0.57, all
XS based functionality is now optional
and a Pure Perl version is supplied
- the CLASS_MOP_NO_XS environment variable
can now be used to force non-XS versions
to always be used
- several of the packages have been tweaked
to take care of this, mostly we added
support for the package_name and name
variables in all the Method metaclasses
- before/around/after method modifiers now
support regexp matching of names
(thanks to Takatoshi Kitano)
- tests added for this
- NOTE: this only works for classes, it
is currently not supported in roles,
but, ... patches welcome
- All usage of Carp::confess have been replaced
by Carp::croak in the "keyword" functions since
the stack trace is usually not helpful
- Moose::Role
- All usage of Carp::confess have been replaced
by Carp::croak in the "keyword" functions since
the stack trace is usually not helpful
- The 'has' keyword for roles now accepts the
same array ref form that Moose.pm does
(has [qw/foo bar/] => (is => 'rw', ...))
- added test for this
- Moose::Meta::Attribute
- trigger on a ro-attribute is no longer an
error, as it's useful to trigger off of the
constructor
- Moose::Meta::Class
- added same 'add_package_symbol' fix as in
Class::MOP 0.57
- Moose::Util
- does_role now handles non-Moose classes
more gracefully
- added tests for this
- added the 'add_method_modifier' function
(thanks to Takatoshi Kitano)
- Moose::Util::TypeConstraints
- subtypes of parameterizable types now are
themselves parameterizable types
- Moose::Meta::Method::Constructor
- fixed bug where trigger was not being
called by the inlined immutable
constructors
- added test for this (thanks to Caelum)
- Moose::Meta::Role::Application::ToInstance
- now uses the metaclass of the instance
(if possible) to create the anon-class
(thanks Jonathan Rockway)
- Moose::Cookbook::Recipe22
- added the meta-attribute trait recipe
(thanks to Sartak)
- t/
- fixed hash-ordering test bug that was
causing occasional cpantester failures
- renamed the t/000_recipe/*.t tests to be
more descriptive (thanks to Sartak)
0.44 2008-05-10
- Moose
- made make_immutable warning cluck to
show where the error is (thanks mst)
- Moose::Object
- BUILDALL and DEMOLISHALL now call
->body when looping through the
methods, to avoid the overloaded
method call.
- fixed issue where DEMOLISHALL was
eating the $@ values, and so not
working correctly, it still kind of
eats them, but so does vanilla perl
- added tests for this
- Moose::Cookbook::Recipe7
- added new recipe for immutable
functionality (thanks Dave Rolsky)
- Moose::Cookbook::Recipe9
- added new recipe for builder and
lazy_build (thanks Dave Rolsky)
- Moose::Cookbook::Recipe11
- added new recipe for method aliasing
and exclusion with Roles (thanks Dave Rolsky)
- t/
- fixed Win32 test failure (thanks spicyjack)
~ removed Build.PL and Module::Build compat
since Module::Install has done that.
0.43 2008-04-30
- NOTE TO SELF:
drink more coffee before
doing release engineering
- whoops, forgot to do the smolder tests,
and we broke some of the custom meta-attr
modules. This fixes that.
0.42 2008-04-28
- some bad tests slipped by, nothing else
changed in this release (cpantesters++)
- upped the Class::MOP dependency to 0.55
since we have tests which need the C3
support
0.41 2008-04-28
~~ numerous documentation updates ~~
- Changed all usage of die to Carp::croak for better
error reporting (initial patch by Tod Hagan)
** IMPORTANT NOTE **
- the make_immutable keyword is now deprecated, don't
use it in any new code and please fix your old code
as well. There will be 2 releases, and then it will
be removed.
- Moose
Moose::Role
Moose::Meta::Class
- refactored the way inner and super work to avoid
any method/@ISA cache penalty (nothingmuch)
- Moose::Meta::Class
- fixing &new_object to make sure trigger gets the
coerced value (spotted by Charles Alderman on the
mailing list)
- added test for this
- Moose::Meta::Method::Constructor
- immutable classes which had non-lazy attributes were calling
the default generating sub twice in the constructor. (bug
found by Jesse Luehrs, fixed by Dave Rolsky)
- added tests for this (Dave Rolsky)
- fix typo in initialize_body method (nothingmuch)
- Moose::Meta::Method::Destructor
- fix typo in initialize_body method (nothingmuch)
- Moose::Meta::Method::Overriden
Moose::Meta::Method::Augmented
- moved the logic for these into their own
classes (nothingmuch)
- Moose::Meta::Attribute
- inherited attributes may now be extended without
restriction on the type ('isa', 'does') (Sartak)
- added tests for this (Sartak)
- when an attribute property is malformed (such as lazy without
a default), give the name of the attribute in the error
message (Sartak)
- added the &applied_traits and &has_applied_traits methods
to allow introspection of traits
- added tests for this
- moved 'trait' and 'metaclass' argument handling to here from
Moose::Meta::Class
- clone_and_inherit_options now handles 'trait' and 'metaclass' (has
'+foo' syntax) (nothingmuch)
- added tests for this (t0m)
- Moose::Object
- localize $@ inside DEMOLISHALL to avoid it
eating $@ (found by Ernesto)
- added test for this (thanks to Ernesto)
- Moose::Util::TypeConstraints
- &find_type_constraint now DWIMs when given an
type constraint object or name (nothingmuch)
- &find_or_create_type_constraint superseded with a number of more
specific functions:
- find_or_create_{isa,does}_type_constraint
- find_or_parse_type_constraint
- Moose::Meta::TypeConstraint
Moose::Meta::TypeConstraint::Class
Moose::Meta::TypeConstraint::Role
Moose::Meta::TypeConstraint::Enum
Moose::Meta::TypeConstraint::Union
Moose::Meta::TypeConstraint::Parameterized
- added the &equals method for comparing two type
constraints (nothingmuch)
- added tests for this (nothingmuch)
- Moose::Meta::TypeConstraint
- add the &parents method, which is just an alias to &parent.
Useful for polymorphism with TC::{Class,Role,Union} (nothingmuch)
- Moose::Meta::TypeConstraint::Class
- added the class attribute for introspection purposes
(nothingmuch)
- added tests for this
- Moose::Meta::TypeConstraint::Enum
Moose::Meta::TypeConstraint::Role
- broke these out into their own classes (nothingmuch)
- Moose::Cookbook::Recipe*
- fixed references to test file locations in the POD
and updated up some text for new Moose features
(Sartak)
- Moose::Util
- Added &resolve_metaclass_alias, a helper function for finding an actual
class for a short name (e.g. in the traits list)
0.40 2008-03-14
- I hate Pod::Coverage
0.39 2008-03-14
- Moose
- documenting the use of '+name' with attributes
that come from recently composed roles. It makes
sense, people are using it, and so why not just
officially support it.
- fixing the 'extends' keyword so that it will not
trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
- oose
- added the perl -Moose=+Class::Name feature to allow
monkeypatching of classes in one liners
- Moose::Util
- fixing the 'apply_all_roles' keyword so that it will not
trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
- Moose::Meta::Class
- added ->create method which now supports roles (thanks to jrockway)
- added tests for this
- added ->create_anon_class which now supports roles and caching of
the results (thanks to jrockway)
- added tests for this
- made ->does_role a little more forgiving when it is
checking a Class::MOP era metaclasses.
- Moose::Meta::Role::Application::ToInstance
- it is now possible to pass extra params to be used when
a role is applied to an the instance (rebless_params)
- added tests for this
- Moose::Util::TypeConstraints
- class_type now accepts an optional second argument for a
custom message. POD anotated accordingly (groditi)
- added tests for this
- it is now possible to make anon-enums by passing 'enum' an
ARRAY ref instead of the $name => @values. Everything else
works as before.
- added tests for this
- t/
- making test for using '+name' on attributes consumed
from a role, it works and makes sense too.
- Moose::Meta::Attribute
- fix handles so that it doesn't return nothing
when the method cannot be found, not sure why
it ever did this originally, this means we now
have slightly better support for AUTOLOADed
objects
- added more delegation tests
- adding ->does method to this so as to better
support traits and their introspection.
- added tests for this
- Moose::Object
- localizing the Data::Dumper configurations so
that it does not pollute others (RT #33509)
- made ->does a little more forgiving when it is
passed Class::MOP era metaclasses.
0.38 2008-02-15
- Moose::Meta::Attribute
- fixed initializer to correctly do
type checking and coercion in the
callback
- added tests for this
- t/
- fixed some finicky tests (thanks to konobi)
0.37 2008-02-14
- Moose
- fixed some details in Moose::init_meta
and its superclass handling (thanks thepler)
- added tests for this (thanks thepler)
- 'has' now dies if you don't pass in name
value pairs
- added the 'make_immutable' keyword as a shortcut
to make_immutable
- Moose::Meta::Class
Moose::Meta::Method::Constructor
Moose::Meta::Attribute
- making (init_arg => undef) work here too
(thanks to nothingmuch)
- Moose::Meta::Attribute
Moose::Meta::Method::Constructor
Moose::Meta::Method::Accessor
- make lazy attributes respect attr initializers (rjbs)
- added tests for this
- Moose::Util::TypeConstraints
Moose::Util::TypeConstraints::OptimizedConstraints
Moose::Meta::TypeConstraints
Moose::Meta::Attribute
Moose::Meta::Method::Constructor
Moose::Meta::Method::Accessor
- making type errors use the
assigned message (thanks to Sartak)
- added tests for this
- Moose::Meta::Method::Destructor
- making sure DESTROY gets inlined properly
with successive DEMOLISH calls (thanks to manito)
- Moose::Meta::Attribute
Moose::Meta::Method::Accessor
- fixed handling of undef with type constraints
(thanks to Ernesto)
- added tests for this
- Moose::Util
- added &get_all_init_args and &get_all_attribute_values
(thanks to Sartak and nothingmuch)
0.36 2008-01-26
- Moose::Role
Moose::Meta::Attribute
- role type tests now support when roles are
applied to non-Moose classes (found by ash)
- added tests for this (thanks to ash)
- couple extra tests to boost code coverage
- Moose::Meta::Method::Constructor
- improved fix for handling Class::MOP attributes
- added test for this
- Moose::Meta::Class
- handled the add_attribute($attribute_meta_object)
case correctly
- added test for this
0.35 2008-01-22
- Moose::Meta::Method::Constructor
- fix to make sure even Class::MOP attributes
are handled correctly (Thanks to Dave Rolsky)
- added test for this (also Dave Rolsky)
- Moose::Meta::Class
- improved error message on _apply_all_roles,
you should now use Moose::Util::apply_all_roles
and you shouldnt have been using a _ prefixed
method in the first place ;)
0.34 2008-01-21
~~~ more misc. doc. fixes ~~~
~~ updated copyright dates ~~
Moose is now a postmodern object system :)
- (see the POD for details)
- <<Role System Refactoring>>
- this release contains a major reworking and
cleanup of the role system
- 100% backwards compat.
- Role application now restructured into seperate
classes based on type of applicants
- Role summation (combining of more than one role)
is much cleaner and anon-classes are no longer
used in this process
- new Composite role metaclass
- runtime application of roles to instances
is now more efficient and re-uses generated
classes when applicable
- <<New Role composition features>>
- methods can now be excluded from a given role
during composition
- methods can now be aliased to another name (and
still retain the original as well)
- Moose::Util::TypeConstraints::OptimizedConstraints
- added this module (see above)
- Moose::Meta::Class
- fixed the &_process_attribute method to be called
by &add_attribute, so that the API is now correct
- Moose::Meta::Method::Accessor
- fixed bug when passing a list of values to
an accessor would get (incorrectly) ignored.
Thanks to Sartak for finding this ;)
- added tests for this (Sartak again)
- Moose::Meta::Method::Accessor
Moose::Meta::Method::Constructor
Moose::Meta::Attribute
Moose::Meta::TypeConstraint
Moose::Meta::TypeCoercion
- lots of cleanup of such things as:
- generated methods
- type constraint handling
- error handling/messages
(thanks to nothingmuch)
- Moose::Meta::TypeConstraint::Parameterizable
- added this module to support the refactor
in Moose::Meta::TypeConstraint::Parameterized
- Moose::Meta::TypeConstraint::Parameterized
- refactored how these types are handled so they
are more generic and not confined to ArrayRef
and HashRef only
- t/
- shortened some file names for better VMS support (RT #32381)
0.33 2007-12-14
!! Moose now loads 2 x faster !!
!! with new Class::MOP 0.49 !!
++ new oose.pm module to make command line
Moose-ness easier (see POD docs for more)
- Moose::Meta::Class
- Moose::Meta::Role
- several tweaks to take advantage of the
new method map caching in Class::MOP
- Moose::Meta::TypeConstraint::Parameterized
- allow subtypes of ArrayRef and HashRef to
be used as a container (sartak)
- added tests for this
- basic support for coercion to ArrayRef and
HashRef for containers (sartak)
- added tests for this
- Moose::Meta::TypeCoercion
- coercions will now create subtypes as needed
so you can now add coercions to parameterized
types without having to explictly define them
- added tests for this
- Moose::Meta::Method::Accessor
- allow subclasses to decide whether we need
to copy the value into a new variable (sartak)
0.32 2007-12-04
- Moose::Util::TypeConstraints
- fixing how subtype aliases of unions work
they should inherit the parent's coercion
- added tests for this
- you can now define multiple coercions on
a single type at different times instead of
having to do it all in one place
- added tests for this
- Moose::Meta::TypeConstraint
- there is now a default constraint of sub { 1 }
instead of Moose::Util::TypeConstraints setting
this for us
- Moose::Meta::TypeCoercion
- Moose::Meta::TypeCoercion::Union
- added the &has_coercion_for_type and
&add_type_coercions methods to support the
new features above (although you cannot add
more type coercions for Union types)
0.31 2007-11-26
- Moose::Meta::Attribute
- made the +attr syntax handle extending types with
parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
now works if the original foo is an ArrayRef.
- added tests for this.
- delegation now works even if the attribute does not
have a reader method using the get_read_method_ref
method from Class::MOP::Attribute.
- added tests for this
- added docs for this
- Moose::Util::TypeConstraints
- passing no "additional attribute info" to
&find_or_create_type_constraint will no longer
attempt to create an __ANON__ type for you,
instead it will just return undef.
- added docs for this
0.30 2007-11-23
- Moose::Meta::Method::Constructor
-builder related bug in inlined constructor. (groditi)
- Moose::Meta::Method::Accessor
- genereate unnecessary calls to predicates and refactor
code generation for runtime speed (groditi)
- Moose::Util::TypeConstraints
- fix ClassName constraint to introspect symbol table (mst)
- added more tests for this (mst)
- fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
with work correctly.
- added tests for this
- Moose::Cookbook
- adding the link to Recipie 11 (written by Sartak)
- adding test for SYNOPSIS code
- t/
- New tests for builder bug. Upon instantiation, if an
attribute had a builder, no value and was not lazy the
builder default was not getting run, oops. (groditi)
0.29 2007-11-13
- Moose::Meta::Attribute
- Fix error message on missing builder method (groditi)
- Moose::Meta::Method::Accessor
- Fix error message on missing builder method (groditi)
- t/
- Add test to check for the correct error message when
builder method is missing (groditi)
0.28 2007-11-13
- 0.27 packaged incorrectly (groditi)
0.27 2007-11-13
- Moose::Meta::Attribute
- Added support for the new builder option (groditi)
- Added support for lazy_build option (groditi)
- Changed slot initialization for predicate changes (groditi)
- Moose::Meta::Method::Accessor
- Added support for lazy_build option (groditi)
- Fix inline methods to work with corrected predicate
behavior (groditi)
- Moose::Meta::Method::Constructor
- Added support for lazy_build option (groditi)
- t/
- tests for builder and lazy_build (groditi)
- fixing some misc. bits in the docs that
got mentioned on CPAN Forum & perlmonks
- Moose::Meta::Role
- fixed how required methods are handled
when they encounter overriden or modified
methods from a class (thanks to confound).
- added tests for this
- Moose::Util::TypeConstraint
- fixed the type notation parser so that
the | always creates a union and so is
no longer a valid type char (thanks to
konobi, mugwump and #moose for working
this one out.)
- added more tests for this
0.26 2007-09-27
== New Features ==
- Parameterized Types
We now support parameterized collection types, such as:
ArrayRef[Int] # array or integers
HashRef[Object] # a hash with object values
They can also be nested:
ArrayRef[HashRef[RegexpRef]] # an array of hashes with regex values
And work with the type unions as well:
ArrayRef[Int | Str] # array of integers of strings
- Better Framework Extendability
Moose.pm is now "extendable" such that it is now much
easier to extend the framework and add your own keywords
and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
section of the Moose.pm docs.
- Moose Snacks!
In an effort to begin documenting some of the various
details of Moose as well as some common idioms, we have
created Moose::Cookbook::Snacks as a place to find
small (easily digestable) nuggets of Moose code.
====
~ Several doc updates/cleanup thanks to castaway ~
- converted build system to use Module::Install instead of
Module::Build (thanks to jrockway)
- Moose
- added all the meta classes to the immutable list and
set it to inline the accessors
- fix import to allow Sub::Exporter like { into => }
and { into_level => } (perigrin)
- exposed and documented init_meta() to allow better
embedding and extending of Moose (perigrin)
- t/
- complete re-organization of the test suite
- added some new tests as well
- finally re-enabled the Moose::POOP test since
the new version of DBM::Deep now works again
(thanks rob)
- Moose::Meta::Class
- fixed very odd and very nasty recursion bug with
inner/augment (mst)
- added tests for this (eilara)
- Moose::Meta::Attribute
Moose::Meta::Method::Constructor
Moose::Meta::Method::Accessor
- fixed issue with overload::Overloaded getting called
on non-blessed items. (RT #29269)
- added tests for this
- Moose::Meta::Method::Accessor
- fixed issue with generated accessor code making
assumptions about hash based classes (thanks to dexter)
- Moose::Coookbook::Snacks
- these are bits of documentation, not quite as big as
Recipes but which have no clear place in the module docs.
So they are Snacks! (horray for castaway++)
- Moose::Cookbook::Recipe4
- updated it to use the new ArrayRef[MyType] construct
- updated the accompanying test as well
+++ Major Refactor of the Type Constraint system +++
+++ with new features added as well +++
- Moose::Util::TypeConstraint
- no longer uses package variable to keep track of
the type constraints, now uses the an instance of
Moose::Meta::TypeConstraint::Registry to do it
- added more sophisticated type notation parsing
(thanks to mugwump)
- added tests for this
- Moose::Meta::TypeConstraint
- some minor adjustments to make subclassing easier
- added the package_defined_in attribute so that we
can track where the type constraints are created
- Moose::Meta::TypeConstraint::Union
- this is now been refactored to be a subclass of
Moose::Meta::TypeConstraint
- Moose::Meta::TypeCoercion::Union
- this has been added to service the newly refactored
Moose::Meta::TypeConstraint::Union and is itself
a subclass of Moose::Meta::TypeCoercion
- Moose::Meta::TypeConstraint::Parameterized
- added this module (taken from MooseX::AttributeHelpers)
to help construct nested collection types
- added tests for this
- Moose::Meta::TypeConstraint::Registry
- added this class to keep track of type constraints
0.25 2007-08-13
- Moose
- Documentation update to reference Moose::Util::TypeConstraints
under 'isa' in 'has' for how to define a new type
(thanks to shlomif).
- Moose::Meta::Attribute
- required attributes now will no longer accept undef
from the constructor, even if there is a default and lazy
- added tests for this
- default subroutines must return a value which passes the
type constraint
- added tests for this
- Moose::Meta::Attribute
- Moose::Meta::Method::Constructor
- Moose::Meta::Method::Accessor
- type-constraint tests now handle overloaded objects correctly
in the error message
- added tests for this (thanks to EvanCarroll)
- Moose::Meta::TypeConstraint::Union
- added (has_)hand_optimized_constraint to this class so that
it behaves as the regular Moose::Meta::TypeConstraint does.
- Moose::Meta::Role
- large refactoring of this code
- added several more tests
- tests for subtle conflict resolition issues
added, but not currently running
(thanks to kolibre)
- Moose::Cookbook::Recipe7
- added new recipe for augment/inner functionality
(still in progress)
- added test for this
- Moose::Spec::Role
- a formal definition of roles (still in progress)
- Moose::Util
- utilities for easier working with Moose classes
- added tests for these
- Test::Moose
- This contains Moose specific test functions
- added tests for these
0.24 2007-07-03
~ Some doc updates/cleanup ~
- Moose::Meta::Attribute
- added support for roles to be given as parameters
to the 'handles' option.
- added tests and docs for this
- the has '+foo' attribute form now accepts changes to
the lazy option, and the addition of a handles option
(but not changing the handles option)
- added tests and docs for this
- Moose::Meta::Role
- required methods are now fetched using find_method_by_name
so that required methods can come from superclasses
- adjusted tests for this
0.23 2007-06-18
- Moose::Meta::Method::Constructor
- fix inlined constructor for hierarchy with multiple BUILD methods (mst)
- Moose::Meta::Class
- Modify make_immutable to work with the new Class::MOP immutable
mechanism + POD + very basic test (groditi)
- Moose::Meta::Attribute
- Fix handles to use goto() so that caller() comes out properly on
the other side (perigrin)
0.22 2007-05-31
- Moose::Util::TypeConstraints
- fix for prototype undeclared issue when Moose::Util::TypeConstraints
loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
prototypes for functions
- added the ClassName type constraint, this checks for strings
which will respond true to ->isa(UNIVERSAL).
- added tests and docs for this
- subtyping just in name now works correctly by making the
default for where be { 1 }
- added test for this
- Moose::Meta::Method::Accessor
- coerce and lazy now work together correctly, thanks to
merlyn for finding this bug
- tests added for this
- fix reader presedence bug in Moose::Meta::Attribute + tests
- Moose::Object
- Foo->new(undef) now gets ignored, it is assumed you meant to pass
a HASH-ref and missed. This produces better error messages then
having it die cause undef is not a HASH.
- added tests for this
0.21 2007-05-03
- Moose
- added SUPER_SLOT and INNER_SLOT class hashes to support unimport
- modified unimport to remove super and inner along with the rest
- altered unimport tests to handle this
- Moose::Role
- altered super export to populate SUPER_SLOT
- Moose::Meta::Class
- altered augment and override modifier application to use *_SLOT
- modified tests for these to unimport one test class each to test
- Moose::Meta::Role
- fixed issue where custom attribute metaclasses
where not handled correctly in roles
- added tests for this
- Moose::Meta::Class
- fixed issue where extending metaclasses with
roles would blow up. Thanks to Aankhen`` for
finding this insidious error, and it's solution.
~~ lots of spelling and grammer fixes in the docs,
many many thanks to rlb3 and Aankhen for these :)
0.20 2007-04-06
>> I messed up the SKIP logic in one test
so this release is just to fix that.
- Moose
- 'has' now also accepts an ARRAY ref
to create multiple attrs (see docs)
(thanks to konobi for this)
- added tests and docs
0.19 2007-04-05
~~ More documentation updates ~~
- Moose::Util::TypeConstraints
- 'type' now supports messages as well
thanks to phaylon for finding this
- added tests for this
- added &list_all_type_constraints and
&list_all_builtin_type_constraints
functions to facilitate introspection.
- Moose::Meta::Attribute
- fixed regexp 'handles' declarations
to build the list of delegated methods
correctly (and not override important
things like &new) thanks to ashleyb
for finding this
- added tests and docs for this
- added the 'documentation' attributes
so that you can actually document your
attributes and inspect them through the
meta-object.
- added tests and docs for this
- Moose::Meta::Class
- when loading custom attribute metaclasses
it will first look in for the class in the
Moose::Meta::Attribute::Custom::$name, and
then default to just loading $name.
- added tests and docs for this
- Moose::Meta::TypeConstraint
- type constraints now stringify to their names.
- added test for this
- misc.
- added tests to assure we work with Module::Refresh
- added stricter test skip logic in the Moose POOP
test, ask Rob Kinyon why.
- *cough* DBM::Deep 1.0 backwards compatibility sucks *cough* ;)
0.18 2007-03-10
~~ Many, many documentation updates ~~
- misc.
- We now use Class::MOP::load_class to
load all classes.
- added tests to show types and subtypes
working with Declare::Constraints::Simple
and Test::Deep as constraint engines.
0.18_001 2006-11-26
!! You must have Class::MOP 0.37_001 !!
!! for this developer release to work !!
This release was primarily adding the immutable
feature to Moose. An immutable class is one which
you promise not to alter. When you set the class
as immutable it will perform various bits of
memoization and inline certain part of the code
(constructors, destructors and accessors). This
minimizes (and in some cases totally eliminates)
one of Moose's biggest performance hits. This
feature is not on by default, and is 100% optional.
It has several configurable bits as well, so you
can pick and choose to your specific needs.
The changes involved in this were fairly wide and
highly specific, but 100% backwards compatible, so
I am not going to enumerate them here. If you are
truely interested in what was changed, please do
a diff :)
0.17 2006-11-14
- Moose::Meta::Method::Accessor
- bugfix for read-only accessors which
are have a type constraint and lazy.
Thanks to chansen for finding it.
0.16 2006-11-14
++ NOTE ++
There are some speed improvements in this release,
but they are only the begining, so stay tuned.
- Moose::Object
- BUILDALL and DEMOLISHALL no longer get
called unless they actually need to be.
This gave us a signifigant speed boost
for the cases when there is no BUILD or
DEMOLISH method present.
- Moose::Util::TypeConstraints
- Moose::Meta::TypeConstraint
- added an 'optimize_as' option to the
type constraint, which allows for a
hand optimized version of the type
constraint to be used when possible.
- Any internally created type constraints
now provide an optimized version as well.
0.15 2006-11-05
++ NOTE ++
This version of Moose *must* have Class::MOP 0.36 in order
to work correctly. A number of small internal tweaks have
been made in order to be compatible with that release.
- Moose::Util::TypeConstraints
- added &unimport so that you can clean out
your class namespace of these exported
keywords
- Moose::Meta::Class
- fixed minor issue which occasionally
comes up during global destruction
(thanks omega)
- moved Moose::Meta::Method::Overriden into
its own file.
- Moose::Meta::Role
- moved Moose::Meta::Role::Method into
its own file.
- Moose::Meta::Attribute
- changed how we do type checks so that
we reduce the overall cost, but still
retain correctness.
*** API CHANGE ***
- moved accessor generation methods to
Moose::Meta::Method::Accessor to
conform to the API changes from
Class::MOP 0.36
- Moose::Meta::TypeConstraint
- changed how constraints are compiled
so that we do less recursion and more
iteration. This makes the type check
faster :)
- moved Moose::Meta::TypeConstraint::Union
into its own file
- Moose::Meta::Method::Accessor
- created this from methods formerly found in
Moose::Meta::Attribute
- Moose::Meta::Role::Method
- moved this from Moose::Meta::Role
- Moose::Meta::Method::Overriden
- moved this from Moose::Meta::Class
- Moose::Meta::TypeConstraint::Union
- moved this from Moose::Meta::TypeConstraint
0.14 2006-10-09
- Moose::Meta::Attribute
- fixed lazy attributes which were not getting
checked with the type constraint (thanks ashley)
- added tests for this
- removed the over-enthusiastic DWIMery of the
automatic ArrayRef and HashRef defaults, it
broke predicates in an ugly way.
- removed tests for this
0.13 2006-09-30
++ NOTE ++
This version of Moose *must* have Class::MOP 0.35 in order
to work correctly. A number of small internal tweaks have
been made in order to be compatible with that release.
- Moose
- Removed the use of UNIVERSAL::require to be a better
symbol table citizen and remove a dependency
(thanks Adam Kennedy)
**~~ removed experimental & undocumented feature ~~**
- commented out the 'method' and 'self' keywords, see the
comments for more info.
- Moose::Cookbook
- added a FAQ and WTF files to document frequently
asked questions and common problems
- Moose::Util::TypeConstraints
- added GlobRef and FileHandle type constraint
- added tests for this
- Moose::Meta::Attribute
- if your attribute 'isa' ArrayRef of HashRef, and you have
not explicitly set a default, then make the default DWIM.
This will also work for subtypes of ArrayRef and HashRef
as well.
- you can now auto-deref subtypes of ArrayRef or HashRef too.
- new test added for this (thanks to ashley)
- Moose::Meta::Role
- added basic support for runtime role composition
but this is still *highly experimental*, so feedback
is much appreciated :)
- added tests for this
- Moose::Meta::TypeConstraint
- the type constraint now handles the coercion process
through delegation, this is to support the coercion
of unions
- Moose::Meta::TypeConstraint::Union
- it is now possible for coercions to be performed
on a type union
- added tests for this (thanks to konobi)
- Moose::Meta::TypeCoercion
- properly capturing error when type constraint
is not found
- Build.PL
- Scalar::Util 1.18 is bad on Win32, so temporarily
only require version 1.17 for Win32 and cygwin.
(thanks Adam Kennedy)
0.12 2006-09-01
- Moose::Cookbook
- Recipe5 (subtypes & coercion) has been written
- Moose
- fixed "bad meta" error message to be more descriptive
- fixed &unimport to not remove the &inner and &super
keywords because we need to localize them.
- fixed number of spelling/grammer issues, thanks Theory :)
**~~ experimental & undocumented feature ~~**
- added the method and self keywords, they are basically
just sugar, and they may not stay around.
- Moose::Object
- added &dump method to easily Data::Dumper
an object
- Moose::Meta::TypeConstraint
- added the &is_a_type_of method to check both the current
and the subtype of a method (similar to &isa with classes)
- Moose::Meta::Role
- this is now a subclass of Class::MOP::Module, and no longer
creates the _role_meta ugliness of before.
- fixed tests to reflect this change
0.11 2006-07-12
- Moose
- added an &unimport method to remove all the keywords
that Moose will import, simply add 'no Moose' to the
bottom of your class file.
- t/
- fixed some test failures caused by a forgotten test
dependency.
0.10 2006-07-06
- Moose
- improved error message when loading modules so
it is less confusing when you load a role.
- added &calculate_all_roles method to
Moose::Meta::Class and Moose::Meta::Role
NOTE:
This module has been tested against Class::MOP 0.30
but it does not yet utilize the optimizations
it makes available. Stay tuned for that ;)
0.09_03 2006-06-23
++ DEVELOPER RELEASE ++
- Moose
- 'use strict' and 'use warnings' are no longer
needed in Moose classes, Moose itself will
turn them on for you.
- added tests for this
- moved code from exported subs to private methods
in Moose::Meta::Class
- Moose::Role
- as with Moose, strict and warnings are
automatically turned on for you.
- added tests for this
- Moose::Meta::Role
- now handles an edge case for override errors
- added tests for this
- added some more edge case tests
0.09_02 2006-05-16
++ DEVELOPER RELEASE ++
- Moose
- added prototypes to the exported subs
- updated docs
- Moose::Role
- added prototypes to the exported subs
- updated docs
- Moose::Util::TypeConstraints
- cleaned up prototypes for the subs
- updated docs
0.09_01 2006-05-12
++ DEVELOPER RELEASE ++
- This release works in combination with
Class::MOP 0.29_01, it is a developer
release because it uses the a new
instance sub-protocol and a fairly
complete Role implementation. It has
not yet been optimized, so it slower
the the previous CPAN version. This
release also lacks good updated docs,
the official release will have updated docs.
- Moose
- refactored the keyword exports
- 'with' now checks Role validaity and
accepts more than one Role at a time
- 'extends' makes metaclass adjustments as
needed to ensure metaclass compatibility
- Moose::Role
- refactored the keyword exports
- 'with' now checks Role validaity and
accepts more than one Role at a time
- Moose::Util::TypeConstraints
- added the 'enum' keyword for simple
string enumerations which can be used as
type constraints
- see example of usage in t/202_example.t
- Moose::Object
- more careful checking of params to new()
- Moose::Meta::Role
- much work done on the role composition
- many new tests for conflict detection
and composition edge cases
- not enough documentation, I suggest
looking at the tests
- Moose::Meta::Instance
- added new Instance metaclass to support
the new Class::MOP instance protocol
- Moose::Meta::Class
- some small changes to support the new
instance protocol
- some small additions to support Roles
- Moose::Meta::Attribute
- some improvements to the accessor generation code
by nothingmuch
- some small changes to support the new
instance protocol
- (still somewhat) experimental delegation support
with the 'handles' option
- added several tests for this
- no docs for this yet
0.05 2006-04-27
- Moose
- keywords are now exported with Sub::Exporter
thanks to chansen for this commit
- has keyword now takes a 'metaclass' option
to support custom attribute meta-classes
on a per-attribute basis
- added tests for this
- the 'has' keyword not accepts inherited slot
specifications (has '+foo'). This is still an
experimental feature and probably not finished
see t/038_attribute_inherited_slot_specs.t for
more details, or ask about it on #moose
- added tests for this
- Moose::Role
- keywords are now exported with Sub::Exporter
- Moose::Utils::TypeConstraints
- reorganized the type constraint hierarchy, thanks
to nothingmuch and chansen for his help and advice
on this
- added some tests for this
- keywords are now exported with Sub::Exporter
thanks to chansen for this commit
- Moose::Meta::Class
- due to changes in Class::MOP, we had to change
construct_instance (for the better)
- Moose::Meta::Attribute
- due to changes in Class::MOP, we had to add the
initialize_instance_slot method (it's a good thing)
- Moose::Meta::TypeConstraint
- added type constraint unions
- added tests for this
- added the is_subtype_of predicate method
- added tests for this
0.04 2006-04-16
- Moose::Role
- Roles can now consume other roles
- added tests for this
- Roles can specify required methods now with
the requires() keyword
- added tests for this
- Moose::Meta::Role
- ripped out much of it's guts ,.. much cleaner now
- added required methods and correct handling of
them in apply() for both classes and roles
- added tests for this
- no longer adds a does() method to consuming classes
it relys on the one in Moose::Object
- added roles attribute and some methods to support
roles consuming roles
- Moose::Meta::Attribute
- added support for triggers on attributes
- added tests for this
- added support for does option on an attribute
- added tests for this
- Moose::Meta::Class
- added support for attribute triggers in the
object construction
- added tests for this
- Moose
- Moose no longer creates a subtype for your class
if a subtype of the same name already exists, this
should DWIM in 99.9999% of all cases
- Moose::Util::TypeConstraints
- fixed bug where incorrect subtype conflicts were
being reported
- added test for this
- Moose::Object
- this class can now be extended with 'use base' if
you need it, it properly loads the metaclass class now
- added test for this
0.03_02 2006-04-12
- Moose
- you must now explictly use Moose::Util::TypeConstraints
it no longer gets exported for you automatically
- Moose::Object
- new() now accepts hash-refs as well as key/value lists
- added does() method to check for Roles
- added tests for this
- Moose::Meta::Class
- added roles attribute along with the add_role() and
does_role() methods
- added tests for this
- Moose::Meta::Role
- now adds a does() method to consuming classes
which tests the class's hierarchy for roles
- added tests for this
0.03_01 2006-04-10
- Moose::Cookbook
- added new Role recipe (no content yet, only code)
- Moose
- added 'with' keyword for Role support
- added test and docs for this
- fixed subtype quoting bug
- added test for this
- Moose::Role
- Roles for Moose
- added test and docs
- Moose::Util::TypeConstraints
- added the message keyword to add custom
error messages to type constraints
- Moose::Meta::Role
- the meta role to support Moose::Role
- added tests and docs
- Moose::Meta::Class
- moved a number of things from Moose.pm
to here, they should have been here
in the first place
- Moose::Meta::Attribute
- moved the attribute option macros here
instead of putting them in Moose.pm
- Moose::Meta::TypeConstraint
- added the message attributes and the
validate method
- added tests and docs for this
0.03 2006-03-30
- Moose::Cookbook
- added the Moose::Cookbook with 5 recipes,
describing all the stuff Moose can do.
- Moose
- fixed an issue with &extends super class loading
it now captures errors and deals with inline
packages correctly (bug found by mst, solution
stolen from alias)
- added super/override & inner/augment features
- added tests and docs for these
- Moose::Object
- BUILDALL now takes a reference of the %params
that are passed to &new, and passes that to
each BUILD as well.
- Moose::Util::TypeConstraints
- Type constraints now survive runtime reloading
- added test for this
- Moose::Meta::Class
- fixed the way attribute defaults are handled
during instance construction (bug found by chansen)
- Moose::Meta::Attribute
- read-only attributes now actually enforce their
read-only-ness (this corrected in Class::MOP as
well)
0.02 2006-03-21
- Moose
- many more tests, fixing some bugs and
edge cases
- &extends now loads the base module with
UNIVERSAL::require
- added UNIVERSAL::require to the
dependencies list
** API CHANGES **
- each new Moose class will also create
and register a subtype of Object which
correspond to the new Moose class.
- the 'isa' option in &has now only
accepts strings, and will DWIM in
almost all cases
- Moose::Util::TypeConstraints
- added type coercion features
- added tests for this
- added support for this in attributes
and instance construction
** API CHANGES **
- type construction no longer creates a
function, it registers the type instead.
- added several functions to get the
registered types
- Moose::Object
- BUILDALL and DEMOLISHALL were broken
because of a mis-named hash key, Whoops :)
- Moose::Meta::Attribute
- adding support for coercion in the
autogenerated accessors
- Moose::Meta::Class
- adding support for coercion in the
instance construction
- Moose::Meta::TypeConstraint
- Moose::Meta::TypeCoercion
- type constraints and coercions are now
full fledges meta-objects
0.01 2006-03-15
- Moooooooooooooooooose!!!
|