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
|
phpunit (12.3.7-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Markus Staab ]
* Take #[IgnorePhpunitDeprecations] attribute into account for test runner
deprecations
-- David Prévot <taffit@debian.org> Fri, 29 Aug 2025 08:24:28 +0200
phpunit (12.3.6-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Do not set "report_memleaks" which will be deprecated in PHP 8.5
* Prepare release
[ David Prévot ]
* Remove Rules-Requires-Root
-- David Prévot <taffit@debian.org> Thu, 21 Aug 2025 08:15:43 +0200
phpunit (12.3.5-1) experimental; urgency=medium
[ Markus Staab ]
* Print previous exception in Testdox
* Detect premature end of phpunit main process
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 17 Aug 2025 10:09:32 +0200
phpunit (12.3.4-1) experimental; urgency=medium
[ Markus Staab ]
* Relate deprecations from DataProvider with corresponding tests
[ Sebastian Bergmann ]
* Mark a test as errored (instead of skipped) when the file for error_log()
capturing cannot be created
* Prepare release
[ Luke Towers ]
* Fix: preserve tearDown() exceptions when test is skipped
[ Dawid Nowak ]
* Improve output of `--check-php-configuration`
-- David Prévot <taffit@debian.org> Fri, 15 Aug 2025 11:18:58 +0200
phpunit (12.3.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Emit DataProviderMethodFinished event also in case provided set has an
invalid key
* Do not use SplObjectStorage methods that will be deprecated in PHP 8.5
* Prepare release
[ Nicolas PHILIPPE ]
* fix: generate baseline with relative path
[ Markus Staab ]
* Prevent fatal errors not reported
[ David Prévot ]
* Update exclusions for phpab
-- David Prévot <taffit@debian.org> Tue, 12 Aug 2025 11:00:52 +0200
phpunit (12.3.0-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update required files for test
-- David Prévot <taffit@debian.org> Sun, 03 Aug 2025 19:57:55 +0200
phpunit (12.2.7-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 14 Jul 2025 08:35:37 +0200
phpunit (12.2.6-1) experimental; urgency=medium
[ Kuba Werłos ]
* Fix test with data provider and dependency which does not return value
[ Sebastian Bergmann ]
* Prepare release
[ Grégoire Paris ]
* Allow named arguments with InvocationStubber::with()
-- David Prévot <taffit@debian.org> Sun, 06 Jul 2025 06:46:00 +0200
phpunit (12.2.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Do not include information about the Git repository in the Open Test
Reporting XML format by default
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 27 Jun 2025 08:22:29 +0200
phpunit (12.2.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Update dependencies
* Implement --do-not-report-useless-tests CLI option to replace
--dont-report-useless-tests
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 23 Jun 2025 08:09:45 +0200
phpunit (12.2.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Use Exporter::shortenedRecursiveExport() for event-related value objects
* Prepare release
[ Kuba Werłos ]
* Fix saving information about passed tests
-- David Prévot <taffit@debian.org> Tue, 17 Jun 2025 08:29:00 +0200
phpunit (12.2.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Update dependencies
* Prepare release
[ David Prévot ]
* Update exclusions for phpab
-- David Prévot <taffit@debian.org> Mon, 09 Jun 2025 07:19:18 +0200
phpunit (12.1.6-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Update dependencies
* Prepare release
[ leon.schaub ]
* Set default Clover coverage project name
[ Kuba Werłos ]
* Improve the error message when `createStubForIntersectionOfInterfaces`
is called with a class
-- David Prévot <taffit@debian.org> Thu, 22 May 2025 18:41:58 +0200
phpunit (12.1.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Sebastian Feldmann ]
* Revert placeholder diff improvement
-- David Prévot <taffit@debian.org> Sun, 11 May 2025 08:59:05 +0200
phpunit (12.1.4-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Implement configuration options for displaying details on all issues and
failing on all issues
-- David Prévot <taffit@debian.org> Sat, 03 May 2025 07:33:56 +0200
phpunit (12.1.3-1) experimental; urgency=medium
[ Markus Staab ]
* Fix error_log output not displayed in failed test cases
[ Sebastian Bergmann ]
* Do not use the real size of memory allocated from the operating system as
this is grown by PHP's memory manager in chunks that are so large that
small(er) increases in peak memory usage cannot be seen
* Reset the peak memory usage returned by memory_get_peak_usage() before the
Test\Prepared event is emitted so that (memory usage at Test\Finished -
memory usage at Test\Prepared) is the memory usage of the test
* Use peak memory usage when representing Telemetry\Info as string
* Do not emit "Before Test Method Errored" event when a test is skipped in a
"before test" method
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 25 Apr 2025 07:59:22 +0200
phpunit (12.1.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Make TestCase::runTest() method private
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 09 Apr 2025 07:50:12 +0200
phpunit (12.1.0-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Start development of PHPUnit 12.1
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 06 Apr 2025 11:43:41 +0200
phpunit (12.0.10-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Revert "Trigger warning when code coverage analysis is performed
and no cache directory is configured"
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 25 Mar 2025 07:22:49 +0100
phpunit (12.0.9-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 19 Mar 2025 19:59:12 +0100
phpunit (12.0.8-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Trigger warning when code coverage analysis is performed and no cache
directory is configured
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 19 Mar 2025 08:29:43 +0100
phpunit (12.0.7-2) experimental; urgency=medium
* Revert "Ship php-staabm-side-effects-detector in NEW processing"
-- David Prévot <taffit@debian.org> Sun, 16 Mar 2025 12:41:48 +0100
phpunit (12.0.7-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.7.2
-- David Prévot <taffit@debian.org> Fri, 07 Mar 2025 09:11:03 +0100
phpunit (12.0.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 27 Feb 2025 13:23:58 +0100
phpunit (12.0.4-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 23 Feb 2025 12:56:52 +0100
phpunit (12.0.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Do not emit a Test\Passed event in addition to a Test\Failed or
Test\Errored event when an assertion failure or an unexpected exception
is triggered in an after-test method
* Emit a TestSuite\Finished event when a before-first-test method errors
* Emit Test\PreparationFailed event when an unexpected exception is
triggered in a before-test method
* Declare TestCase::__construct() to be final
* Prepare release
[ David Prévot ]
* Use recent php-codecoverage for tests
-- David Prévot <taffit@debian.org> Wed, 19 Feb 2025 07:32:03 +0100
phpunit (12.0.2-1) experimental; urgency=medium
* Upload new major to experimental
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Rename DEP-8 patch
* Drop php-soap
* Drop phpunit-code-unit
* Update required files for phpab
* Update debian/clean
* Exclude a test currently failing
-- David Prévot <taffit@debian.org> Sat, 08 Feb 2025 20:26:07 +0100
phpunit (11.5.6-1) unstable; urgency=medium
[ Daniel Leech ]
* Improve source map performance for directories with same path
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 03 Feb 2025 13:21:24 +0100
phpunit (11.5.5-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Revert deprecation of targeting traits
* Do not skip execution of test that depends on a test that is larger than
itself
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 30 Jan 2025 06:59:28 +0100
phpunit (11.5.3-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Bump copyright year
* Implement missing events for errors in hook methods
* Emit Test\AfterLastTestMethodCalled, Test\AfterLastTestMethodErrored,
and Test\AfterLastTestMethodFinished events when an after-last-test
method errors
* Prepare release
[ David Prévot ]
* Update copyright (years)
-- David Prévot <taffit@debian.org> Tue, 14 Jan 2025 08:24:19 +0100
phpunit (11.5.2-4) unstable; urgency=medium
* Source-only upload for testing migration
-- David Prévot <taffit@debian.org> Fri, 10 Jan 2025 12:06:29 +0100
phpunit (11.5.2-3) unstable; urgency=medium
* Upload to unstable
-- David Prévot <taffit@debian.org> Fri, 10 Jan 2025 09:18:54 +0100
phpunit (11.5.2-2) experimental; urgency=medium
* Ship php-staabm-side-effects-detector in NEW processing
-- David Prévot <taffit@debian.org> Fri, 27 Dec 2024 19:51:41 +0100
phpunit (11.5.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Implement TestRunner\ChildProcessStarted and
TestRunner\ChildProcessFinished events
* Prepare release
[ Markus Staab ]
* Inline SKIPIF evaluation without side-effects
* Inline CLEAN evaluation without main-process pollution
[ David Prévot ]
* Adapt to new php-staabm-side-effects-detector dependency
* Versioned phpunit-type build-dependency
-- David Prévot <taffit@debian.org> Wed, 25 Dec 2024 15:23:10 +0100
phpunit (11.4.4-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update exclusions for phpab
-- David Prévot <taffit@debian.org> Sun, 01 Dec 2024 08:18:04 +0100
phpunit (11.4.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Sem Koolen ]
* improved parameter names for asserts
[ Ilia Smirnov ]
* Remove empty lines between teamcity events
[ David Prévot ]
* Update exclusions for phpab
-- David Prévot <taffit@debian.org> Sat, 02 Nov 2024 11:39:59 +0100
phpunit (11.4.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Christian Flothmann ]
* fix typo in exception message
[ Markus Staab ]
* Disable xdebug in subprocess when inactive
-- David Prévot <taffit@debian.org> Wed, 23 Oct 2024 07:06:45 +0200
phpunit (11.4.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Nicolas PHILIPPE ]
* Bootstrap extensions before building test suite
* Seal EventFacade before building the test suite
* Filter deprecationTriggers when displaying deprecation details
* #[RequiresPhpunitExtension] attribute
[ David Prévot ]
* Update exclusions for phpab
-- David Prévot <taffit@debian.org> Wed, 09 Oct 2024 15:58:38 +0200
phpunit (11.3.6-1) experimental; urgency=medium
[ Kuba Werłos ]
* Do not trim testdox text when it contains `$` character
[ Sebastian Bergmann ]
* Do not try to instantiate attribute classes that do not exist
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 20 Sep 2024 07:57:54 +0200
phpunit (11.3.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Update expectation after update of sebastian/comparator
* Revert "add name property to testsuites element in JunitXmlLogger"
* Prepare release
[ Jamie ]
* convert callback callable to closure for variadic reflection
-- David Prévot <taffit@debian.org> Sat, 14 Sep 2024 09:40:04 +0200
phpunit (11.3.4-1) experimental; urgency=medium
[ Kuba Werłos ]
* Fix testdox output containing dollar signs in the value from data provider
* Do not fail with "An error occurred inside PHPUnit" when data provider key
is not int or string
* Fix variadic function as callback
[ Sebastian Bergmann ]
* Prepare release
[ Eric Stern ]
* Fix JSON object order comparison with numeric keys
-- David Prévot <taffit@debian.org> Tue, 10 Sep 2024 08:47:15 +0200
phpunit (11.3.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Implement options for controlling whether details on PHPUnit deprecations
should be displayed
* Prepare release
[ joseph-sentry ]
* add name property to testsuites element in JunitXmlLogger
-- David Prévot <taffit@debian.org> Fri, 06 Sep 2024 08:03:48 +0200
phpunit (11.3.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Improve description of objects (inspired by #5912)
* Update dependencies
* Update tests after sebastian/comparator update (previous version was
hiding problems with wrong expectations)
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 15 Aug 2024 08:47:03 +0200
phpunit (11.3.0-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Initial work on optionally repeating TestDox output for non-successful
tests after the regular TestDox output
* Prepare release
[ soyuka ]
* Ignore suppression when generating baseline
[ David Prévot ]
* Update exclusions for phpab
-- David Prévot <taffit@debian.org> Sat, 03 Aug 2024 14:16:29 +0900
phpunit (11.2.8-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Allow --coverage-filter CLI option to be used multiple times again
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 22 Jul 2024 20:26:59 +0900
phpunit (11.2.7-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Bump dependencies (so that users that install using Composer's
--prefer-lowest CLI option also get recent versions)
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 14 Jul 2024 11:37:52 +0200
phpunit (11.2.6-1) experimental; urgency=medium
[ Gabriel Birke ]
* Add hints to CLI parameter deprecation messages
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 06 Jul 2024 10:59:25 +0200
phpunit (11.2.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Markus Staab ]
* Don't calculate unnecessary information in `debug_backtrace()`
[ Maarten Scholder ]
* Refactor unsetting tests during TestSuite::run, for even faster destruction
of instances.
[ Michael Voříšek ]
* Use array_pop instead of slow array_shift
-- David Prévot <taffit@debian.org> Sun, 23 Jun 2024 00:21:46 +0200
phpunit (11.2.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Start development of PHPUnit 11.2
* Consider #[CoversTrait] attribute for risky test check
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 18 Jun 2024 08:47:30 +0200
phpunit (11.1.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Kuba Werłos ]
* Do not crash when test run in child process ends unexpectedly
and `--log-junit` is used
-- David Prévot <taffit@debian.org> Sat, 27 Apr 2024 18:46:01 +0200
phpunit (11.1.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Markus Staab ]
* Fix "PHP Warning: Uninitialized string offset 0"
[ David Prévot ]
* Update Standards-Version to 4.7.0
-- David Prévot <taffit@debian.org> Mon, 15 Apr 2024 07:42:31 +0200
phpunit (11.1.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Adapt phpabtpl calls to updated composer.json
* Update exclusions for phpab
-- David Prévot <taffit@debian.org> Sun, 07 Apr 2024 16:18:23 +0200
phpunit (11.0.9-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Markus Staab ]
* Do not use a shell in proc_open if not really needed
* Cleanup process handling after dropping temp-file handling
-- David Prévot <taffit@debian.org> Fri, 29 Mar 2024 08:32:26 +0000
phpunit (11.0.8-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 24 Mar 2024 12:25:40 +0100
phpunit (11.0.6-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Markus Staab ]
* Prevent duplicate prettify in TestDoxBuilder
* Micro optimize NamePrettifier->prettifyTestMethodName()
* Micro optimize TestRunner->runTestWithTimeout()
* Save call to Telemetry\System->snapshot().
* Prevent file IO when not strictly necessary
* Prevent unnecessary ExecutionOrderDependency->getTarget() call
* Simplify NamePrettifier->prettifyTestMethodName()
[ jrfnl ]
* assertArrayIsIdenticalToArrayOnlyConsideringListOfKeys(): bug fix
-- David Prévot <taffit@debian.org> Wed, 13 Mar 2024 08:17:27 +0100
phpunit (11.0.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Fix --exclude-filter CLI option
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 09 Mar 2024 16:31:24 +0100
phpunit (11.0.4-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ jrfnl ]
* assertArrayIs*ToArrayOnlyConsideringListOfKeys(): bug fix - better respect
PHP native array key handling
[ David Prévot ]
* Force system dependencies loading
* Use system path for tests
-- David Prévot <taffit@debian.org> Fri, 01 Mar 2024 12:46:38 +0100
phpunit (11.0.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Do not print resource usage information when --debug is used
* Also emit 'Test code or tested code did not remove its own error handlers'
Test\ConsideredRisky event when the 'Test code or tested code did not
remove its own exception handlers' Test\ConsideredRisky event is triggered
* Do not consider tests that do not unregister their error handlers or
exception handlers as risky when they are run in an isolated process
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 13 Feb 2024 21:59:39 +0100
phpunit (11.0.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 05 Feb 2024 00:40:01 +0100
phpunit (11.0.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Start development of PHPUnit 11.0
* Prepare release
[ David Prévot ]
* Update required files for tests
* Drop phpunit-recursion-context build-dependency
-- David Prévot <taffit@debian.org> Sun, 04 Feb 2024 15:23:38 +0100
phpunit (10.5.9-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 23 Jan 2024 08:31:37 +0100
phpunit (10.5.8-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Try to validate configuration file against all known schema definitions
before attempting migration
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 21 Jan 2024 19:24:22 +0100
phpunit (10.5.7-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 17 Jan 2024 19:35:24 +0100
phpunit (10.5.6-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Only consider test outcome (errored, failed, incomplete, skipped, or passed)
for TestDox format and display details about test issues, when requested,
using the default result printer.
* Bump copyright year
* Bring back --debug CLI option, this time as an alias for
"--no-output --log-events-text php://stdout"
* Prepare release
[ Marko Petrovic ]
* resolve both relative and absolute paths
* fix issue for variadic parameters
[ David Prévot ]
* Update copyright (years)
-- David Prévot <taffit@debian.org> Sun, 14 Jan 2024 10:48:25 +0100
phpunit (10.5.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Michael Voříšek ]
* Fix ErrorHandler to not silent error_get_last() results
* handle E_USER_ERROR but abort further test execution
[ i582 ]
* fixed teamcity output for `teamcity[testStarted` meta message
-- David Prévot <taffit@debian.org> Fri, 29 Dec 2023 12:21:49 +0100
phpunit (10.5.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update copyright for embedded scripts
-- David Prévot <taffit@debian.org> Thu, 14 Dec 2023 09:31:29 +0100
phpunit (10.5.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 09 Dec 2023 11:12:08 +0100
phpunit (10.5.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Revert deprecation of MockBuilder::disableAutoReturnValueGeneration()
and MockBuilder::enableAutoReturnValueGeneration()
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 05 Dec 2023 07:55:09 +0100
phpunit (10.4.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 30 Oct 2023 08:13:24 +0100
phpunit (10.4.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 10 Oct 2023 13:05:16 +0200
phpunit (10.4.0-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Start development of PHPUnit 10.4
* Prepare release
[ David Prévot ]
* Update exclusions for phpab
-- David Prévot <taffit@debian.org> Fri, 06 Oct 2023 13:41:20 +0200
phpunit (10.3.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* The child processes used for process isolation now use temporary files to
communicate their result to the parent process
* Sync with changes in sebastian/exporter
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 20 Sep 2023 08:55:38 +0530
phpunit (10.3.4-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Filippo Tessarotto ]
* CodeCoverage: process PHP report as first in list to avoid serializing
cache data
-- David Prévot <taffit@debian.org> Tue, 12 Sep 2023 22:15:16 +0530
phpunit (10.3.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Add list of deprecated functionality
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 06 Sep 2023 22:06:42 +0530
phpunit (10.3.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Revert "Soft-deprecate MockBuilder::setMockClassName() for #5444"
* Revert "Soft-deprecate willReturnOnConsecutiveCalls() for #5425"
* Revert soft-deprecation of TestCase::throwException()
* Add test
* Document deprecations made in PHPUnit 10.3.0
* Document that TestCase::throwException(),
InvocationMocker::willReturnOnConsecutiveCalls(), and
MockBuilder::setMockClassName() are no longer deprecated
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 20 Aug 2023 10:43:55 +0200
phpunit (10.3.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Start development of PHPUnit 10.3
* Prepare release
[ David Prévot ]
* Adapt phpabtpl call to updated composer.json
-- David Prévot <taffit@debian.org> Sat, 05 Aug 2023 10:53:16 +0200
phpunit (10.2.6-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 20 Jul 2023 07:50:06 +0200
phpunit (10.2.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 16 Jul 2023 11:30:12 +0200
phpunit (10.2.4-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Fix --warm-coverage-cache CLI option
* No longer accept -v (it did not have an effect anymore since PHPUnit 10.0.0)
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 13 Jul 2023 07:47:50 +0200
phpunit (10.2.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Nicolas Grekas ]
* Fix XSD to allow empty <extensions> tag
-- David Prévot <taffit@debian.org> Sat, 01 Jul 2023 16:25:45 +0200
phpunit (10.2.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 11 Jun 2023 23:25:18 +0200
phpunit (10.2.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Do not emit events for suppressed errors in PHPUnit's own code
(or code of its dependencies)
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 05 Jun 2023 08:09:29 +0200
phpunit (10.2.0-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Start development of PHPUnit 10.2
* Prepare release
[ David Prévot ]
* Exclude some test files for phpab
-- David Prévot <taffit@debian.org> Fri, 02 Jun 2023 08:06:19 +0200
phpunit (10.1.3-1) experimental; urgency=medium
[ Luke Kuzmish ]
* add distinct messages for output buffering level mismatch
[ Sebastian Bergmann ]
* Prepare release
[ Paweł Niedzielski ]
* Add stack trace for previous exceptions to bootstrap error message
-- David Prévot <taffit@debian.org> Fri, 12 May 2023 12:57:58 +0200
phpunit (10.1.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Implement PHPUnit\Event\Telemetry\Info::garbageCollectorStatus()
* Implement PHPUnit\Runner\Extension\Facade::replaceOutput() and
PHPUnit\Runner\Extension\Facade::replacesOutput() to allow
extensions to disable event more default output
* Delete PHPUnit 8.5 ChangeLog
* Delete PHPUnit 9.6 ChangeLog
* Delete PHPUnit 10.0 ChangeLog
* phpunit/php-code-coverage 10.1.0 has been released
* Do not consider a test as risky when it is expected to not perform
assertions
* DoesNotPerformAssertions should also be supported on the class-level
* Prepare release
[ David Prévot ]
* Update excluded files for phpab
* Bump php-codecoverage version
* Add required file for tests
-- David Prévot <taffit@debian.org> Sat, 22 Apr 2023 16:59:16 +0200
phpunit (10.0.19-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 29 Mar 2023 08:01:58 +0200
phpunit (10.0.18-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Filippo Tessarotto ]
* Register Facade Subscribers where state is already global
-- David Prévot <taffit@debian.org> Fri, 24 Mar 2023 13:27:58 +0100
phpunit (10.0.16-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ jrfnl ]
* StringContains: bug fix for ignoring line endings
[ David Prévot ]
* Add another exclusion for phpab
-- David Prévot <taffit@debian.org> Tue, 14 Mar 2023 00:12:36 +0100
phpunit (10.0.15-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Update expectation
* TestDox HTML improvements
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 09 Mar 2023 19:08:29 +0100
phpunit (10.0.14-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Emit complete Test\AssertionSucceeded event
* Only emit Test\AssertionSucceeded and Test\AssertionFailed events when they
have subscribers
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 04 Mar 2023 10:03:19 +0100
phpunit (10.0.13-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 28 Feb 2023 01:09:27 +0100
phpunit (10.0.12-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Allow values of other types than array to be passed to assertIsList()
* Prepare release
[ Filippo Tessarotto ]
* [#5188] Fix JunitXmlLogger handling of errors on unprepared tests
[ David Prévot ]
* Display skipped tests
-- David Prévot <taffit@debian.org> Sun, 26 Feb 2023 09:24:02 +0100
phpunit (10.0.11-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Skip this test when assert.exception and zend.assertions are not
configured as required
* Prepare release
[ Filippo Tessarotto ]
* Fix Code Coverage collection in --process-isolation
[ David Prévot ]
* Drop patch not needed anymore
-- David Prévot <taffit@debian.org> Tue, 21 Feb 2023 07:59:59 +0100
phpunit (10.0.9-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ John Blackbourn ]
* Detail deprecations for 9.6.1 in the changelog
[ David Prévot ]
* Skip test currently failing
* Drop <!nocheck> helpers: packages are needed for phpabtpl
-- David Prévot <taffit@debian.org> Sun, 19 Feb 2023 09:09:29 +0100
phpunit (10.0.7-1) experimental; urgency=medium
* Upload new major version to experimental
[ Sebastian Bergmann ]
* Depend on sebastian/code-unit ^2.0
* Depend on phpunit/php-code-coverage ^10.0
* Drop support for PHP 8.0
* Add note about PHPDBG and Xdebug 2
* Prepare release
[ David Prévot ]
* Revert "Track version 9 for now (Bookworm?)"
* Refresh patches
* Update build-dependencies
* Update excluded files for phpab
-- David Prévot <taffit@debian.org> Fri, 10 Feb 2023 13:45:32 +0100
phpunit (9.6.0-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Track version 9 for now (Bookworm?)
-- David Prévot <taffit@debian.org> Fri, 03 Feb 2023 15:32:37 +0100
phpunit (9.5.28-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Bump copyright year
* Prepare release
[ Alexander M. Turek ]
* Allow doctrine/instantiator 2
[ David Prévot ]
* Set upstream metadata fields: Security-Contact.
* Update standards version to 4.6.2, no changes needed.
* Update copyright (years)
-- David Prévot <taffit@debian.org> Mon, 16 Jan 2023 07:48:20 +0100
phpunit (9.5.27-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Michał Jusięga ]
* Implement logic to blocks readonly classes to be doubled.
-- David Prévot <taffit@debian.org> Sun, 11 Dec 2022 19:09:43 +0100
phpunit (9.5.26-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 01 Nov 2022 08:04:22 +0100
phpunit (9.5.25-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Drop patches not needed anymore
* Update license
-- David Prévot <taffit@debian.org> Fri, 30 Sep 2022 16:51:12 +0200
phpunit (9.5.24-3) unstable; urgency=medium
* Fix lowest deps for phpunit-{exporter,comparator}
-- David Prévot <taffit@debian.org> Tue, 20 Sep 2022 01:46:44 +0200
phpunit (9.5.24-2) unstable; urgency=medium
* Adapt precision for recent phpunit-comparator (Closes: #1020119)
-- David Prévot <taffit@debian.org> Sun, 18 Sep 2022 23:32:44 +0200
phpunit (9.5.24-1) unstable; urgency=medium
[ Michael Voříšek ]
* Fix memory leak in ExceptionWrapper
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 30 Aug 2022 13:32:13 +0200
phpunit (9.5.23-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Drop now useless debian/pkg-php-tools-* entries
* Drop php-phpspec-prophecy* (build-)dependencies
* Build-depend on phpunit-comparator
* Workaround test issue during build
* Trim trailing whitespace
-- David Prévot <taffit@debian.org> Wed, 24 Aug 2022 08:02:09 +0200
phpunit (9.5.21-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Let's see whether we really/still need PDO
[ David Prévot ]
* Drop php-sqlite3, unused in tests
* Don’t use php-xdebug
-- David Prévot <taffit@debian.org> Mon, 20 Jun 2022 16:56:22 +0200
phpunit (9.5.20-3) unstable; urgency=medium
* Source only upload
-- David Prévot <taffit@debian.org> Thu, 26 May 2022 18:48:20 +0200
phpunit (9.5.20-2) unstable; urgency=medium
* Upload to unstable
-- David Prévot <taffit@debian.org> Thu, 26 May 2022 18:40:24 +0200
phpunit (9.5.20-1) experimental; urgency=medium
* Upload version depending on new phpunit-type to experimental
[ Sebastian Bergmann ]
* Depend on sebastian/type ^3.0
* Prepare release
[ David Prévot ]
* Update tests files paths
* Build-depend on recent phpunit-type
* Update Standards-Version to 4.6.1
-- David Prévot <taffit@debian.org> Mon, 23 May 2022 22:55:02 +0200
phpunit (9.5.16-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Revert sync with API change in (now yanked) phpunit/php-code-coverage 9.2.12
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 05 Mar 2022 15:43:37 +0100
phpunit (9.5.14-1) unstable; urgency=medium
[ Marijn van Wezel ]
* Use predefined PHP float epsilon
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 19 Feb 2022 15:08:53 -0400
phpunit (9.5.13-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 24 Jan 2022 09:30:00 -0400
phpunit (9.5.12-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Bump copyright year
* Update documentation for TestListener deprecation
* Document that the Hook interfaces will be removed in PHPUnit 10
* Prepare release
[ Stefano Arlandini ]
* Fix access to optional array key when using `debug_backtrace()` function
[ Andrii Kasian ]
* ISSUE-4798: Memory leaks in TestSuite class
[ David Prévot ]
* Update copyright (years)
-- David Prévot <taffit@debian.org> Fri, 21 Jan 2022 08:35:03 -0400
phpunit (9.5.11-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* d/control: Drop versioned dependencies satisfied in stable
* Drop unnecessary debian/pkg-php-tools-* entries
-- David Prévot <taffit@debian.org> Sat, 25 Dec 2021 07:58:39 -0400
phpunit (9.5.10-1) unstable; urgency=medium
* Upload to unstable now that Bullseye is released
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Drop patch part not needed anymore
* Drop reference to removed file
* Update standards version to 4.6.0, no changes needed
* Generate phpabtpl at build time
-- David Prévot <taffit@debian.org> Thu, 07 Oct 2021 14:35:57 -0400
phpunit (9.5.7-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Use dh-sequence-phpcomposer instead of pkg-php-tools
-- David Prévot <taffit@debian.org> Tue, 20 Jul 2021 08:08:01 +0200
phpunit (9.5.6-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 28 Jun 2021 05:32:45 +0200
phpunit (9.5.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Refactor test result cache persistence to not rely on
serialize() and unserialize()
* Prepare release
[ David Prévot ]
* Force tests/bootstrap.php to use vendor/autoload.php
-- David Prévot <taffit@debian.org> Fri, 18 Jun 2021 09:15:01 -0400
phpunit (9.5.4-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 24 Mar 2021 07:25:00 -0400
phpunit (9.5.3-1) experimental; urgency=medium
* Upload to experimental during the freeze
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Install /u/s/p/{autoloaders,overrides} files
-- David Prévot <taffit@debian.org> Thu, 18 Mar 2021 21:13:32 -0400
phpunit (9.5.2-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Simplify gbp import-orig workflow
* Verify upstream signed tag on import
-- David Prévot <taffit@debian.org> Wed, 03 Feb 2021 14:03:03 -0400
phpunit (9.5.1-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update copyright (years)
-- David Prévot <taffit@debian.org> Mon, 18 Jan 2021 13:38:59 -0400
phpunit (9.5.0-5) unstable; urgency=medium
* Add anthor break, against composer
-- David Prévot <taffit@debian.org> Fri, 01 Jan 2021 09:22:41 -0400
phpunit (9.5.0-4) unstable; urgency=medium
* Explicit breaks to avoid failing autopkgtest.
Declare explicit breaks against older version of packages that are fixed
in unstable and should migrate in sync with PHPUnit 9. This should allow
the whole PHPUnit 9 stack to migrate.
-- David Prévot <taffit@debian.org> Mon, 28 Dec 2020 10:12:59 -0400
phpunit (9.5.0-3) unstable; urgency=medium
* Source upload now that everything is in place, for real this time
-- David Prévot <taffit@debian.org> Sun, 20 Dec 2020 22:40:02 -0400
phpunit (9.5.0-2) unstable; urgency=medium
* Source upload now that everything is in place
-- David Prévot <taffit@debian.org> Sun, 20 Dec 2020 17:25:57 -0400
phpunit (9.5.0-2~stage1) unstable; urgency=medium
* Upload to unstable in sync with PHPUnit 9 stack
-- David Prévot <taffit@debian.org> Sun, 20 Dec 2020 15:40:57 -0400
phpunit (9.5.0-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update watch file format version to 4.
* Update Standards-Version to 4.5.1
-- David Prévot <taffit@debian.org> Thu, 10 Dec 2020 10:46:18 -0400
phpunit (9.4.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 22 Oct 2020 13:27:56 -0400
phpunit (9.4.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 14 Oct 2020 15:26:21 -0400
phpunit (9.4.0-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 04 Oct 2020 11:24:04 -0400
phpunit (9.3.11-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 26 Sep 2020 21:54:04 -0400
phpunit (9.3.10-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Fix help2man call to match new output
* Fix debian/clean to match cacheResultFile
* Rename main branch to debian/latest (DEP-14)
* Extend clean up (.phpunit.result.cache)
-- David Prévot <taffit@debian.org> Mon, 14 Sep 2020 16:38:43 -0400
phpunit (9.3.8-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Move help for --no-logging option to logging section
* Depend on sebastian/cli-parser
* Prepare release
[ David Prévot ]
* Still install phpunit.xsd
* Adapt packaging to new phpunit-cli-parser dependency
-- David Prévot <taffit@debian.org> Sat, 29 Aug 2020 10:32:06 -0400
phpunit (9.3.7-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Exclude more class for homemade test autoload.php
-- David Prévot <taffit@debian.org> Mon, 17 Aug 2020 13:42:59 -0400
phpunit (9.3.0-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Install schema instead of phpunit.xsd
* Build-Depend on recent php-codecoverage
-- David Prévot <taffit@debian.org> Fri, 07 Aug 2020 11:32:49 +0200
phpunit (9.2.6-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Exclude more class for homemade test autoload.php
-- David Prévot <taffit@debian.org> Tue, 14 Jul 2020 09:14:27 -0400
phpunit (9.2.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 28 Jun 2020 11:44:34 -1000
phpunit (9.2.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 10 Jun 2020 15:22:39 -1000
phpunit (9.2.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Exclude more class for homemade test autoload.php
* Build-Depend on recent php-timer
-- David Prévot <taffit@debian.org> Fri, 05 Jun 2020 17:44:41 -1000
phpunit (9.1.5-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Ignore tests etc. from archive exports
* Prepare release
[ David Prévot ]
* Document gbp import-ref usage
* Use debhelper-compat 13
* Simplify override_dh_auto_test
* Set Rules-Requires-Root to no
* Build-Depend on php-phpspec-prophecy-phpunit
* Factorise test handling
* Add phpunit-code-unit to pkg-php-tools-overrides
* Remove flaky/useless tests
-- David Prévot <taffit@debian.org> Sun, 31 May 2020 07:42:22 -1000
phpunit (9.1.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Add phpunit-code-unit (build-)dependency
-- David Prévot <taffit@debian.org> Sun, 26 Apr 2020 08:40:27 -1000
phpunit (9.0.1-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Andrius Merkys ]
* Default cache location to current directory (Closes: #951258)
-- David Prévot <taffit@debian.org> Sun, 23 Feb 2020 11:39:37 -1000
phpunit (9.0.0-1) experimental; urgency=medium
* Upload new version 9 to experimental
[ Sebastian Bergmann ]
* Bump copyright year
* Prepare release
[ David Prévot ]
* Update Autoload.php to new dependency and Functions.php
* Update build-dependencies
* Update Standards-Version to 4.5.0
* Update copyright (years)
* Wrap long lines in changelog entries: 7.1.5-1.
-- David Prévot <taffit@debian.org> Fri, 07 Feb 2020 23:28:24 -1000
phpunit (8.5.2-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Delete eval-stdin.php
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 10 Jan 2020 01:09:16 +1300
phpunit (8.5.1-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Set upstream metadata fields: Bug-Database, Repository, Bug-Submit
-- David Prévot <taffit@debian.org> Sat, 28 Dec 2019 10:04:44 +1100
phpunit (8.5.0-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Start development of PHPUnit 8.5
* Prepare release
[ David Prévot ]
* Set upstream metadata fields: Repository-Browse.
-- David Prévot <taffit@debian.org> Fri, 06 Dec 2019 15:52:30 -1000
phpunit (8.4.3-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Exclude duplicate test file from autoload
* Extend cleanup
-- David Prévot <taffit@debian.org> Fri, 08 Nov 2019 18:56:46 -1000
phpunit (8.4.2-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Exclude duplicate test file from autoload
-- David Prévot <taffit@debian.org> Thu, 31 Oct 2019 00:29:04 -1000
phpunit (8.4.1-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 07 Oct 2019 17:33:33 -1000
phpunit (8.4.0-2) unstable; urgency=medium
* Install phpunit.xsd in /usr/share/php/data/PHPUnit
* Extend d/clean
-- David Prévot <taffit@debian.org> Sun, 06 Oct 2019 12:46:13 -1000
phpunit (8.4.0-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Set upstream metadata fields: Repository.
* Drop versioned dependency satisfied in stable
* Drop reference to package not part of stable
* Update Standards-Version to 4.4.1
-- David Prévot <taffit@debian.org> Sat, 05 Oct 2019 17:04:51 -1000
phpunit (8.3.5-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 16 Sep 2019 18:40:06 -1000
phpunit (8.3.4-2) unstable; urgency=medium
* Upload to unstable now that all dependencies are available
* Drop phpunit-dbunit reference
* Adapt to php-invoker new install path
* Remove obsolete fields Name, Contact from debian/upstream/metadata.
-- David Prévot <taffit@debian.org> Fri, 13 Sep 2019 15:12:26 -1000
phpunit (8.3.4-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Delete old ChangeLog files
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 10 Aug 2019 21:34:18 -1000
phpunit (8.3.3-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 05 Aug 2019 08:56:37 -0400
phpunit (8.3.2-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Set upstream metadata fields: Contact, Name.
* Add self to Uploaders
-- David Prévot <taffit@debian.org> Fri, 02 Aug 2019 16:15:37 -0400
phpunit (8.2.5-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.4.0
-- David Prévot <taffit@debian.org> Tue, 16 Jul 2019 07:13:58 -0300
phpunit (8.2.4-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 03 Jul 2019 14:57:31 -1000
phpunit (8.2.3-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 23 Jun 2019 16:37:30 -1000
phpunit (8.2.2-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Adapt package to new phpunit-type dependency
* Update phpunit-environment lower bound
-- David Prévot <taffit@debian.org> Mon, 17 Jun 2019 14:13:47 -1000
phpunit (8.1.5-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 20 May 2019 12:42:56 -1000
phpunit (8.1.4-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 12 May 2019 23:11:47 -1000
phpunit (8.1.3-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 24 Apr 2019 01:06:41 -1000
phpunit (8.1.2-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 11 Apr 2019 22:24:23 +0900
phpunit (8.1.0-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 06 Apr 2019 09:41:43 -1000
phpunit (8.0.6-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 28 Mar 2019 15:55:28 -1000
phpunit (8.0.5-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 17 Mar 2019 20:50:53 -1000
phpunit (8.0.4-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 18 Feb 2019 06:57:45 -1000
phpunit (8.0.3-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Simplify clean target
-- David Prévot <taffit@debian.org> Fri, 15 Feb 2019 22:27:12 -1000
phpunit (8.0.2-1) experimental; urgency=medium
* Team upload of new major version to experimental
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 11 Feb 2019 14:31:53 -1000
phpunit (7.5.3-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 01 Feb 2019 11:49:37 -1000
phpunit (7.5.2-1) unstable; urgency=medium
* Team upload
[ David Prévot ]
* Drop Olivier Berger from Uploaders (Closes: #917915)
* Use debhelper-compat 12
* Update Standards-Version to 4.3.0
* Update copyright (years)
[ Sebastian Bergmann ]
* Bump copyright year
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 21 Jan 2019 20:32:28 -1000
phpunit (7.5.1-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Delete old ChangeLogs
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 12 Dec 2018 15:41:28 -1000
phpunit (7.5.0-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 09 Dec 2018 06:56:23 -1000
phpunit (7.4.5-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Use /usr/share/dpkg/default.mk instead of dpkg-parsechangelog
-- David Prévot <taffit@debian.org> Wed, 05 Dec 2018 07:17:29 -1000
phpunit (7.4.4-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Revert "Skip failing test with PHP 7.3" applied upstream
-- David Prévot <taffit@debian.org> Wed, 14 Nov 2018 20:55:45 -1000
phpunit (7.4.3-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Allow sebastian/environment ^4.0
* Prepare release
* Skip failing test with PHP 7.3 (Closes: #912153)
-- David Prévot <taffit@debian.org> Mon, 29 Oct 2018 13:47:35 -1000
phpunit (7.4.0-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Use https in Format
* Drop get-orig-source target
-- David Prévot <taffit@debian.org> Fri, 05 Oct 2018 21:48:59 -1000
phpunit (7.3.5-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Reorganize test suite
* Prepare release
[ David Prévot ]
* Adapt excluded file to new upstream path
-- David Prévot <taffit@debian.org> Sat, 08 Sep 2018 09:06:43 -1000
phpunit (7.3.3-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Use debhelper-compat = 11
* Update Standards-Version to 4.2.1
-- David Prévot <taffit@debian.org> Mon, 03 Sep 2018 17:58:56 -1000
phpunit (7.3.2-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 23 Aug 2018 15:18:33 -1000
phpunit (7.3.1-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.2.0
-- David Prévot <taffit@debian.org> Tue, 07 Aug 2018 23:03:20 +0800
phpunit (7.2.7-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.1.5
-- David Prévot <taffit@debian.org> Wed, 18 Jul 2018 07:52:48 +0800
phpunit (7.2.6-2) unstable; urgency=medium
* Team upload
* Fix messy libxmlerror state (Closes: #902008)
-- David Prévot <taffit@debian.org> Tue, 03 Jul 2018 12:02:32 -1000
phpunit (7.2.6-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Bump phar-io versioned dependencies (Closes: #902933)
-- David Prévot <taffit@debian.org> Tue, 03 Jul 2018 08:40:21 -1000
phpunit (7.2.4-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Reorganize.
* Use phpunit/php-file-iterator ^2.0
* Prepare release
[ Graham Campbell ]
* Upgrade to doctrine instantiator
[ David Prévot ]
* Update homemade autoload to new dependencies
* Update build-dependencies
* Drop phpunit-mock-objects now shipped in
* Use php-soap for the tests
* Provide phpunit.xsd used for validation
-- David Prévot <taffit@debian.org> Wed, 20 Jun 2018 10:56:54 -1000
phpunit (7.1.5-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ Dennis van der Velde ]
* Consistency: testdox for method that is written in snake-case now starts
with a uppercase letter
-- David Prévot <taffit@debian.org> Wed, 16 May 2018 18:59:56 -1000
phpunit (7.1.4-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Start development of PHPUnit 7.1
* Allow sebastian/comparator ^3.0
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.1.4
* Include more files for tests (as in composer.json)
-- David Prévot <taffit@debian.org> Fri, 20 Apr 2018 10:16:23 -1000
phpunit (7.0.3-1) unstable; urgency=medium
* Team upload to unstable now that everything is ready
[ Sebastian Bergmann ]
* Prepare release
[ Dennis van der Velde ]
* Strip of remaining s\ when TestDox classname starts with Tests\
[ David Prévot ]
* Fix Vcs-* URLs
-- David Prévot <taffit@debian.org> Thu, 29 Mar 2018 07:52:13 -1000
phpunit (7.0.2-1) experimental; urgency=medium
* Team upload of new major version to experimental
[ Sebastian Bergmann ]
* Start development of PHPUnit 7.0
* Prepare release
[ David Prévot ]
* Update copyright (years)
* Move project repository to salsa.d.o
* Update Standards-Version to 4.1.3
* Require php-timer (>= 2), phpunit-mock-object (>= 6) and
phpunit-diff (>= 3) for the build.
-- David Prévot <taffit@debian.org> Sun, 04 Mar 2018 22:19:53 -1000
phpunit (6.5.5-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 25 Dec 2017 18:05:32 +0530
phpunit (6.5.4-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 12 Dec 2017 18:32:14 -1000
phpunit (6.5.3-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Fix an issue with PHPT tests when forceCoversAnnotation="true" is configured
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 08 Dec 2017 17:38:45 -1000
phpunit (6.5.2-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Start development of PHPUnit 6.5
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.1.2
-- David Prévot <taffit@debian.org> Mon, 04 Dec 2017 18:13:32 -1000
phpunit (6.4.4-2) unstable; urgency=medium
* Team upload
* Upload to unstable, with the rest of the latest PHPUnit stack
-- David Prévot <taffit@debian.org> Sat, 25 Nov 2017 15:18:19 -1000
phpunit (6.4.4-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 13 Nov 2017 09:47:23 +1300
phpunit (6.4.3-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 17 Oct 2017 12:17:37 -1000
phpunit (6.4.1-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Start development of PHPUnit 6.4
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.1.1
-- David Prévot <taffit@debian.org> Wed, 11 Oct 2017 17:36:08 -1000
phpunit (6.3.1-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 26 Sep 2017 17:17:48 -1000
phpunit (6.3.0-1) experimental; urgency=medium
* Team upload
* Upload to experimental since the dependencies are not all in unstable yet
[ Sebastian Bergmann ]
* Allow global-state 2.0
* Allow next version of sebastian/comparator
* Allow sebastian/global-state ^2.0
* Allow sebastian/object-enumerator ^3.0
* Allow sebastian/exporter ^3.0
* Use phar-io/manifest to verify PHAR extensions
* Use php-code-coverage 5.2
* Allow sebastian/environment ^3.0
* Allow sebastian/diff ^2.0
* Prepare release
[ David Prévot ]
* Drop php-token-stream from suggestions
* Drop Thomas Goirand from uploaders as he requested
* Update Standards-Version to 4.1.0
* Update copyright (years)
* Adapt packaging to updated dependencies
-- David Prévot <taffit@debian.org> Wed, 23 Aug 2017 18:59:32 -1000
phpunit (5.4.6-2~deb9u1) stretch; urgency=high
* Team upload
* Upload previous fix to Stretch
-- David Prévot <taffit@debian.org> Wed, 28 Jun 2017 17:03:35 -1000
phpunit (5.4.6-2) unstable; urgency=high
* Team upload
* Fix arbitrary PHP code execution via HTTP POST [CVE-2017-9841]
(Closes: #866200)
-- David Prévot <taffit@debian.org> Wed, 28 Jun 2017 16:43:26 -1000
phpunit (5.4.6-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update minimum version requirements
* Fix package name in 5.4.2+dfsg-1 previous entry
-- David Prévot <taffit@debian.org> Sat, 18 Jun 2016 18:16:55 -0400
phpunit (5.4.4-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Ignore /build directory
* Prepare release
[ David Prévot ]
* Update package to now dropped /build directory
-- David Prévot <taffit@debian.org> Thu, 09 Jun 2016 21:25:08 -0400
phpunit (5.4.2+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Deprecate PHPUnit_Framework_TestCase::getMock()
* Require new version of phpunit-mock-objects
* Prepare release
[ David Prévot ]
* Adapt homemade autoload.php to php-codecoverage new path
-- David Prévot <taffit@debian.org> Sat, 04 Jun 2016 14:15:02 -0400
phpunit (5.3.4+dfsg-2) unstable; urgency=medium
* Team upload
* Make tests more robust
-- David Prévot <taffit@debian.org> Sun, 15 May 2016 10:55:09 -0400
phpunit (5.3.4+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 13 May 2016 14:49:50 -0400
phpunit (5.3.2+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 13 Apr 2016 20:52:18 -0400
phpunit (5.3.1+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Drop build/tools/composer containing sourceless hiddeninput.exe
* Update copyright (path)
* Update Standards-Version to 3.9.8
-- David Prévot <taffit@debian.org> Fri, 08 Apr 2016 12:29:18 -0400
phpunit (5.3.0-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Finish work on
https://github.com/sebastianbergmann/phpunit-mock-objects/issues/296
* Use stable dependencies in preparation for PHPUnit 5.3.0
* Prepare release
[ Prach Pongpanich ]
* Remove the PHP version number from a short description
* Update homemade Autoload.php
* Build dependency on phpunit-object-enumerator
* Add override for phpunit-object-enumerator
* Revert "Add patch to add phpunit-mock-object 3.1.x compatibility"
-- Prach Pongpanich <prach@debian.org> Mon, 04 Apr 2016 13:21:41 +0700
phpunit (5.2.12-2) unstable; urgency=medium
* Team upload
* Add patch to add phpunit-mock-object 3.1.x compatibility (Closes: #819620)
- 0002-Fix-compatibility-with-phpunit-mock-object-3.1.patch
* Improve extraction of upstream version in d/rules
-- Daniel Beyer <dabe@deb.ymc.ch> Thu, 31 Mar 2016 13:08:39 +0200
phpunit (5.2.12-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 21 Mar 2016 15:16:10 -0400
phpunit (5.2.10-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Revert previous workarounds, and build with recent pkg-php-tools for the
PHP 7.0 transition
-- David Prévot <taffit@debian.org> Sat, 05 Mar 2016 19:49:13 -0400
phpunit (5.2.9-3) unstable; urgency=medium
* Team upload
* Workaround the ongoing yet not ready PHP 7.0 transition
- Add override for php(5.6)-xml (#815988);
- pkgtools called with -v triggers a segfault (#814858).
* Add php-xml (split from php-common) to build-dependencies
* Prepare other php5 build-dependencies for the PHP 7.0 transition
-- David Prévot <taffit@debian.org> Mon, 29 Feb 2016 22:54:31 -0400
phpunit (5.2.9-2) unstable; urgency=medium
* Team upload
* Build-depend on php-debug instead of php5-xdebug (Closes: #814826)
-- David Prévot <taffit@debian.org> Thu, 25 Feb 2016 22:48:57 -0400
phpunit (5.2.9-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update copyright (years)
* Update Standards-Version to 3.9.7
-- David Prévot <taffit@debian.org> Thu, 25 Feb 2016 19:30:50 -0400
phpunit (5.1.3-1) unstable; urgency=medium
[ Aaron Piotrowski ]
* Allow throwing any Throwable
[ Sebastian Bergmann ]
* Update ChangeLog
* Bump dependency
* Prepare release
[ Prach Pongpanich ]
* Bump Build-Depends on phpunit-mock-object to (>= 3.0.5)
-- Prach Pongpanich <prach@debian.org> Thu, 17 Dec 2015 11:17:59 +0700
phpunit (5.0.10-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
* Fixed #1953: `Error`s raised outside the scope of a test method
are not handled properly
* Fix CS/WS issues
[ Nicolas Grekas ]
* Fix insulated tests with phpdbg
-- Prach Pongpanich <prach@debian.org> Tue, 01 Dec 2015 12:39:10 +0700
phpunit (5.0.9-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Remove leftover references to PHPUnit_Selenium
* Prepare release
[ David Prévot ]
* Remove references to phpunit-selenium
-- David Prévot <taffit@debian.org> Wed, 11 Nov 2015 12:28:38 -0400
phpunit (5.0.8-2) unstable; urgency=medium
* Team upload, to unstable since everything is in place
-- David Prévot <taffit@debian.org> Fri, 30 Oct 2015 15:47:53 -0400
phpunit (5.0.8-1) experimental; urgency=medium
* Team upload, to experimental since some dependencies are new
[ Sebastian Bergmann ]
* Use short array syntax
* Depend on stable versions (in preparation for PHPUnit 5.0 release)
* Prepare release
[ David Prévot ]
* Revert "Track version 4 for the moment"
* Update for new dependencies
-- David Prévot <taffit@debian.org> Mon, 26 Oct 2015 15:50:33 -0400
phpunit (4.8.16-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Start PHPUnit 4.8 development
* Fix CS/WS issues
* Prepare release
[ David Prévot ]
* Track version 4 for the moment
* Update copyright for embedded phpab
* Drop now useless workaround
* Update dependencies
* Drop phpunit-story from suggests
-- David Prévot <taffit@debian.org> Mon, 26 Oct 2015 12:30:41 -0400
phpunit (4.7.6-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 02 Jul 2015 10:47:31 -0400
phpunit (4.7.5-1) unstable; urgency=medium
* Team upload, to unstable since Jessie has been released
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Simplify build as upstream
* Drop currently failing test
-- David Prévot <taffit@debian.org> Mon, 22 Jun 2015 21:23:38 -0400
phpunit (4.6.4-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Update blacklist
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 12 Apr 2015 00:52:29 -0400
phpunit (4.6.2-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Revert "Autoloading of Functions into `composer.json`"
* Prepare release
[ David Prévot ]
* Update homemade autoload
-- David Prévot <taffit@debian.org> Tue, 07 Apr 2015 22:44:05 -0400
phpunit (4.6.1-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Add ChangeLog
* Prepare release
[ David Prévot ]
* Install upstream changelog
* Update homemade Autoload.php
* Actually run PHPUnit tests suite on build
* Build-depend on php5-sqlite and php5-xdebug for tests
-- David Prévot <taffit@debian.org> Fri, 03 Apr 2015 22:41:43 -0400
phpunit (4.5.0-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update copyright
* Drop useless upstream README
* Update Homepage
* Handle new dependencies
* Fix rules: upstream build target is about tests
* Generate manpage at build time
* Provide DEP-8 tests
-- David Prévot <taffit@debian.org> Tue, 10 Feb 2015 21:18:04 -0400
phpunit (4.2.6-3) experimental; urgency=medium
* Team upload to experimental to respect the freeze
[ Daniel Beyer ]
* Add patch 0002-Fix-bootstrapping-in-process-isolation-with-unpreser.patch.
This fixes an issue with bootstrapping for tests run in process isolation
with an unpreserved global state. This issue is already closed by upstream
and fixed in phpunit 4.3.0.
-- David Prévot <taffit@debian.org> Wed, 04 Feb 2015 06:21:32 -0400
phpunit (4.2.6-2) unstable; urgency=medium
[ Prach Pongpanich ]
* Upload to unstable (Closes: #744876)
[ Daniel Beyer ]
* Fix tests can not be run in separate processes
-- Prach Pongpanich <prachpub@gmail.com> Sun, 05 Oct 2014 01:40:09 +0700
phpunit (4.2.6-1) experimental; urgency=medium
* Imported Upstream version 4.2.6
* Switch from PEAR to Composer source
* Update copyright
-- Prach Pongpanich <prachpub@gmail.com> Wed, 01 Oct 2014 20:10:00 +0700
phpunit (3.7.28-2) unstable; urgency=medium
* Team upload
* Build-depend on recent pear-channels to get rid of php-symfony2-yaml
* Remove overrides now present in pear-channels
* Bump standards version to 3.9.6
-- David Prévot <taffit@debian.org> Tue, 23 Sep 2014 16:55:34 -0400
phpunit (3.7.28-1) unstable; urgency=medium
[ Prach Pongpanich ]
* New upstream release (Closes: #697343)
+ PHPUnit no longer throws exceptions that do not extend
PHPUnit_Framework_Exception (Closes: #712667)
* Depends on php-codecoverage (>= 1.2.1) (Closes: #736147)
* Add Build-Depends on php5-cli (>= 5.3.7-1~) (Closes: #693369)
* Update debian/watch to point to pear.phpunit.de
* Bump debhelper compat to 9
* Add myself as uploader
* Use canonical URI in Vcs-* fields
* Build depend on pear-channels
* Bump Standard-Version to 3.9.5
* Change Build-depends on pkg-php-tools (>= 1.1~)
+ Drop all debian/patches
* Add debian/pkg-php-tools-overrides
* Update the manpage
* Change the maintainers name to Debian PHP PEAR Maintainers
* Drop Replaces: phpunit2 and Suggests: phpunit-dbunit,
which are not present in the archive
[ David Prévot ]
* Drop php-invoker already brought by ${phppear:Debian-Recommends}
* Fix copyright years
* Remove overrides already present in pear-channels
-- Prach Pongpanich <prachpub@gmail.com> Thu, 06 Feb 2014 11:42:12 +0700
phpunit (3.6.10-1) unstable; urgency=low
* New upstream version.
* Adopting the package (Closes: #607393).
[ Thomas Goirand ]
* Fixed debian/watch file to use the github tags.
* Added a debian/gbp.conf (and renamed branches on Alioth).
* Added Vcs fields.
* Switching package to pkg-php-tools.
* Standards-Version is now 3.9.3 (no change).
* Switched debian/copyright to format 1.0.
* Added a channel.xml file (as a quilt patch).
* Removed useless debian/phpunit-doc.doc-base, debian/docs, debian/dirs,
and debian/install (we are now using "pear install" with the package.xml...).
* Removed useless debian/README.Debian that was advising to get stuff
outside debian.
* Removed versions from Suggests:, removed double Section: in debian/control.
* Maintainer: is now PKG-PHP-PEAR team <pkg-php-pear@lists.alioth.debian.org>
* Patches package.xml to remove unwanted LICENSE file from binaries.
* Reviewed (new) dependencies of the binary package.
[ Olivier Berger ]
* Add dependency on php-codecoverage (Closes: #607372), and so many missing
dependencies.
* Remove phpunit-doc generation, as may not be rebuildable from sources.
-- Thomas Goirand <zigo@debian.org> Sun, 22 Apr 2012 12:53:21 +0800
phpunit (3.5.5-2) unstable; urgency=low
* fix doc-base-file-references-missing-file
-- Ivan Borzenkov <ivan1986@list.ru> Sat, 11 Dec 2010 18:19:39 +0300
phpunit (3.5.5-1) unstable; urgency=low
* upload to debian
-- Ivan Borzenkov <ivan1986@list.ru> Sat, 11 Dec 2010 14:23:30 +0300
phpunit (3.5.5-0ubuntu1) natty; urgency=low
* New upstream release
- Added support for getMockForAbstractClass()
to the mock builder API.
- Added a ticket listener that interacts with
the Trac issue API.
- Added support for E_USER_NOTICE and E_USER_WARNING
to PHPUnit_Framework_Error_Notice and
PHPUnit_Framework_Error_Warning, respectively.
- Refactored test dependency handling (required for a
bugfix in PHPUnit_Selenium).
- Fixed --stop-on-failure.
* fix watch path
-- Ivan Borzenkov <ivan1986@list.ru> Thu, 09 Dec 2010 14:08:50 +0300
phpunit (3.5.3-0ubuntu1) natty; urgency=low
* New upstream release
- Fixed GH-13: Result XML inconsistent when
data provider returns empty array or does not exist.
- Fixed the skeleton generator for tested classes.
- Strict mode is now compatible with process isolation.
- Worked around http://bugs.php.net/bug.php?id=52911
to make process isolation work on Windows.
-- Ivan Borzenkov <ivan1986@list.ru> Mon, 01 Nov 2010 09:29:40 +0300
phpunit (3.5.2-0ubuntu1) natty; urgency=low
* New upstream release
- Fixed GH-30: --repeat option does not work.
- Fixed GH-34: Bogus bootstrap file raises cryptic error.
- Fixed GH-47: Failure message ignored in assertSelectCount().
- Fixed GH-48: Remove strict incomplete duplication.
- Tests that are incomplete or skipped no longer yield
code coverage in strict mode.
-- Ivan Borzenkov <ivan1986@list.ru> Thu, 21 Oct 2010 00:17:20 +0400
phpunit (3.5.0-1) unstable; urgency=low
* New upstream release
- Implemented TRAC-834: Refactor collection, processing,
and rendering of code coverage information using the
[PHP_CodeCoverage](http://github.com/sebastianbergmann/
php-code-coverage) component.
- Implemented TRAC-948: Add D-BUS test listener.
- Implemented TRAC-967: Only populate whitelist when code
coverage is used.
- Implemented TRAC-985: Sort arrays before diff.
- Implemented TRAC-1033: Supplement commandline option
`--stop-on-error` and friends.
- Implemented TRAC-1038: Add `assertInstanceOf()`,
`assertAttributeInstanceOf()`, `assertNotInstanceOf()`, and
`assertAttributeNotInstanceOf()` as well as `assertInternalType()`,
`assertAttributeInternalType()`, `assertNotInternalType()`,
and `assertAttributeNotInternalType()`.
- Implemented TRAC-1039: Added support for `regexpi:`
matcher to Selenium RC driver.
- Implemented TRAC-1078: Added support for setting
superglobals via the XML configuration file.
- Added support for mocking/stubbing of static methods.
This requires PHP 5.3 and late static binding.
- Added `assertStringMatchesFormat()` and `assertStringNotMatchesFormat()`
as well as `assertStringMatchesFormatFile()` and
`assertStringNotMatchesFormatFile()` for `EXPECTF`-like
(`run-tests.php`) format string matching.
- Added `assertEmpty()` and `assertNotEmpty()` as well as
`assertAttributeEmpty()` and `assertAttributeNotEmpty()`.
- Added the `@expectedExceptionCode` and
`@expectedExceptionMessage` annotations.
- Added support for the [XML format of mysqldump](http://dev.mysql.com
/doc/refman/5.1/en/mysqldump.html#option_mysqldump_xml) to the
database extension.
- Added the `<includePath>` element to the `<php>` section of
the XML configuration file.
- Added the `verbose` attribute to the `<phpunit>` element of
the XML configuration file.
- Added a ticket listener that interacts with the GitHub issue API.
- Added a ticket listener that interacts with the GoogleCode issue API.
- Added a test listener that uses
[XHProf](http://mirror.facebook.net/facebook/xhprof/doc.html)
to profile the tested code.
- Added the `--strict` switch to mark tests that perform
no assertions as incomplete.
- The paths in the XML configuration file can now be relative to
the directory that contains the XML configuration file.
- The `@author` annotation is now an alias for `@group`
allowing to filter tests based on their authors.
- The `PHPUnit_Extensions_SeleniumTestCase::$autoStop`
flag has been removed, please start Selenium RC with
`-browserSessionReuse` instead.
- The `--log-metrics` and `--log-pmd` switches have been removed.
Their functionality has been or will be merged into
[PHP_Depend](http://pdepend.org/) and [PHPMD](http://phpmd.org/).
Details can be found [here](http://sebastian-bergmann.de/archives/
744-On-PHPUnit-and-Software-Metrics.html).
- The `--ansi` switch has been removed, please use `--colors` instead.
- The `--coverage-source` switch has been removed.
- The `--coverage-xml` switch has been removed, please use
`--coverage-clover` instead.
- The `--log-graphviz` switch has been removed.
- The `--log-xml` switch has been removed, please use
`--log-junit` instead.
- The `--report` switch has been removed, please use
`--coverage-html` instead.
- The `--skeleton` switch has been removed, please use
`--skeleton-test` instead.
- The `TestListener` implementation that logs to
[PEAR::Log](http://pear.php.net/package/Log) sinks has been removed.
- The test database functionality has been removed.
- The shared fixture functionality has been removed.
- `PHPUnit_Extensions_PerformanceTestCase` has been removed.
- `PHPUnit_Extensions_TicketListener_Trac` has been removed.
- The `PHPUnit_Extensions_Story_TestCase` functionality has been deprecated.
- Replaced `PHPUnit_Framework_MockObject` with the
[PHPUnit_MockObject](http://github.com/sebastianbergmann/
phpunit-mock-objects) component.
- Replaced `PHPUnit_Extensions_Database_TestCase` with the
[DbUnit](http://github.com/sebastianbergmann/dbunit) component.
- Replaced `PHPUnit_Extensions_SeleniumTestCase` with the
[PHPUnit_Selenium](http://github.com/sebastianbergmann/phpunit-selenium)
component.
- Replaced `PHPUnit_Util_FilterIterator` with the
[PHP_FileIterator](http://github.com/sebastianbergmann/php-file-iterator)
component.
- Replaced `PHPUnit_Util_Template` with the
[Text_Template](http://github.com/sebastianbergmann/php-text-template)
component.
- Replaced `PHPUnit_Util_Timer` with the
[PHP_Timer](http://github.com/sebastianbergmann/php-timer) component.
- Fixed TRAC-1068: `assertSame()` on two floats does not print the error
message.
- Fixed GH-7: Code paths that create a `PHPUnit_Framework_Warning`
end up serializing/unserializing globals unconditionally.
- PHPUnit now requires PHP 5.2.7 (or later) but PHP 5.3.3 (or later) is
highly recommended.
* Bump Standards-Version to 3.9.1, no change needed
* remove dbunit (LP: #595244)
-- Ivan Borzenkov <ivan1986@list.ru> Mon, 27 Sep 2010 20:23:39 +0400
phpunit (3.4.15-1) maverick; urgency=low
* New upstream release
F TRAC-939: Missing test classes when using process isolation
F TRAC-1024: setUpBeforeClass() does not work in process isolation
F TRAC-1075: empty <file></file> in phpunit.xml causes errors
* switch to quilt
* update getDoc
-- Ivan Borzenkov <ivan1986@list.ru> Sun, 18 Jul 2010 23:18:44 +0400
phpunit (3.4.14-1) unstable; urgency=low
* New upstream release
F TRAC-1057: phpunit_coverage.php deletes all
files in web server document root
F TRAC-1062: GlobalState::restoreSuperGlobalArray
throws error when global isn't an array
F TRAC-1063: Trailing Whitespace in files
F TRAC-1056: Badly done data providers cause crashes
* update manpage (Closes: #586214)
-- Ivan Borzenkov <ivan1986@list.ru> Thu, 17 Jun 2010 20:05:03 +0400
phpunit (3.4.13-1) unstable; urgency=low
* New upstream release
F TRAC-1035: PostgreSQL MetaData queries are incorrect
F TRAC-1043: method names in HTML code coverage report
are not properly escaped
F TRAC-1045: filter has problems with Umlaut
* update doc
-- Ivan Borzenkov <ivan1986@list.ru> Tue, 25 May 2010 20:20:00 +0400
phpunit (3.4.12-1) unstable; urgency=low
* New upstream release
I TRAC-1027: Declare a decent return-type in
PHPUnit_Framework_TestCase::getMock().
F TRAC-1013: Undefined index: _ENV running supplied tests.
F TRAC-1016: Usage of {} to access string offsets is deprecated.
F TRAC-1021: Depending on a test that uses a data provider does not work.
F TRAC-1030: Selenese tests cause double escaping of
Selenium actions and arguments.
-- Ivan Borzenkov <ivan1986@list.ru> Sat, 10 Apr 2010 11:20:44 +0400
phpunit (3.4.11-1) unstable; urgency=low
* New upstream release
F tearDownAfterClass() irregularly called with @dataProvider
F Missing include of PHPUnit_Framework_Exception in PHPUnit/Util/Filter.php
-- Ivan Borzenkov <ivan1986@list.ru> Wed, 17 Feb 2010 10:55:59 +0300
phpunit (3.4.10-1) unstable; urgency=low
* New upstream release
* Bump Standards-Version to 3.8.4, no change needed
-- Ivan Borzenkov <ivan1986@list.ru> Fri, 12 Feb 2010 20:40:06 +0300
phpunit (3.4.9-1) unstable; urgency=low
* New upstream release
-- Ivan Borzenkov <ivan1986@list.ru> Wed, 03 Feb 2010 23:20:55 +0300
phpunit (3.4.5-1) unstable; urgency=low
* New upstream release
-- Ivan Borzenkov <ivan1986@list.ru> Sat, 26 Dec 2009 02:42:24 +0300
phpunit (3.4.3-1) unstable; urgency=low
* New upstream release
-- Ivan Borzenkov <ivan1986@list.ru> Sat, 28 Nov 2009 11:44:13 +0300
phpunit (3.4.2+repack-1) unstable; urgency=low
* New upstream release
-- Ivan Borzenkov <ivan1986@list.ru> Wed, 04 Nov 2009 12:02:57 +0300
phpunit (3.4.1+repack-1) unstable; urgency=low
* New upstream release
-- Ivan Borzenkov <ivan1986@list.ru> Mon, 12 Oct 2009 11:13:48 +0400
phpunit (3.4.0+repack-1) unstable; urgency=low
* New upstream release
* update documentation
* update version number in patch and getDoc.sh
* Bump Standards-Version to 3.8.3, no change needed
-- Ivan Borzenkov <ivan1986@list.ru> Thu, 17 Sep 2009 01:50:23 +0400
phpunit (3.3.17+repack-2) unstable; urgency=low
* Fix debian/copyright - add CC License on doc
-- Ivan Borzenkov <ivan1986@list.ru> Tue, 07 Jul 2009 09:58:09 +0400
phpunit (3.3.17+repack-1) unstable; urgency=low
* New upstream release
* Fix warnings (Closes: #534485)
* Fixed manpage (Closes: #529302)
* Added package phpunit-doc
* Removed package phpunit2
* Repacked original source (added documentation)
* Changed section from web to php
* Bump Standards-Version to 3.8.2, no change needed
-- Ivan Borzenkov <ivan1986@list.ru> Mon, 29 Jun 2009 21:16:47 +0400
phpunit (3.3.16-1) unstable; urgency=low
* New upstream release
- fix some bugs
* debian/control:
- Standards-Version: 3.8.1
* Update manpage
-- Ivan Borzenkov <ivan1986@list.ru> Thu, 16 Apr 2009 23:13:35 +0400
phpunit (3.3.15-1) unstable; urgency=low
* New upstream release
- fix some bugs
* Update manpage
-- Ivan Borzenkov <ivan1986@list.ru> Sun, 01 Mar 2009 01:21:58 +0300
phpunit (3.3.14-1) unstable; urgency=low
* New upstream release
* Update manpage to 3.3.14
* Fix build scpipt - in orig move phpunit to phpunit.php
* debian/watch: Updated.
-- Ivan Borzenkov <ivan1986@list.ru> Mon, 16 Feb 2009 20:34:19 +0300
phpunit (3.3.10-1) unstable; urgency=low
* New upstream release
* New mantainer. (Closes: #512687)
* Remove depend from php5. (Closes: #466767)
* debian/control:
- Standards-Version: 3.8.0
* Update manpage to 3.3.10
* Add patch for remove yui library
license problem - no source code avalible now and function is no usable
-- Ivan Borzenkov <ivan1986@list.ru> Thu, 22 Jan 2009 02:16:47 +0300
phpunit (3.2.16-1) unstable; urgency=low
* New upstream release
-- Jose Carlos Medeiros <debian@psabs.com.br> Thu, 27 Mar 2008 00:11:53 -0300
phpunit (3.2.5-1) unstable; urgency=low
* New upstream release
* New mantainer. (Closes: #454908)
* Removed install of PHPUnit2 that was changed to PHPUnit.
* debian/control:
- Updated "Homepage:" pseudo-header as Reference 1.14.6.
- Standards-Version: 3.7.3
* Added phpunit.1 man page.
-- Jose Carlos Medeiros <debian@psabs.com.br> Fri, 14 Dec 2007 21:28:41 -0200
phpunit (3.0.6-3) unstable; urgency=low
* QA upload, orphaning this package.
-- Bart Martens <bartm@debian.org> Sat, 08 Dec 2007 08:58:27 +0100
phpunit (3.0.6-2) unstable; urgency=low
* debian/control: Added transitional package "phpunit2".
* debian/watch: Updated.
-- Bart Martens <bartm@knars.be> Sat, 16 Jun 2007 13:05:13 +0200
phpunit (3.0.6-1) unstable; urgency=low
* New upstream release.
* debian/patches/01missingfile.diff: Removed obsolete patch.
* debian/patches/02renamebin.diff: Removed obsolete patch.
* debian/control: Merging packages phpunit and phpunit2. Closes: #424824.
* debian/rules, debian/control, debian/install, debian/links: Not using
/usr/share/cdbs/1/class/pear.mk so not Build-Depends on dh-make-php.
* debian/control, debian/copyright: Upstream homepage has moved.
-- Bart Martens <bartm@knars.be> Sat, 19 May 2007 16:26:14 +0200
phpunit2 (2.3.6-2) unstable; urgency=low
* debian/*: Repackaged with dh-make-pear version 0.1.3.
* debian/patches/01missingfile.diff: Missing Util/AllTests.php.
* debian/patches/02renamebin.diff: Install /usr/bin/phpunit2.
* debian/control: Added php-pear, php5-cli, php-benchmark to Depends.
Closes: #386516, #386803.
* debian/README.Debian: More documentation on the web.
-- Bart Martens <bartm@knars.be> Sun, 10 Sep 2006 17:15:59 +0200
phpunit2 (2.3.6-1) unstable; urgency=low
* New upstream release. Note the two source packages, phpunit for use with
php4, and phpunit2 (this package) for use with php5. Closes: #380468.
-- Bart Martens <bartm@knars.be> Sun, 30 Jul 2006 12:42:40 +0200
phpunit (1.3.2-2) unstable; urgency=low
* New maintainer. Closes: #374437.
* debian/*: Repackaged with dh-make 0.41.
* debian/copyright: Updated to BSD license.
* PHPUnit-1.3.2/PHPUnit/GUI/Gtk.php: Fixed reference to license.
* debian/control: Added homepage to description.
* debian/watch: Added.
-- Bart Martens <bartm@knars.be> Sun, 30 Jul 2006 10:59:20 +0200
phpunit (1.3.2-1) unstable; urgency=low
* New upstream version. (Closes: #340847)
* Orphaned.
-- Matthew Palmer <mpalmer@debian.org> Mon, 19 Jun 2006 21:21:17 +1000
phpunit (1.1.1-2) unstable; urgency=low
* Improved the message generation, including some refactoring and improved
message passing.
-- Matthew Palmer <mpalmer@debian.org> Tue, 16 Nov 2004 15:19:32 +1100
phpunit (1.1.1-1) unstable; urgency=low
* Initial release. Closes: #273649. Nice version number, don't you think?
-- Matthew Palmer <mpalmer@debian.org> Sat, 6 Nov 2004 18:05:58 +1100
|