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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- :tabSize=2:indentSize=2:wrap=hard: -->
<changelog xmlns="http://www.blackperl.com/2009/01/ChangeLogML"
xmlns:sc="http://www.blackperl.com/2009/01/ChangeLogML/source-control"
xmlns:git="http://www.blackperl.com/2009/01/ChangeLogML/source-control/git"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
xsi:schemaLocation="http://www.blackperl.com/2009/01/ChangeLogML etc/ChangeLogML.xsd">
<project>RPC::XML</project>
<title>Perl Module RPC::XML Change History</title>
<description>
Revision history for the Perl extension module RPC::XML. This is an
implementation of the XML-RPC standard as described at
<xhtml:a href="http://www.xmlrpc.com">http://www.xmlrpc.com</xhtml:a>.
This implementation also permits some minor
extensions to the base protocol in terms of supporting HTTP/1.1 and
allowing choice of character-set encodings for XML messages.
</description>
<release date="2021-01-06T09:59:00-08:00" version="0.82" sc:tag="0.82">
<change git:commit="22b657667a47ceb4ee68c59d04321c4f4e54b22a">
<fileset>
<file path="Makefile.PL" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Bump version numbers.
</description>
</change>
<change git:commit="b4b6f085eeabc58ddb8f578465ba24a27e5be11d">
<fileset>
<file path="Makefile.PL" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/41_server_hang.t" />
<file path="t/60_net_server.t" />
<file path="t/util.pl" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=120472">RT #120472</xhtml:a>:
Applied patch from Petr PÃsaÅ™ for fixes to IPv6 support. Full detail
in the message for this commit in the git repository.
</description>
</change>
</release>
<release date="2021-01-05T18:33:00-08:00" version="0.81" sc:tag="0.81">
<change git:commit="b34a215258a85305f4834f8d1861e7b84841d044">
<fileset>
<file path="MANIFEST" />
<file path="perlcritic.rc" action="ADD" />
</fileset>
<description>
Add a perlcritic.rc file for testers who run author tests.
</description>
</change>
<change git:commit="e0412dab68f103cadf6db3c42596658b3ceaa6e5">
<fileset>
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
</fileset>
<description>
Remove redundant testing and general clean-up.
Removed tests of url() that were just re-testing HTTP::Daemon::url().
</description>
</change>
<change git:commit="7609db93606c4e592032e49d49c5eb7083ef7908">
<file path="lib/RPC/XML/Client.pm" />
<description>
Parameterize the request-as-string debug feature.
</description>
</change>
<change git:commit="68b3ab72470662eb8b76392978135b58bf9e73e3">
<file path="lib/RPC/XML/Client.pm" />
<description>
Merge pull request #13 from enrico-sorcinelli/add-request-string.
Added xmlrpc request string as object property. (Enrico Sorcinelli)
</description>
</change>
</release>
<release date="2016-05-08T12:45:00-07:00" version="0.80" sc:tag="0.80">
<change git:commit="32560525e443799daa8d2a2429ea9d1d782a1bfd">
<file path="etc/make_method" />
<description>
Make the build reproducible by dropping timestamps in make_method
output. (Niko Tyni)
</description>
</change>
<change git:commit="3270580b3538e108a2df16273e7513d197eee2d3">
<fileset>
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/50_client.t" />
</fileset>
<description>
Fixes for test problems with Strawberry Perl.
</description>
</change>
<change git:commit="d5671287e928fc2911bccb88da9ffb73531e5e4c">
<file path="lib/RPC/XML/Client.pm" />
<description>
Fix leak caused by failing to free Expat parser. We don't want to
return from the method until the parser's been freed. We therefore
need to call $parser->release() before the return statements caused
by request failures. (Tom Grimwood-Taylor)
</description>
</change>
<change git:commit="8158b17b8979c0126a5824909e8f57e1d4c13dd8">
<file path="lib/RPC/XML/Server.pm" />
<description>
One socket-opt change, one typo corrected.
</description>
</change>
<change git:commit="703a41a19874b54c8edf7d287752b5bf5d0c0008">
<file path="lib/RPC/XML.pm" />
<description>
Applied patch for numeric regexes and critic cleanup. Addresses
<xhtml:a href="https://github.com/rjray/rpc-xml/pull/10">GitHub
pull request #10</xhtml:a> and
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=111636">RT
#111636</xhtml:a>.
</description>
</change>
<change git:commit="b183920628411a7a19a1251ebae6907ccda72739">
<file path="t/60_net_server.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=99578">RT #99578</xhtml:a>:
Work-around fix for Net::Server+IO::Socket::IP. If a system's IPv6
declaration of localhost was before the IPv4 declaration in the hosts
file, this test would fail.
</description>
</change>
</release>
<release date="2015-05-01T09:00:00-07:00" version="0.79" sc:tag="0.79">
<change git:commit="70f6e31b98b3e80bb2ab5fe99f1e42dc454271e9">
<fileset>
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/41_server_hang.t" />
<file path="t/60_net_server.t" />
<file path="t/70_compression_detect.t" />
<file path="t/90_rt54183_sigpipe.t" />
<file path="t/util.pl" />
</fileset>
<description>
Test clean-up/fixes to address CPAN test failures. Should address
problems with having IO::Socket::IP acting in place of IO::Socket::INET
and also address some issues with a dynloader bug being triggered by
<xhtml:tt>t/70_compression_detect.t</xhtml:tt>.
</description>
</change>
<change git:commit="93f34fa9e8c65cefadb90a7bf31e70e08ed850b1">
<fileset>
<file path="t/00_load.t" />
<file path="t/10_data.t" />
<file path="t/11_base64_fh.t" />
<file path="t/12_nil.t" />
<file path="t/13_no_deep_recursion.t" />
<file path="t/14_datetime_iso8601.t" />
<file path="t/15_serialize.t" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
<file path="t/25_parser_negative.t" />
<file path="t/29_parserfactory.t" />
<file path="t/30_procedure.t" />
<file path="t/35_namespaces.t" />
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/41_server_hang.t" />
<file path="t/50_client.t" />
<file path="t/51_client_with_host_header.t" />
<file path="t/60_net_server.t" />
<file path="t/90_rt50013_parser_bugs.t" />
<file path="t/90_rt54183_sigpipe.t" />
<file path="t/90_rt54494_blessed_refs.t" />
<file path="t/90_rt58065_allow_nil.t" />
<file path="t/90_rt58323_push_parser.t" />
<file path="t/util.pl" />
</fileset>
<description>
Perl::Critic clean-up of test suites.
</description>
</change>
<change git:commit="a2399e760b584f0f57e4953ed8e225371d8b448a">
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<description>
Fix to prevent a new sprintf-related warning in 5.21.
</description>
</change>
<change git:commit="58c384f53333577ee5d2ab7b56c761fc12793dfb">
<fileset>
<file path="README" />
<file path="lib/Apache/RPC/status.code" />
</fileset>
<description>
Merge pull request #8 from jkg/docfixes (James Green). Replace
indirect object notation with direct.
</description>
</change>
</release>
<release date="2014-02-06T20:00:00-08:00" version="0.78" sc:tag="0.78">
<change git:commit="4c9208b3309cd332cd9b19f7553ab29ce4b90491">
<file path="lib/RPC/XML.pm" />
<description>
A patch to loop detection in smart_encode from Dag-Erling Smørgrav.
Some other minor bits.
</description>
</change>
<change git:commit="ae9a69e1176bef9211da57e480ca3e06b4d35c61">
<file path="lib/RPC/XML/Procedure.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=83108">RT #83108</xhtml:a>:
Fixed a spelling error. Some other fixes, too.
</description>
</change>
<change git:commit="f6cee931344ffa6a757eb526b02de33c30b672f8">
<file path="lib/RPC/XML.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=86187">RT #86187</xhtml:a>:
Force key-ordering in struct as_string and serialize.
Was getting some intermittent bug reports of failures in
t/15_serialize.t that amounted to the keys in a fault struct not being
in consistent order.
</description>
</change>
<change git:commit="33617691326a0bc01efea624e05c65047f1c6154">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/15_serialize.t" />
</fileset>
<description>
Undo the previous change and fix the test. The previous change didn't
feel right, so this rolls it back and fixes the problem at the level of
the test, instead.
</description>
</change>
<change git:commit="e340f5f43c386f918216ff9c445239d4c7d90b4c">
<fileset>
<file path="Makefile.PL" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Replace direct evals for loading optional modules with Module::Load.
Required adding this to Makefile.PL because Module::Load is not core
in 5.8.8. Also did some slight doc tweaking.
</description>
</change>
<change git:commit="c00cd567fd32e4e6e35622434246bce14df58b93">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
</fileset>
<description>
Merge pull request #5 from alexrj/utf8-encode. Use utf8::encode()
instead of utf8::downgrade().
</description>
</change>
<change git:commit="e63f767f7d40f4629157f7fc67ea172bdc9f6e8c">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Finish the uft8 encode vs. downgrade change from the previous commit.
Changed in places that were overlooked, and adjusted the version
number in all three modules.
</description>
</change>
<change git:commit="fd84f87624cffe3667212fb9c2a8d32a6bdc7fbe">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
</fileset>
<description>
Merge pull request #6 from dctabuyz/master. Added 'no_blanks' libxml
option to skip blank XML::LibXML::Text nodes.
</description>
</change>
<change git:commit="856da319f0ff661c81dab46c6b857fc058d72cea">
<file path="lib/RPC/XML/Server.pm" />
<description>
Merge pull request #7 from kvar/master. Initialize $do_compress in
RPC::XML::Server between requests.
</description>
</change>
<change git:commit="c22977c83bc411c95443f7056c9f7776371fe9df">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Bump version numbers on modules changed in github pulls.
</description>
</change>
</release>
<release date="2012-09-03T12:00:00-07:00" version="0.77" sc:tag="0.77">
<change git:commit="23ea1e487cf203e826ddf8a09d450986dfa29599">
<file path="t/15_serialize.t" />
<description>
Fix a test failure on Windows.
</description>
</change>
<change git:commit="4f2493aa66fd4311f981e0424c38edfa88352450">
<file path="lib/RPC/XML.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=70408">RT #70408</xhtml:a>:
Fix spelling error in man page, reported by Debian group.
</description>
</change>
<change git:commit="978c9263f04683aa360fdc525ecb2518018dd68a">
<file path="t/90_rt54183_sigpipe.t" />
<description>
Fix to handle cases where server creation fails. Now skips the
tests rather than dying.
</description>
</change>
<change git:commit="d5a10436f0efebdae39aba7865c2e3a94d4d046a">
<file path="lib/RPC/XML/Client.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=67486">RT #67486</xhtml:a>:
Add port to Host header in client requests.
</description>
</change>
<change git:commit="eae9b4438c4345d2d6ca82fee27ffca3360a86f9">
<file path="lib/RPC/XML/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=65341">RT #65341</xhtml:a>:
Added "use" of forgotten library File::Temp. This was causing failure
when "message_file_thresh" kicked in.
</description>
</change>
<change git:commit="20994f8b09dc1c136a74352caba7a8f20a94f9ca">
<file path="t/10_data.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=78602">RT #78602</xhtml:a>:
Changed 64-bit test from use64bitint to longsize.
On some systems (such as OS X), use64bitint can be true even when in
32-bit mode.
</description>
</change>
<change git:commit="e0362fccbd78d834b6709caf9cb912f0eb77a1f3">
<file path="t/21_xml_libxml.t" />
<description>
Fix from Christian Walde, skip passed test on Windows.
</description>
</change>
<change git:commit="865cf9a319d12b950c148289ee5577de7d63642f">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
</fileset>
<description>
Checkpoint refactoring and additional tests.
Work is not complete here, but the Net::Server changes demand
immediate attention
</description>
</change>
<change git:commit="427bddcc18504b2af1afb0e8728b6a028414d441">
<file path="t/20_xml_parser.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=72780">RT #72780</xhtml:a>:
Check for a possible parser failure. One instance of XML::Parser
failing to parse the extern entities test. Cannot reproduce, so wrap it
in a "skip" block for now.
</description>
</change>
<change git:commit="b1680acfcbdb1b991001888e6e5fd64f28341135">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="t/30_method.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=71452">RT #71452</xhtml:a>:
Correct handling of dateTime parameters. Existing code in
<xhtml:tt>lib/RPC/XML/Procedure.pm</xhtml:tt> did not properly handle
parameters of the dateTime.iso8601 type. Also, there were no tests for
these.
</description>
</change>
<change git:commit="8dcd49066c06be3c588a0fe135efabb7af96c4bd">
<fileset>
<file path="MANIFEST" />
<file path="t/30_method.t" action="DELETE" />
<file path="t/30_proceudre.t" action="ADD" />
</fileset>
<description>
Renamed t/30_method.t to t/30_procedure.t.
</description>
</change>
<change git:commit="de7c117392aff2a524a8cf02ef622879788c26f5">
<file path="lib/RPC/XML/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=77992">RT #77992</xhtml:a>:
Make RPC::XML::Server work with Net::Server again, after the API
changes of Net::Server 2.x.
</description>
</change>
</release>
<release date="2011-08-20T18:30:00-07:00" version="0.76" sc:tag="0.76">
<change git:commit="6ac04c12677b0285d54213171aaf0211122c2ce5">
<fileset>
<file path="etc/make_method" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=70258">RT #70258</xhtml:a>:
Fixed typos in docs pointed out by Debian team.
</description>
</change>
<change git:commit="5fd094cbda162a5421df70228d642bff2501412f">
<file path="lib/Apache/RPC/Server.pm" />
<description>
Better version of the fix for infinite loops.
This is the patch originally suggested by Eric Cholet, who found
the bug.
</description>
</change>
<change git:commit="b7210744ecffa57fb6f4eac51b8ed302809c0daa">
<file path="t/00_load.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=70280">RT #70280</xhtml:a>:
This test was still testing RPC/XML/Method.pm.
Rewrote to remove that but include the (forgotten) XMLLibXML.pm module.
That test has to be conditional on the presence of XML::LibXML.
</description>
</change>
<change git:commit="e63c1a71610657ec7ca7738aae6e522f961a586a">
<fileset>
<file path="Makefile.PL" />
<file path="t/51_client_with_host_header.t" />
</fileset>
<description>
Clean up test suite to work with older Test::More.
Also specify a minimum Test::More that supports subtest(). This is
also a part of
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=70280">RT #70280</xhtml:a>.
</description>
</change>
<change git:commit="73aa084d14a5befc1251f309ff32189a6d0aa1a8">
<fileset>
<file path="t/11_base64_fh.t" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
<file path="t/40_server.t" />
</fileset>
<description>
These tests had failures when run as root.
Permissions-based negative tests were incorrectly passing.
</description>
</change>
<change git:commit="800899531bc13da5cbc36423662bae76de304fb5">
<file path="t/10_data.t" />
<description>
Moved the 64-bit "TODO" tests to a SKIP block.
Non-64-bit systems will skip, rather than fail, these tests.
</description>
</change>
<change git:commit="cc02b294421a3b343ac741fdd4ceb11349626972">
<file path="lib/RPC/XML/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=65616">RT #65616</xhtml:a>:
Fix for slow methods killing servers.
Applied and modified patch from person who opened the ticket.
</description>
</change>
<change git:commit="c2e33bcb41fd923f74581b70bca2849dbd91a679">
<fileset>
<file path="MANIFEST" />
<file path="lib/RPC/XML.pm" />
<file path="t/10_data.t" />
<file path="t/14_datetime_iso8601.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=55628">RT #55628</xhtml:a>:
Improve flexibility of date parsing.
This adds the ability to pass any ISO 8601 string to the
RPC::XML::datetime_iso8601 constructor.
</description>
</change>
</release>
<release date="2011-08-13T17:30:00-07:00" version="0.75" sc:tag="0.75">
<change git:commit="69eba1c169417b60c13b9a00665f9f0a52e3b949">
<file path="MANIFEST" />
<description>
Somehow, t/13_no_deep_recursion.t never got added to MANIFEST.
</description>
</change>
<change git:commit="d0f00193b051e8dce1ef072348737c515e02dd8d">
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=65154">RT #65154</xhtml:a>:
Fixed a cut/paste error in an error message.
</description>
</change>
<change git:commit="b86ad6375b3fa5f1d19522cff84b71fa97a14bb7">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="t/51_client_with_host_header.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=68792">RT #68792</xhtml:a>:
Merge pull request #2 from dragon3/master
(<xhtml:a href="https://github.com/dragon3">https://github.com/dragon3</xhtml:a>).
Allow setting of "Host" header, and test suite for it.
</description>
</change>
<change git:commit="51448ca16b097537f0eac4120f840e7542ec0e66">
<fileset>
<file path="MANIFEST" />
<file path="t/51_client_with_host_header.t" />
</fileset>
<description>
Added new test suite to MANIFEST, fixed spelling.
Also added "plan tests" line to the test suite.
</description>
</change>
<change git:commit="c7dfbfccde32621caf59b1fd5c3919fbaf8b2e02">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
<file path="t/41_server_hang.t" />
</fileset>
<description>
Merge pull request #3 from yannk/master
(<xhtml:a href="https://github.com/yannk">https://github.com/yannk</xhtml:a>).
Expat parser subclass is protected against ext ent attack, libxml
isn't.
</description>
</change>
<change git:commit="2e5292c32d326d90699da355c9c3543606c120af">
<file path="t/41_server_hang.t" />
<description>
Undo a change to this suite from yannk's pull.
</description>
</change>
<change git:commit="70e5e86e5d53c7aa2e3d6ecbdc450da599dc8dff">
<fileset>
<file path="etc/make_method" />
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
More perlcritic-driven clean-up.
This is mostly POD sections, but also includes heavy re-working of
etc/make_method and parts of lib/RPC/XML.pm.
</description>
</change>
<change git:commit="ed371c566925c1fff75c1abe26844e5ab3b16e50">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="t/21_xml_libxml.t" />
</fileset>
<description>
Fixed external entity handling on MacOS.
Also made small change to the test suite to be cleaner.
</description>
</change>
<change git:commit="2c63eeb48fb59087c9768e7be32e064a9b012982">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
</fileset>
<description>
Took out warnings on external entities blocking.
Now it blocks silently. Also cleaned up some docs.
</description>
</change>
<change git:commit="c17c8f05bf132ff8564fd3d633d7b8ed6d59d64b">
<file path="t/15_serialize.t" />
<description>
Additions to increase code coverage in XML.pm.
</description>
</change>
<change git:commit="1a92f352abc670dc1e54b3fbdbffebd0aefdc60c">
<file path="lib/RPC/XML.pm" />
<description>
Turns out this wasn't exporting RPC_I8.
</description>
</change>
<change git:commit="235afd8c7c7140b5a3eb837b1ec38c3cbb26c35e">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="xt/02_pod_coverage.t" />
</fileset>
<description>
Made 5.8.8 the new minimum-required perl.
Also dropped the utf8_downgrade hack, which affected an xt test.
</description>
</change>
<change git:commit="7edab9cbb49b96ef2c3bb5c1f42157f15ae888ad">
<file path="lib/RPC/XML/Client.pm" />
<description>
Improved arguments-checking in send_request.
</description>
</change>
<change git:commit="f82de550319e5e16c292d96a0b6ffcbea1fe365d">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Fixed error-cases in usage of File::Temp->new().
File::Temp::new croaks on errors, doesn't return undef like I
thought.
</description>
</change>
<change git:commit="11db8815f41084b3a3ab099a4741959cdf0bd9fd">
<fileset>
<file path="MANIFEST" />
<file path="lib/RPC/XML/Function.pm" action="DELETE" />
<file path="lib/RPC/XML/Method.pm" action="DELETE" />
<file path="lib/RPC/XML/Procedure.pm" />
</fileset>
<description>
Roll Method.pm and Function.pm into Procedure.pm.
Remove Method.pm and Function.pm from distro.
</description>
</change>
<change git:commit="61241910ef453f45de89fbbecb51212bd7eb829e">
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<description>
Fixed regexp for methodName validation.
</description>
</change>
<change git:commit="343e66b597f2d1f5fe5a903bddb01876001e5294">
<fileset>
<file path="t/10_data.t" />
<file path="t/11_base64_fh.t" />
<file path="t/12_nil.t" />
<file path="t/15_serialize.t" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
<file path="t/25_parser_negative.t" action="ADD" />
<file path="t/29_parserfactory.t" />
<file path="t/30_method.t" />
<file path="t/40_server.t" />
<file path="t/40_server_xmllibxml.t" />
<file path="t/50_client.t" />
<file path="t/BadParserClass.pm" action="ADD" />
<file path="t/meth_good_1.xpl" />
<file path="t/namespace3.xpl" />
<file path="t/svsm_text.b64" action="ADD" />
<file path="t/util.pl" />
</fileset>
<description>
First round of Devel::Cover-inspired improvements.
These are the changes to the test suites to increase coverage of the
code.
</description>
</change>
<change git:commit="d04bd3c06a69b3885857fb85179458e2830db69c">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Fixes and such from Devel::Cover analysis.
</description>
</change>
<change git:commit="b8f94379ae4b01ae922e352a31b6150e0e3c7cbf">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/30_method.t" />
<file path="t/meth_good_1.xpl" />
<file path="t/meth_good_2.xpl" action="ADD" />
<file path="t/meth_good_3.xpl" action="ADD" />
</fileset>
<description>
Fixes for file-based method loading/reloading.
New tests in the suite, and re-working of the ugliest hacky part of this
package.
</description>
</change>
<change git:commit="ffb4ccff320e9b521308c81279845d5a67eb64f8">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/30_method.t" />
<file path="t/meth_good_3.xpl" />
</fileset>
<description>
RPC::XML::Procedure test-coverage improvement.
Also removed some unneeded code.
</description>
</change>
<change git:commit="105d7d2a5f38a208772f34ebf990bac428abf129">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/30_method.t" />
<file path="t/40_server.t" />
</fileset>
<description>
Last round of RPC::XML::Procedure test coverage.
This is mostly in t/40_server.t, though some bugs were found and
addressed in the modules and in t/30_method.t.
</description>
</change>
<change git:commit="010bc4ad28cd73b092ac4fdaa7e7f94d463b46ec">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Documentation clean-up and update.
</description>
</change>
<change git:commit="b801e5449ec901ee40a637f65950e5598c26089b">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Changes from new Perl::Critic::Bangs policies.
</description>
</change>
<change git:commit="2da2abffca68579b10f1b906ec9adbcd61a">
<fileset>
<file path="xt/01_pod.t" />
<file path="xt/02_pod_coverage.t" />
<file path="xt/03_meta.t" />
<file path="xt/04_minimumversion.t" />
<file path="xt/05_critic.t" />
</fileset>
<description>
Adjustments to reflect moving from t to xt.
Also made changes to xt/02_pod_coverage.t to reflect changes to
modules.
</description>
</change>
<change git:commit="fd93112b964188a551e8ce206a5941011a8f152c">
<file path="lib/RPC/XML/Client.pm" />
<description>
Removed some error checks that can never fail.
</description>
</change>
<change git:commit="681a9a7a600b87898aea5a6fe797439dfc319c1d">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
</fileset>
<description>
Code-coverage-driven changes and added tests.
</description>
</change>
<change git:commit="8f30897dfe5f8af5a7d2b2b6e7e956bebb47d31d">
<file path="etc/make_method" />
<description>
Fixes from new Perl::Critic::Bangs policies.
</description>
</change>
<change git:commit="72b0b1e897bee75dc6b40b15dbcd4d51d38ec6e7">
<file path="lib/RPC/XML/Server.pm" />
<description>
Removed usage of AutoLoader completely.
</description>
</change>
<change git:commit="294c25cec95168b2ba0ab2187c0dbb1d8d7677a7">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
<file path="xt/02_pod_coverage.t" />
</fileset>
<description>
Removed some dead code and better did the aliases.
This required a change in t/40_server.t for a private sub that no
longer exists. Also updated xt/02_pod_coverage.t for private subs that
have no pod.
</description>
</change>
<change git:commit="9babd1c2a1dd035db0456a5a6de814f120d7a516">
<file path="lib/Apache/RPC/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=67694">RT #67694</xhtml:a>:
Fix a potential infinite-loop condition.
</description>
</change>
</release>
<release date="2011-01-23T12:50:00-08:00" version="0.74" sc:tag="0.74">
<change git:commit="a8537225834935868bda315946f0a0ce8088ac26">
<file path="t/90_rt54183_sigpipe.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=56800">RT #56800</xhtml:a>:
Make this suite skip all tests on Windows platforms.
</description>
</change>
<change git:commit="7f70bb335266db40899aef1263f500a2abfab142">
<file path="lib/Apache/RPC/Server.pm" />
<description>
Clean up some run-time "use of undefined value" messages.
</description>
</change>
<change git:commit="61de588a81d12a5000bb0f6d64cdd1dcc471999c">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="t/90_rt58323_push_parser.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=58323">RT #58323</xhtml:a>:
Started as making the parser interfaces correctly report errors when
passed null-length strings or "0" values. Turned out that the error
return interface from XMLLibXML.pm was not consistent with the rest of
the system, so fixed that as well.
</description>
</change>
<change git:commit="12dc29c33da5e9a14dcb57d8e8eb9a47cbf0b649">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/40_server.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=58240">RT #58240</xhtml:a>:
Applied a patch from Martijn van de Streek that adds access to the
HTTP::Request object to called method code.
</description>
</change>
<change git:commit="cd498bd7cabfb6dc453517bc653aa853425e671a">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="t/90_rt58065_allow_nil.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=58065">RT #58065</xhtml:a>:
Allow the parsing of <xhtml:tt><nil /></xhtml:tt> tags when they
are encountered, even if $RPC::XML::ALLOW_NIL is not set. Only limit
the generation of these tags.
</description>
</change>
<change git:commit="f8288640e3bf979d85865635c304643c2f63a6e5">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/41_server_hang.t" />
</fileset>
<description>
This test sporadically fails, so enhance the error message for more info.
Also alter the test slightly, hoping it fixes the random failures.
</description>
</change>
<change git:commit="4ef6b98fd97e9fe42b3813dcac9c0bbbe4bf3647">
<file path="etc/make_method" />
<description>
Applied perlcritic to the make_method tool.
</description>
</change>
<change git:commit="e787398f714fa33ef12ad4b5da79624b7435c8db">
<fileset>
<file path="lib/XML/RPC.pm" />
<file path="t/10_data.t" />
<file path="t/20_xml_parser.t" />
<file path="t/21_xml_libxml.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=62916">RT #62916</xhtml:a>:
Previous adjustments to the <xhtml:tt>dateTime.iso8601</xhtml:tt>
stringification caused it to no longer fit the XML-RPC spec. Fixed.
</description>
</change>
<change git:commit="81e3fab5732b1e402616bd33b5f81f55dc870c29">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Used <xhtml:tt>warnings::unused</xhtml:tt> to find unused variables
not found by Perl::Critic.
</description>
</change>
<change git:commit="2537bdb141d4b6be8ace5b3db48ba2fd2c70ac81">
<file path="t/10_data.t" />
<description>
Realized I had no boundary-tests for ints in smart_encode(). This
revealed some problems with i8 values on my 32-bit system. Don't
want to introduce dependency on BigInt right now, so marked those
tests "TODO".
</description>
</change>
</release>
<release date="2010-03-16T22:45:00-07:00" version="0.73" sc:tag="0.73">
<change git:commit="b234042a3b3e74ee83a74163bc68253130f76c21">
<fileset>
<file path="MANIFEST" />
<file path="t/28_parser_bugs_50013.t" action="DELETE" />
<file path="t/90_rt50013_parser_bugs.t" action="ADD" />
</fileset>
<description>
Rename of t/28_parser_bugs_50013.t to fit more universal scheme for
test suites that directly address specific RT bugs.
</description>
</change>
<change git:commit="984e381b2ec9e56896c4d35d6eb9f3e68c11629c">
<fileset>
<file path="lib/RPC/XML/Server.pm" />
<file path="t/90_rt54183_sigpipe.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=54183">RT #54183</xhtml:a>:
Provide handling of SIGPIPE when sending the response to the client,
in case they've terminated the connection.
</description>
</change>
<change git:commit="d5a354d801ca5b7e6243cb4c6289468dcd7be244">
<file path="MANIFEST" />
<description>
Forgot to add the new test suite to MANIFEST.
</description>
</change>
<change git:commit="3195d6348f01e60b64282e0bd8fab902eecfb219">
<file path="lib/RPC/XML/Server.pm" />
<description>
Forgot to update the module version number.
</description>
</change>
<change git:commit="87735249de1ec4311ecd9bbb04d890e1b7649c47">
<file path="lib/RPC/XML.pm" />
<description>
Fix typo in reftype() call.
</description>
</change>
<change git:commit="cd38fc54f524518e3fc1d8effdf76c5b8e99a669">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/90_rt54494_blessed_refs.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=54494">RT #54494</xhtml:a>:
Fix handling of blessed references in smart_encode().
</description>
</change>
<change git:commit="2664b6b614d62e9c110bed12d5a8f4d658d1c4a0">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Large-scale code clean-up driven by Perl::Critic. All critic flags
down to severity 1 now removed.
</description>
</change>
<change git:commit="e5a2f983fcc2df9b3f126cb8af26e917812c46d7">
<file path="MANIFEST" />
<description>
Forgot to add t/90_rt54494_blessed_refs.t when it was created.
</description>
</change>
</release>
<release date="2009-12-13T21:45:00-08:00" version="0.72" sc:tag="0.72">
<change git:commit="afc23bd0c54cc59c79fdf4945cb17818d6caed91">
<fileset>
<file path="Makefile.PL" />
<file path="t/40_server_xmllibxml.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=52662">RT #52662</xhtml:a>:
Fix requirement specification for XML::LibXML.
</description>
</change>
<change git:commit="dd5dcb9d7268de1ceb0b68a4e36d66f80610a906">
<file path="lib/RPC/XML.pm" />
<description>
Some more clean-up of the docs, removing a redundant section.
</description>
</change>
</release>
<release date="2009-12-07T20:00:00-08:00" version="0.71" sc:tag="0.71">
<change git:commit="8cc9534a7da336de8c646ff1bc473ce531f43cd6">
<fileset>
<file path="MANIFEST" />
<file path="t/01_pod.t" action="DELETE" />
<file path="t/02_pod_coverage.t" action="DELETE" />
<file path="t/03_meta.t" action="DELETE" />
<file path="t/04_minimumversion.t" action="DELETE" />
<file path="t/05_critic.t" action="DELETE" />
<file path="xt/01_pod.t" action="ADD" />
<file path="xt/02_pod_coverage.t" action="ADD" />
<file path="xt/03_meta.t" action="ADD" />
<file path="xt/04_minimumversion.t" action="ADD" />
<file path="xt/05_critic.t" action="ADD" />
</fileset>
<description>
Moved author-only tests to xt/, updated MANIFEST.
</description>
</change>
<change git:commit="eb38e38dafe8491185a8638f4842fa419022b5c4">
<file path="MANIFEST" />
<description>
Add test suite t/28_parser_bugs_50013.t, which was omitted from last
release.
</description>
</change>
<change git:commit="9d273720c0163349c9822a1f79b676d8227bdd7c">
<fileset>
<file path="xt/01_pod.t" />
<file path="xt/02_pod_coverage.t" />
<file path="xt/03_meta.t" />
<file path="xt/04_minimumversion.t" />
<file path="xt/05_critic.t" />
</fileset>
<description>
Re-engineered the author-only/release tests, since they're no
longer in the t/ directory and thus should not interfere.
</description>
</change>
</release>
<release date="2009-12-06T22:00:00-08:00" version="0.70" sc:tag="0.70">
<change git:commit="8e62c642a888608cf60fc190abcb60a49c061d73">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/10_data.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=49406">RT #49406</xhtml:a>:
Make Base64 data-type allow zero-length data.
</description>
</change>
<change git:commit="22d750832ab8dacb9ee354553f0e944d47270845">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/10_data.t" />
</fileset>
<description>
Hand-applied a patch (most likely from Bill Moseley) to extend the
construction of dateTime.iso8601 data-types.
</description>
</change>
<change git:commit="8eb6f33ae986581088bda6dd44dc734fee4ff580">
<file path="t/40_server.t" />
<description>
Fixed another corner-case for the url() test.
</description>
</change>
<change git:commit="4ffb86c1ec8b505c8a45b6e0c0c7ac442aaf54c6">
<file path="lib/RPC/XML.pm" />
<description>
Fixed a case from previous work that caused "undef" warnings.
</description>
</change>
<change git:commit="80e32c55ef781ed1615f47aa413464aeeadcf023">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="t/28_parser_bugs_50013.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=50013">RT #50013</xhtml:a>:
Restore backwards-compatibility for projects that use RPC::XML::Parser
directly.
</description>
</change>
<change git:commit="2660dfe40d48647e0be328a44f498f7173a65f19">
<file path="lib/RPC/XML/Procedure.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=50143">RT #50143</xhtml:a>:
Incorrectly called server_fault() as if it were a coderef.
</description>
</change>
<change git:commit="493632a55258a0aafca4a93c2d9459dd79bdf09a">
<file path="lib/Apache/RPC/Server.pm" />
<description>
Applied patch from Frank Wiegand to fix a POD problem.
</description>
</change>
<change git:commit="85d78349d66e0a44f403fdb71a9094f1d558499d">
<file path="lib/RPC/XML.pm" />
<description>
Some additional regexp issues on dateTime.iso8601, to handle
backwards-compatibility.
</description>
</change>
<change git:commit="0ae7cd67879c2fd0500f144f259461aefb819639">
<file path="lib/RPC/XML/ParserFactory.pm" />
<description>
Fixed some minor doc errors.
</description>
</change>
<change git:commit="b8b66741f0e453430467dba7f5552c2ca79bb109">
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<description>
Moved the 'require' of some libraries to the point where they are
first needed, to delay loading until/unless necessary.
</description>
</change>
<change git:commit="6f94c6b5fc68d41ce0872c594ce41a13c833ad48">
<fileset>
<file path="lib/RPC/XML/Parser/XMLLibXML.pm" action="ADD" />
<file path="t/21_xml_libxml.t" action="ADD" />
<file path="t/29_parserfactory.t" />
<file path="t/40_server_xmllibxml.t" action="ADD" />
</fileset>
<description>
Implement support for XML::LibXML in the parser-factory.
</description>
</change>
</release>
<release date="2009-09-03T10:25:00-07:00" version="0.69" sc:tag="0.69">
<change git:commit="da64377d20640d347436c856c0fbc59c09c96ecd">
<fileset>
<file path="t/00_load.t" />
<file path="t/01_pod.t" />
<file path="t/02_pod_coverage.t" />
<file path="t/10_data.t" />
<file path="t/11_base64_fh.t" />
<file path="t/12_nil.t" />
<file path="t/15_serialize.t" />
<file path="t/20_parser.t" />
<file path="t/50_client.t" />
</fileset>
<description>
Minor clean-up of old CVS/SVN keyword references.
</description>
</change>
<change git:commit="b5da315f4fe1b3ffbf179c334ef1b58af625d483">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" action="ADD" />
<file path="lib/RPC/XML/ParserFactory.pm" action="ADD" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/20_parser.t" action="DELETE" />
<file path="t/20_xml_parser.t" action="ADD" />
<file path="t/29_parserfactory.t" action="ADD" />
<file path="t/40_server.t" />
<file path="t/util.pl" />
</fileset>
<description>
Converted parsing to be from a specific class to a parser-factory style.
This included renaming the existing parser class and shuffling tests
around.
</description>
</change>
<change git:commit="1115ea4070938edcc3ae0bb192c5fae47c542ab8">
<file path="t/70_compression_detect.t" />
<description>
Cleaner approach to scrubbing symbol tables.
</description>
</change>
<change git:commit="6cc8cea15f527a8d2a3f8e402941bcd7a93b7c13">
<fileset>
<file path="t/00_load.t" />
<file path="t/01_pod.t" />
<file path="t/02_pod_coverage.t" />
<file path="t/03_meta.t" action="ADD" />
<file path="t/04_minimumversion.t" action="ADD" />
<file path="t/05_critic.t" action="ADD" />
</fileset>
<description>
New tests, and developer-specific tests changed to only run in my copy.
</description>
</change>
<change git:commit="e31cca20b53d062faa2234f10f8794e4e7058c27">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/11_base64_fh.t" />
<file path="t/15_serialize.t" />
<file path="t/20_xml_parser.t" />
<file path="t/30_method.t" />
<file path="t/35_namespaces.t" />
<file path="t/40_server.t" />
<file path="t/41_server_hang.t" />
<file path="t/50_client.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=47806">RT #47806</xhtml:a>:
One more patch for Windows compatibility with temp-files.
</description>
</change>
<change git:commit="03e00c1944254eee3dba120c2887bc34a5655a35">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<file path="lib/RPC/XML/ParserFactory.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Fixes based on Perl::Critic and other best-practices techniques.
</description>
</change>
<change git:commit="e02196452fd86135b24cc936f969ee5a261c8483">
<file path="etc/make_method" />
<description>
Also made changes based on Perl::Critic.
</description>
</change>
<change git:commit="3c01cda3398e0b0fceef2cc36492ccbff6aba773">
<fileset>
<file path="MANIFEST" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
</fileset>
<description>
Expanded definition of the interface to include push-parsing methods.
Documented these and added stubs to RPC::XML::Parser::XMLParser that
throw exceptions when called by a non-push-parser instance. Reflected
changes to test suite in MANIFEST.
</description>
</change>
<change git:commit="4ed1f2ced8cb30ea4776b54ccab8c6ea774a619a">
<file path="lib/RPC/XML/Parser/XMLParser.pm" />
<description>
Slight tweak to make this 5.6.1-compatible.
</description>
</change>
<change git:commit="b45db2993c694d312d2bee27a0a1cda850acb4d4">
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=42736">RT #42736</xhtml:a>:
Support user-adjustment of server-based faults, and normalize the
existing faults.
</description>
</change>
<change git:commit="b449b138f243ad40e61a110bbe9514be277ee5b1">
<file path="lib/RPC/XML/Procedure.pm" />
<description>
Fix encoding of return values from call() when the method called is of
type Function (and thus has no strict signatures).
</description>
</change>
<change git:commit="9a0fe50ad9648716e287717d2007a439946930a1">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/13_no_deep_recursion.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=41063">RT #41063</xhtml:a>:
Re-visit how arrays and structs are smart-encoded and constructed, so
as to avoid cyclical data structure references.
</description>
</change>
</release>
<release date="2009-07-10T01:30:00-07:00" version="0.67" sc:tag="0.67">
<change git:commit="67180ef41cdfa56c771e6b9dd8d5f1f116b7dc77">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/70_compression_detect.t" action="ADD" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=47219">RT #47219</xhtml:a>:
Mis-read the patch from previous fix, this actually fixes it.
Also added a test suite to check for compression-detection.
</description>
</change>
</release>
<release date="2009-07-09T07:36:15-07:00" version="0.66" sc:tag="0.66">
<change git:commit="d7469ec822d50fdc48642dae60c18d0a6bd5c641">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=47219">RT #47219</xhtml:a>:
Re-did the detection of compression availability (testing for the
Compress::Zlib module) based on comments in this bug.
</description>
</change>
<change git:commit="8ce60bd0d5f982ea435760f24a1fdd92eaea614d">
<file path="t/60_net_server.t" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=47220">RT #47220</xhtml:a>:
Net::Server tests are not (currently) viable on Windows. Also made
script taint-safe.
</description>
</change>
<change git:commit="b3f8e9474a51914ed599d3e6c50d5413445335c4">
<fileset>
<file path="t/40_server.t"/>
<file path="t/50_client.t"/>
<file path="t/util.pl"/>
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=47221">RT #47221</xhtml:a>:
Applied a patch from kmx@volny.cz, for better Windows testing.
</description>
</change>
<change git:commit="32fc7eb768bb0e10cb7014e698d5be4fc2cf8689">
<fileset>
<file path="lib/Apache/RPC/Server.pm"/>
<file path="lib/Apache/RPC/Status.pm"/>
<file path="lib/RPC/XML.pm"/>
<file path="lib/RPC/XML/Client.pm"/>
<file path="lib/RPC/XML/Function.pm"/>
<file path="lib/RPC/XML/Method.pm"/>
<file path="lib/RPC/XML/Parser.pm"/>
<file path="lib/RPC/XML/Procedure.pm"/>
<file path="lib/RPC/XML/Server.pm"/>
</fileset>
<description>
All modules now use the "warnings" pragma.
</description>
</change>
</release>
<release date="2009-06-17T06:00:00-07:00" version="0.65" sc:tag="0.65">
<change git:commit="1f4df1152f2edccc25f8e7c3fafcbdcd71987baa">
<fileset>
<file path="etc/make_method" />
<file path="etc/rpc-method.dtd" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="t/30_method.t" />
<file path="t/35_namespaces.t" action="ADD" />
<file path="t/namespace1.xpl" action="ADD" />
<file path="t/namespace2.xpl" action="ADD" />
<file path="t/namespace3.xpl" action="ADD" />
</fileset>
<description>
Support for declaration of namespaces in XPL code.
Adds a new test suite and includes a rewrite/update of the method
tests. Change also covers the make_method tool and the DTD for XPL
files.
</description>
</change>
<change git:commit="b2acc9addbb3521ad0f0a73f3df8be3b51a55db0">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/02_pod_coverage.t" />
</fileset>
<description>
Interim fix for encoding issues, prior to the mega-encoding work.
This makes the library correctly create octet-based messages, rather
than letting UTF-8 leak in if it was passed in initially.
</description>
</change>
<change git:commit="a0e3ddd813afc71b44d4b3f6378a5f21fd49f241">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
</fileset>
<description>
Follow-up to previous commit, some serialization-related problems.
Not all instances of bytelength() had been removed after the previous
slate of changes, and once that was done some tests in 15_serialize.t
broke.
</description>
</change>
<change git:commit="b7448ee254c4fb5a75b69cc319f9026e7d1dded0">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="t/12_nil.t" action="ADD" />
<file path="t/30_method.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=34132">RT #34132</xhtml:a>:
Based on a patch from the requestor, added support for <nil/>.
Documentation and tests are present, but a little sparse. This change
also incorporates a small add to <xhtml:tt>lib/RPC/XML/Parser.pm</xhtml:tt>
to address
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=42033">RT #42033</xhtml:a>.
</description>
</change>
<change git:commit="c22788c9b05600fe2275827cc853e26da3e4dce9">
<fileset>
<file path="t/40_server.t" />
<file path="t/41_server_hang.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=27778">RT #27778</xhtml:a>:
Fix problems with child-process management on Windows that was causing
<xhtml:tt>t/40_server.t</xhtml:tt> to hang during test runs. Also put
skip-clause into <xhtml:tt>t/41_server_hang.t</xhtml:tt>, as according
to the person reporting, it doesn't work at all on MSWin (the
network code is very UNIX-y).
</description>
</change>
<change git:commit="0c7085648528f67a83d9902f02ddd2a83a412146">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/10_data.t" />
</fileset>
<description>
Applied a regexp-fix from Joakim Mared for stringification of doubles.
</description>
</change>
<change git:commit="1cd3b4ac72f787dc017aa5ef3443a0c886362108">
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="t/10_data.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=35106">RT ticket #35106</xhtml:a>:
Make the behavior of RPC::XML::array constructor work as expected.
This led to adding use of Scalar::Util and cleaning up the places where
I was still doing "UNIVERSAL::isa(...)" hacks to test refs without the
risk of directly calling ->isa() on a potentially-unblessed ref.
</description>
</change>
<change git:commit="edb8ef60b745db845024d0a7b41e7b50fdbd6e29">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Update the copyright year and license information, and add contact data
to all POD sections for RT, AnnoCPAN, GitHub, etc.
</description>
</change>
<change git:commit="b3b1df84a95c26f101a3468e5658c41556a0a6ce">
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="t/50_client.t" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=34559">RT ticket #34559</xhtml:a>:
Allow control of LWP::UA timeouts from within client class.
</description>
</change>
<change git:commit="f6b4ee845076ebde9f1c7921e6c70235b4e499f5">
<file path="lib/RPC/XML/Server.pm" />
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=43019">RT ticket #43019</xhtml:a>:
Small hack to the existing SSL hack for Socket6 problems.
</description>
</change>
<change git:commit="4e1e0061a56a70c1d4597b7a801a4d70cdb12d9b">
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/Apache/RPC/Status.pm" />
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Function.pm" />
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Since Scalar::Util requires 5.006, make that (5.006001, actually) the
base required Perl version.
</description>
</change>
</release>
<release date="2008-09-29T04:15:00-07:00" version="0.64" sc:tag="v0_64">
<change>
<file path="t/40_server.t" revision="361" />
<description>
Further flexibility on the test of $srv->url(). This should (finally)
catch any variation of 127.* address and/or host/domain naming that
aliases to "localhost".
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Parser.pm" revision="363" />
<file path="t/20_parser.t" revision="363" />
</fileset>
<description>
Lingering problem from
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=30354">RT ticket #30354</xhtml:a>,
RPC::XML::Parser did not get the change committed that included
parser-level support for <i8>. Also added tests for parsing
RPC::XML::request objects and all the data-type objects to the parser
test suite (had they been there before, I would have caught this
myself).
</description>
</change>
</release>
<release date="2008-09-19T02:23:12-07:00" version="0.63" sc:tag="v0_63">
<change>
<file path="lib/RPC/XML.pm" revision="359" />
<description>
Forgot to increment $VERSION before the previous commit. Won't
show up in CPAN as an available update otherwise.
</description>
</change>
</release>
<release date="2008-09-19T02:12:02-07:00" version="0.62" sc:tag="v0_62">
<change>
<file path="t/40_server.t" revision="355" />
<description>
Extended the die message when $srv fails to allocate. Some testers are
getting a failure here but I have no idea how or why.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" revision="356" />
<description>
Testers-service reports showed that the new i8 type was not auto-boxing
correctly on true 64-bit machines. Turns out I had bogus values for
the maximums and minimums, not just for 8-byte ints but also for plain
4-byte ones as well.
</description>
</change>
</release>
<release version="0.61" sc:tag="v0_61" date="2008-09-15T01:38:44-07:00">
<change>
<file path="t/00_load.t" revision="346" />
<description>
Converted to Test::More due to some cpan-testers reports that showed
test 2 failing. Hoping this might provide better feedback if it
continues to fail.
</description>
</change>
<change>
<file path="t/40_server.t" revision="347" />
<description>
Changed a test for "localhost:$port" in the server URL method to
optionally allow localhost.localdomain, for those systems whose
/etc/hosts cause the former to convert to the latter. Was causing
false failures.
</description>
</change>
<change>
<fileset>
<file path="t/40_server.t" revision="348" />
<file path="t/50_client.t" revision="348" />
<file path="t/60_net_server.t" revision="348" />
</fileset>
<description>
Test suites armored against server processes that die as a result of
croak() or other calls within 3rd-party modules. The client and
net_server suites were also converted to Test::More at this time.
</description>
</change>
<change>
<file path="t/40_server.t" revision="349" />
<description>
Fix for
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=36078">RT ticket #36078</xhtml:a>,
fix the URL testing on the server object to be less strict. Instead of
only allowing "localhost", now also allows "localhost.localdomain" and
does a look-up of "localhost" for the 127.* IP address and permits
that as well. In essence, this extends and supercedes the second change
listed above after more invariant cases were discovered.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="350" />
<file path="t/10_data.t" revision="350" />
</fileset>
<description>
Per
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=30354">RT ticket #30354</xhtml:a>
and specific request from a large agency using this package,
implemented an "i8" type as an extension to the official XML-RPC
specification. Documentation and tests included.
</description>
</change>
<change>
<fileset>
<file path="t/40_server.t" revision="352" />
<file path="t/60_net_server.t" revision="352" />
</fileset>
<description>
Some of the work in armoring the test suites against server-death
changed the counts on tests and on call-counts in the system.status
method. Some explicit re-starts didn't help.
</description>
</change>
</release>
<release version="0.60" sc:tag="v0_60" date="2008-04-09T03:01:07-07:00">
<change>
<fileset>
<file path="t/00_load.t" revision="328" />
<file path="t/01_pod.t" revision="328" />
<file path="t/02_pod_coverage.t" revision="328" />
<file path="t/10_data.t" revision="328" />
<file path="t/11_base64_fh.t" revision="328" />
<file path="t/15_serialize.t" revision="328" />
<file path="t/20_parser.t" revision="328" />
<file path="t/30_method.t" revision="328" />
<file path="t/40_server.t" revision="328" />
<file path="t/50_client.t" revision="328" />
<file path="t/60_net_server.t" revision="328" />
</fileset>
<description>
Related to the main change of
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=30849">RT ticket #30849</xhtml:a>,
fixes potential problem in the creation of temporary file names if a
test script is run directly from the "t" directory. While at it, added
a line with the Subversion "Id" keyword and set the "svn:keywords"
property on all test scripts. The code-fix is based on suggestions from
Jörg Meltzer <joerg@joergmeltzer.de>.
</description>
</change>
<change>
<file path="lib/RPC/XML/Client.pm" revision="329" />
<description>
Per <xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=30849">RT ticket #30849</xhtml:a>,
fix problem caused by having colons in temp-file names. Fix largely
from patch suggested by Jörg Meltzer <joerg@joergmeltzer.de>.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" revision="331" />
<description>
Applied a modified form of a patch submitted by Mike Rylander
<miker@n2bb.com> to make things work under SSL.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Server.pm" revision="332" />
<file path="t/41_server_hang.t" action="ADD" revision="332" />
</fileset>
<description>
Fixed the bug in RPC::XML::Server::process_request() could lead to an
infinite loop if the client shuts down the socket before the full
request is sent. Added a test script specific to this bug, to catch it
if it reappears.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="333" />
<file path="t/10_data.t" revision="333" />
</fileset>
<description>
Per <xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=30042">RT ticket #30042</xhtml:a>,
made a do-nothing branch in RPC::XML::smart_encode actually die with an
error when a reference-type is passed in that cannot be converted.
Added two tests to cover this, and took the opportunity to convert
10_data.t to Test::More.
</description>
</change>
<change>
<fileset>
<file path="t/40_server.t" revision="334" />
<file path="t/50_client.t" revision="334" />
</fileset>
<description>
Applied a patch from Chris Darroch to make the spawning of servers work
in some corner-cases that were failing. All that was required was
explicit specification of 'localhost' in the instantiation.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Parser.pm" revision="336" />
<file path="t/20_parser.t" revision="336" />
</fileset>
<description>
Applied a patch from Masatake Daimon (大門æ£å²³) to improve the performance
of the parser by reducing the (vast) number of string-concat operations.
During this change, re-wrote the parser tests to use Test::More and
have better diagnostics.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Server.pm" revision="337" />
<file path="t/40_server.t" revision="337" />
</fileset>
<description>
Per <xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=29351">RT ticket #29351</xhtml:a>,
fixed a bug that caused a server to incorrectly report the location and
cause of an XML parsing error in the request. The actual bug and
solution were different than initially reported in the ticket.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="338" />
<file path="t/10_data.t" revision="338" />
</fileset>
<description>
Per <xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=31818">RT ticket #31818</xhtml:a>,
fix to the XML serialization of double values to conform to the
XML-RPC spec, as it does not allow for exponential notation. This also
required changes to the tests, as values were no longer being
auto-truncated at 5 decimal places. Also finished cleaning up the
t/10_data.t test suite with diagnostic messages on the tests that
had not previously gotten them.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="339" />
<file path="t/20_parser.t" revision="339" />
</fileset>
<description>
In response to concerns raised by a report of parsing problems, added
XML entity encoding for ' and " (&apos; and &quot;)
to the base RPC::XML module, and added a test to the parser suite to
make sure it is correctly turning all core XML entities back into
characters during the parsing process.
</description>
</change>
<change>
<fileset>
<file path="lib/Apache/RPC/Server.pm" revision="341" />
<file path="lib/RPC/XML/Server.pm" revision="341" />
<file path="t/40_server.t" revision="341" />
</fileset>
<description>
<xhtml:a href="https://rt.cpan.org/Ticket/Display.html?id=34557">RT ticket #34557</xhtml:a>:
Provide access to client-side connection info to methods called on
the server, by placing the data from get_peeraddr() (as abstracted
through existing methods in HTTP::Daemon::ClientConn and
Apache::Connection) into localized keys on the server object, as is
already done with the method_name and signature pseudo-keys. Tests
added to 40_server.t and docs updated.
</description>
</change>
<change>
<fileset>
<file path="etc/make_method" revision="343" />
<file path="lib/Apache/RPC/Server.pm" revision="343" />
<file path="lib/Apache/RPC/Status.pm" revision="343" />
<file path="lib/RPC/XML/Client.pm" revision="343" />
<file path="lib/RPC/XML/Function.pm" revision="343" />
<file path="lib/RPC/XML/Method.pm" revision="343" />
<file path="lib/RPC/XML/Parser.pm" revision="343" />
<file path="lib/RPC/XML/Procedure.pm" revision="343" />
<file path="lib/RPC/XML/Server.pm" revision="343" />
<file path="lib/RPC/XML.pm" revision="343" />
</fileset>
<description>
Updated all copyright/redistribution information with current year and
correct/current URLs for Artistic and LGPL licenses.
</description>
</change>
</release>
<release version="0.59" sc:tag="v0_59" date="2006-06-30T01:48:37-06:00">
<change>
<file path="t/10_data.t" revision="1.10" />
<description>
Eliminated the source of some "Modification of a read-only value..."
errors. Patch from Juan Camacho.
</description>
</change>
<change>
<fileset>
<file path="t/01_pod.t" action="ADD" revision="1.1" />
<file path="t/02_pod_coverage.t" action="ADD" revision="1.1"/>
</fileset>
<description>
Two new unit-test suites added; the first checks the validity of the
POD docs in each module (correctness tests), the other checks that POD
covers all the publically-visible API routines (coverage tests).
</description>
</change>
<change>
<fileset>
<file path="lib/Apache/RPC/Server.pm" revision="1.28"/>
<file path="lib/Apache/RPC/Status.pm" revision="1.6"/>
<file path="lib/RPC/XML/Function.pm" revision="1.4"/>
<file path="lib/RPC/XML/Parser.pm" revision="1.13"/>
<file path="lib/RPC/XML/Server.pm" revision="1.44"/>
</fileset>
<description>
Fixes to POD documentation (and/or inline comments) as uncovered by the
added POD-oriented unit tests.
</description>
</change>
<change>
<fileset>
<file path="README.apache" action="DELETE"/>
<file path="MANIFEST" revision="1.17"/>
</fileset>
<description>
The README.apache file is no longer relevant.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" revision="1.29" />
<description>
Fixed the logic around the setting of $no_def in new(); it was handling
the no_default method-argument backwards. Found by Eric Cholet.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="1.36"/>
<file path="t/10_data.t" revision="1.11"/>
</fileset>
<description>
Applied a patch from Jos Boumans to add flexibility to the
smart_encode() hack that tries to match bare Perl data to RPC classes.
At the same time, added documentation of the $ENCODE global variable
in the documentation.
</description>
</change>
</release>
<release version="0.58" sc:tag="v0_58" date="2005-05-12T03:24:23-07:00">
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="1.35" />
<file path="t/10_data.t" revision="1.9" />
</fileset>
<description>
Applied patches from Stephen Veiss to fix a small bug in the encoding
method of RPC::XML::string. Trying to encode the literal string "0"
would result in a null string. The patches provided the fix and a
specific test-case for the related suite.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Procedure.pm" revision="1.13" />
<file path="lib/RPC/XML/Server.pm" revision="1.43" />
</fileset>
<description>
Applied a patch from Mike Pomraning to allow user-level functions to
return RPC::XML::fault objects directly without them being further
wrapped by intermediate layers.
</description>
</change>
<change>
<file path="lib/RPC/XML/Procedure.pm" revision="1.14" />
<description>
Implemented a modified version of a patch from Lubomir Host that
addresses an intermittent IOCTL problem when reading XPL files.
</description>
</change>
<change>
<file path="Makefile.PL" revision="1.38" />
<description>
Incremented package version number and put in warning of the impending
move to XML::LibXML.
</description>
</change>
</release>
<release version="0.57" sc:tag="v0_57" date="2004-12-24T03:02:48-08:00">
<change>
<file path="lib/Apache/RPC/Server.pm" revision="1.27" />
<description>
Some minor changes to how values are read from the configuration, to
reduce "use of uninitialized value" warnings in regex operations.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="1.34" />
<file path="t/10_data.t" revision="1.8" />
</fileset>
<description>
Based on a report from Brian Phillips, made adjustments in the
smart_encode helper-routine to deal with blessed references. Anything
that is derived from HASH or ARRAY is encoded as a struct or array,
respectively. Anything derived from SCALAR is dereferenced and encoded
as per usual. Carried this over to the class constructors, with special
attention to the RPC::XML::simple_type class. Added tests to the suite
for all of this, as well.
</description>
</change>
<change>
<fileset>
<file path="lib/Apache/RPC/status.base" revision="1.5" />
<file path="lib/Apache/RPC/status.code" revision="1.4" />
<file path="lib/Apache/RPC/status.help" revision="1.2" />
<file path="lib/RPC/XML/Procedure.pm" revision="1.12" />
<file path="lib/RPC/XML/Server.pm" revision="1.42" />
<file path="methods/status.base" revision="1.6" />
<file path="methods/status.code" revision="1.4" />
<file path="methods/status.help" revision="1.2" />
<file path="t/40_server.t" revision="1.8" />
</fileset>
<description>
The "system.status" method (both the general one and the one that is
specific to Apache) now recognizes an optional boolean parameter that
can keep the status call from counting against the "total_requests"
struct value. This is to allow external monitors (status, health, etc.)
to use that call without running up the value of that field needlessly.
</description>
</change>
</release>
<release version="0.56" sc:tag="v0_56" date="2004-12-09T01:07:00-08:00">
<change>
<file path="etc/make_method" revision="1.10" />
<description>
Small change to the generated XML, to add an "encoding" setting to the
XML preamble.
</description>
</change>
<change>
<fileset>
<file path="t/10_data.t" revision="1.7" />
<file path="t/60_net_server.t" revision="1.4" />
</fileset>
<description>
Very minor changes, to make the test work with older Perls and/or Test
modules.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" revision="1.31" />
<description>
Add "encoding" settings to all XML preambles, and make the scalar
variable "$RPC::XML::ENCODING" an importable symbol, should users want
to change the default encoding. Not currently documented, since this is
technically a break from the XML-RPC spec.
</description>
</change>
<change>
<fileset>
<file path="Makefile.PL" revision="1.35" />
<file path="t/50_client.t" revision="1.8" />
</fileset>
<description>
Traced a bug that was causing test failures in 50_client.t to a bug in
version 5.800 of the LWP package. Now, Makefile.PL explicitly requires
5.801 or higher, and the test suite skips the two tests that are broken
by it, in cases where the system is still at 5.800 or older.
</description>
</change>
<change>
<file path="lib/RPC/XML/Client.pm" revision="1.21" />
<description>
Tightened some numeric comparisons (for deciding to compress and/or
spool to a file), and corrected a typo in an error message.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" revision="1.32" />
<description>
Adding the encoding to the request and response blocks messed up some
of the tests in the 10_data.t and 15_serialize.t suites. Fixed.
</description>
</change>
<change>
<fileset>
<file path="README" revision="1.24" />
<file path="etc/make_method" revision="1.11" />
<file path="etc/rpc-method.dtd" revision="1.7" />
<file path="lib/Apache/RPC/Server.pm" revision="1.26" />
<file path="lib/Apache/RPC/Status.pm" revision="1.5" />
<file path="lib/RPC/XML.pm" revision="1.33" />
<file path="lib/RPC/XML/Client.pm" revision="1.22" />
<file path="lib/RPC/XML/Function.pm" revision="1.3" />
<file path="lib/RPC/XML/Method.pm" revision="1.8" />
<file path="lib/RPC/XML/Parser.pm" revision="1.12" />
<file path="lib/RPC/XML/Procedure.pm" revision="1.11" />
<file path="lib/RPC/XML/Server.pm" revision="1.41" />
</fileset>
<description>
Changed all URL references to the Artistic License from the (no longer
valid) language.perl.com version to the (current, working)
www.opensource.org one.
</description>
</change>
<change>
<fileset>
<file path="ChangeLog" revision="1.26" />
<file path="ChangeLog.xml" revision="1.2" />
<file path="Makefile.PL" revision="1.36" />
<file path="README" revision="1.25" />
</fileset>
<description>
Admin files prepped for 0.56 release (also, the ChangeLog.xml file was
modified to reflect tuning of the schema).
</description>
</change>
</release>
<release version="0.55" sc:tag="v0_55" date="2004-11-30T01:16:57-08:00">
<change>
<file path="lib/RPC/XML/Server.pm" revision="1.39" />
<description>
Fix from Thomax G. to the loop-invariance near line 1403, for a bug
that mostly appears with openACS-based clients.
</description>
</change>
<change>
<file path="t/60_net_server.t" revision="1.3" />
<description>
Clarify in the message emitted why the tests are skipped when
Net::Server is not available.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" revision="1.40" />
<description>
Fix based on input from several sources: The Content-Encoding header
was not being set correctly for responses when compression was applied
to the response message.
</description>
</change>
<change>
<file path="lib/RPC/XML/Procedure.pm" revision="1.10" />
<description>
Applied a fix from the Debian maintainer of this package for their
distribution, David Parrish: auto-reloading of methods was not actually
stuffing the new data into the calling object.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" revision="1.25" />
<description>
Applied a patch from a user to fix a problem with reading PerlSetVar
values withing a <Location> block (worked fine in <Perl> blocks),
as well as a small addition to the examples in the docs.
</description>
</change>
<change>
<fileset>
<file path="ChangeLog.xml" revision="1.1" action="ADD" />
<file path="MANIFEST" revision="1.16" />
</fileset>
<description>
Added this file (ChangeLog.xml) to the distribution.
</description>
</change>
</release>
<release version="0.54" sc:tag="v0_54" date="2004-04-14T04:43:56-07:00">
<change>
<file path="Makefile.PL" revision="1.33" />
<description>
Extended $CLEAN to also remove *.ppd files, and bumped the package
version to 0.54.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Procedure.pm" revision="1.9" />
<file path="lib/RPC/XML.pm" revision="1.30" />
</fileset>
<description>
Applied a patch from Tim Peoples that does three things: the 301
error code in RPC::XML::Procedure::call now includes signature info
when a signature mismatch occurs. RPC::XML::smart_encode turns undef
values into zero-length RPC::XML::string objects. Lastly, the
RPC::XML::string::as_string method turns undef into null values as
well.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="1.28" />
<file path="t/10_data.t" revision="1.6" />
</fileset>
<description>
Small change to the XML character-escaping in RPC::XML::string's
as_string method, so that a lookup-table is used. The same table
is now used to escape keys in structs, as well. Added tests to cover
this. This was suggested by Johnathan Kupferer.
</description>
</change>
<change>
<file path="t/20_parser.t" revision="1.3" />
<description>
Made a small change for the sake of syntax pedantry.
</description>
</change>
<change>
<file path="lib/RPC/XML/Client.pm" revision="1.20" />
<description>
Fix to the error-handling for a failed LWP::UserAgent->request call
send_request (thanks to Jasper Cramwinckel). Also got a small glitch
covered in one of the calls to the inflate() method in Compress::Zlib.
Thanks to John Tobing for that one.
</description>
</change>
<change>
<file path="lib/RPC/XML/Parser.pm" revision="1.11" />
<description>
Dropped a regex-compare in favor of a string-compare for the special
case of the XML tag being dateTime.iso8601. In some locales, the 'lc'
caused problems. This is near line 288.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" revision="1.23" />
<description>
Applied a patch to Apache::RPC::Server (supplied by Tim Peoples) to
support "NoCompression" as a PerlSetVar directive, the function of
which is to disable compression support upon demand.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" revision="1.24" />
<description>
Fixed two minor typo errors in the docs, the names of two of the
PerlSetVar directives.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" revision="1.29" />
<description>
Added to the docs the fact that struct keys are now escaped. Also put
some coverage in the docs on the two ways of initializing a struct
object.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" revision="1.38" />
<description>
Applied a patch from Chris Darroch to allow better handling of
arguments in RPC::XML::Server::server_loop. While the HTTP::Daemon
portion was fine with collapsing the arg list into a hash, the
Net::Server portion actually has documented behavior when it sees the
same argument more than once, and collapsing to a hash caused these
extra arguments to be lost.
</description>
</change>
</release>
<release version="0.53" sc:tag="v0_53" date="2003-02-25T01:12:11-08:00">
<change>
<file path="t/40_server.t" revision="1.7" />
<description>Eliminate a warning under 5.00503.</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" revision="1.25" />
<file path="lib/RPC/XML/Client.pm" revision="1.19" />
<file path="lib/RPC/XML/Parser.pm" revision="1.10" />
<file path="t/50_client.t" revision="1.7" />
</fileset>
<description>
Changes to the opening of files for base64 data. The existing method
didn't work under 5.00503.
</description>
</change>
<change>
<file path="t/15_serialize.t" revision="1.3" />
<description>
Added consideration to the filehandle-length tests for Win-ish offsets.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" revision="1.26" />
<description>
Added a forgotten binmode() call to an just-opened filehandle in the
base64-to-file support.
</description>
</change>
</release>
<release version="0.52" sc:tag="v0_52" date="2003-02-10T01:37:05-08:00">
<change>
<file path="lib/RPC/XML/Server.pm" revision="1.37" />
<description>
Really got the warning in RPC::XML::Server.pm this time. Really. Also
got some potential errors that seem to be overlooked under auto-loading
but appear when auto-loading is disabled.
</description>
</change>
<change>
<file path="lib/RPC/XML/Client.pm" revision="1.18" />
<description>
Fixed a potentially-confusing problem in the example code within the
RPC::XML::Client man page, just under "SYNOPSIS".
</description>
</change>
<change>
<file path="spec.in" revision="1.4" />
<description>
More work to the spec.in RPM specfile template. The Provides/Requires
list should be a lot cleaner now, and it also builds packages under
rpm 4.1, now.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" revision="1.22" />
<description>
Fixed a lurking bug in the Apache::RPC::Server class that was not
setting the headers properly on responses. Probably lived this long
because no one else but me was using it, and my client is lax enough
to ignore it.
</description>
</change>
</release>
<release version="0.51" date="2003-01-30T00:49:07-08:00">
<change>
<file path="t/11_base64_fh.t" revision="1.4" />
<description>
Removed an extraneous print line in t/11_base64_fh that caused a
warning on some systems.
</description>
</change>
<change>
<fileset>
<file path="t/11_base64_fh.t" revision="1.5" />
<file path="t/50_client.t" revision="1.6" />
</fileset>
<description>
Fixed calls to skip() in the test suites so that they work with
older versions of the Test module.
</description>
</change>
<change>
<fileset>
<file path="t/11_base64_fh.t" revision="1.6" />
<file path="t/10_data.t" revision="1.5" />
<file path="lib/RPC/XML.pm" revision="1.24" />
</fileset>
<description>
Calls to the encode_base64 routine from MIME::Base64 now pass a zero-
length second argument, to suppress newlines between Base64 lines
when stringifying the RPC::XML::base64 objects. This is to accomodate
a broken Java XML-RPC package.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" revision="1.36" />
<description>
Force a default value for the compress_re attribute in RPC::XML::Server
when none is otherwise present. All my tests have had Compress::Zlib
available, but when it isn't the compress_re attribute was
triggering warnings when used in a regex.
</description>
</change>
</release>
<release version="0.50" date="2003-01-27T03:24:45-08:00">
<change>
<file path="lib/RPC/XML/Procedure.pm" />
<description>
Changed the usage of =head3 directives in the manual page for
RPC::XML::Procedure to a =over/=back block instead. The =head3
directive requires a newer set of pod utilities, and would mean the
package had trouble building on 5.005 installations.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="t/11_base64_fh.t" />
</fileset>
<description>
Extended the RPC::XML::base64 class to allow for and handle being
given a filehandle object instead of straight data. The object is
kept as an open filehandle, and the buffer position is always noted
and reset when operated on, so that other parts of the process using
the handle don't get surprised. Added tests in t/11_base64_fh.t to
exercise this.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/xML.pm" />
<file path="t/15_serialize.t" />
</fileset>
<description>
Added a serialize() method to all the data classes in preparation for
changing the client and server modules to stream XML over the line
rather than print it using in-memory strings. Added test suite
t/15_serialize.t to exercise this.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Parser.pm" />
<file path="t/20_parser.t" />
</fileset>
<description>
Modified RPC::XML::Parser to accept arguments to new() that instruct
it to spool Base64 data to a filehandle, using the new capabilities
of the base64 class described previously. Added tests to t/20_parser.t
and support for the parameters to the constructors of the client and
base server classes. Documented all around.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" />
<description>
Re-engineered the test for the "bytes" pragma in RPC::XML, so that
it now works with Perl 5.005.
</description>
</change>
<change>
<file path="lib/RPC/XML/Client.pm" />
<description>
Fixed the credentials() method in RPC::XML::Client.
</description>
</change>
<change>
<fileset>
<file path="lib/Apache/RPC/Server.pm" />
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
All the internal use of object attributes in RPC::XML::Client now use
accessors instead of the hash keys directly, to make it easier to
sub-class the package. The same was done in RPC::XML::Server and to
some degree in Apache::RPC::Server. The server classes are more likely
to have problems, though.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Parser.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
The parsing of incoming data in the client and both server classes is
now done to a streaming XML parser, eliminating the need for the
full message to ever be in memory at once. Likewise, the client and
server classes have new attributes and accessor methods to allow
them to spool outgoing messages to files if the messages threaten to
be too large to keep in memory (this is best used when dealing with a
lot of Base64 data that is being dealt with directly on disk as well).
</description>
</change>
</release>
<release version="0.46" date="2002-12-29T23:39:05-08:00">
<change>
<file path="lib/RPC/XML/Client.pm" />
<description>
Applied a patch from Andrew Langmead to fix a bug in the uri() method
of RPC::XML::Client. Prior, retrieving the value could accidentally
reset it. Applied another fix from him to prevent a possible warning.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
Applied another patch to better handle testing of the availability of
compression in the client.
</description>
</change>
<change>
<file path="Makefile.PL" />
<description>
Moving around some of the RPM spec-file generation caused problems
with some people trying to build the package if spec.in was missing.
Fixed this in Makefile.PL.
</description>
</change>
<change>
<file path="lib/RPC/XML/Procedure.pm" />
<description>
Fix to RPC::XML::Procedure per tip from Stig Porsgaard, to fix the
reading of 'signature' arguments to new() when providing all the
proc data directly. Reported by others as well, but Stig nailed it
down to a specific line.
</description>
</change>
</release>
<release version="0.45" date="2002-10-29T21:06:00-08:00">
<change>
<file path="lib/RPC/XML.pm" />
<description>
Fixed a problem in the test-usage of the bytes pragma in RPC::XML,
reported by Marc Jauvin.
</description>
</change>
<change>
<file path="lib/RPC/XML/Parser.pm" />
<description>
Closed a potential security hole in the parsing of external entities,
pointed out by Gregory Steuck.
</description>
</change>
</release>
<release version="0.44" date="2002-04-30T23:44:08-07:00">
<change>
<file path="lib/RPC/XML.pm" />
<description>
Cleaned up the exports list in RPC::XML.pm, which still had remnants
from when this package was intended to extend XML-RPC. There were no
routines to match the symbols, but the potential for error was there.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Fixed a typo in the docs for RPC::XML::Client, and some documentation
goofs in RPC::XML::Server (regarding the timeout method/option). A
few doc fixes in RPC::XML::Procedure, for good measure.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" />
<description>
Implemented two fixes sent in by Marc Liyanage: a fix for setting the
Content-Length headers on messages that takes the length in bytes
rather than characters; the second is a fix around the compression
support that makes certain an undef isn't evaluated against the
regex.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" />
<description>
The above added an exported function to RPC::XML, so that got
documented. In the process, it occurred to me to document the helper
functions like RPC_BOOLEAN, RPC_DOUBLE, etc.
</description>
</change>
</release>
<release version="0.43" date="2002-08-18T22:19:30-07:00">
<change>
<fileset>
<file path="methods/methodSignature.code" />
<file path="t/40_server.t" />
<file path="t/60_net_server.t" />
</fileset>
<description>
Changed methods/methodSignature.code, t/40_server.t and
t/60_net_server.t so that the provided system.methodSignature follows
the accepted API (returns a list of lists, rather than list of
strings). Pointed out by Bjoern Stierand.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" />
<description>
Added a missing helper (RPC_I4) to RPC::XML.pm.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Fixed a bad bug with the newly-added compression support in
Apache::RPC::Server::handler. Because $self was defined earlier,
strict failed to point out that my object in that scope was called
$srv, rather than $self. And $self->compress didn't work, amazingly
enough. Found and reported by Scott Fagg.
</description>
</change>
<change>
<file path="lib/RPC/XML/Client.pm" />
<description>
Added a credentials() method to the RPC::XML::Client class to set
Basic Authentication credentials on the underlying LWP::UserAgent
object. Per suggestion and sample implementation from Stuart Clark.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Fixed a docs-nit in RPC::XML::Server, and did some major clean-up in
the docs for RPC::XML. In particular, added documentation for one
of the data class methods that had been overlooked ("type").
</description>
</change>
</release>
<release version="0.42" date="2002-08-01T00:51:12-07:00">
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Changed the test in Apache::RPC::Server of the Content-type header so
that it accepts a header that contains "text/xml", as opposed to only
accepting a header that exactly equalled that string. Allows for
things like SOAP::Lite's XMLRPC::Lite which include a charset in
the header.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" />
<description>
time2iso8601() in the RPC::XML module now allows defaulting of the
$time argument to time() (which means no timezone specification).
</description>
</change>
<change>
<file path="lib/RPC/XML/Parser.pm" />
<description>
Found a bug in RPC::XML::Parser where base64 data being parsed in a
request/response message wasn't being properly passed to the
c'tor for RPC::XML::base64. Reported by Chris Brierley.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Added a line in Apache::RPC::Server to set the Content-Type header
on HEAD responses. Apache won't take this from the usual header()
method, it has to be explicitly set with content_type().
</description>
</change>
<change>
<file path="t/40_server.t" />
<description>
Two of the tests in t/40_server.t could cause fatal errors since a
return value wasn't tested for ref-ness before having a method
called on it. Fixed.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="lib/RPC/XML/Server.pm" />
<file path="lib/Apache/RPC/Server.pm" />
</fileset>
<description>
Compress::Zlib-based compression is now supported in RPC::XML::Server,
RPC::XML::Client and Apache::RPC::Server. It should be compatible with
the XMLRPC::Lite package's compression.
</description>
</change>
</release>
<release version="0.41" date="2002-05-22T02:50:47-07:00">
<change>
<file path="lib/RPC/XML/Parser.pm" />
<description>
Wrapped the call to XML::Parser::parse (lib/RPC/XML/Parser.pm) in an
eval {} so that parse failures don't kill a server or client.
Reported by Kevin Greene.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" />
<description>
An intended clone-operation in RPC::XML::response::new (lib/RPC/XML.pm)
was never actually written, which allowed for a corner case that could
result in new() return undef when it shouldn't. Related to the bug
reported by Sergey Scherbinin.
</description>
</change>
<change>
<file path="lib/RPC/XML/Procedure.pm" />
<description>
The RPC::XML::Procedure::call method (lib/RPC/XML/Procedure.pm) had one
error-check loop that was returning a full RPC::XML::response object,
instead of just a RPC::XML::fault. Reported by Sergey Scherbinin.
</description>
</change>
</release>
<release version="0.40" date="2002-05-04T00:42:18-07:00">
<change>
<file path="*" />
<description>
Fixed some grammar problems in error messages, and some formatting.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Fixed a bug in the new() method of Apache::RPC::Server where it was
expecting the value of the "apache" key to be an object of the
Apache::Server class, but it was actually getting an object of the
Apache class.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Function.pm" action="ADD" />
<file path="etc/make_method" />
<file path="etc/rpc-method.dtd" />
</fileset>
<description>
Created RPC::XML::Function class, which is a type of server-side
encapsulator that doesn't bother with signature tests of any kind.
The DTD and make_method tool support the new type.
</description>
</change>
<change>
<file path="etc/make_method" />
<description>
Changed the encoding of the Perl code in etc/make_method as follows:
If the code does not already contain either of the two sequences,
']]>' or '__DATA__', then the code is wrapped in a
<![CDATA[ ]]> section, with #!/usr/bin/perl (actually,
$Config{startperl}) at the head and __DATA__ at the end. Besides
leaving the Perl code readable, the *.xpl files can now be
syntax-checked with "perl -cx". Thanks to the mod_perl guys for this
idea, cribbed from their manual page.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
Abstracted some of the invocation code out of the server class and
into the RPC::XML::Procedure class, where it really belonged. This
aided in further eliminating redundancy in the server class in the
same general area. I may yet want to tune this area, but I'm a good
deal happier with the reduction in complexity and repetition.
</description>
</change>
</release>
<release version="0.37" date="2002-03-22T22:16:08-08:00">
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
Applied a patch to RPC::XML::Server from Tino Wuensche
(<tino_wuensche@yahoo.com>) that fixed some of the signal-handling
and exit-case-handling in server_loop().
</description>
</change>
<change>
<file path="lib/RPC/XML/Procedure.pm" />
<description>
Fixed a bug in RPC::XML::Procedure found by a user (a former
co-worker from my Denver days, coincidentally enough) that would
trigger when auto_methods was set to 1 on a server object, but the
request had no matching file anywhere in the search path.
</description>
</change>
</release>
<release version="0.36" date="2002-01-29T12:11:30-08:00">
<change>
<file path="MANIFEST" />
<description>
The file util.pl in the t directory was accidentally omitted from the
0.35 release. This release is meant only to correct that oversight.
</description>
</change>
</release>
<release version="0.35" date="2002-01-27T16:29:19-08:00">
<change>
<file path="etc/make_method" />
<description>
Fixed a small bug in make_method that would have caused a failure if
anyone used the command-line switches to specify data, rather than a
base-file (specifically, the handling of the --code argument). Also
clarified a few places in the man page.
</description>
</change>
<change>
<fileset>
<file path="methods/methodHelp.code" />
<file path="methods/status.code" />
<file path="lib/Apache/RPC/status.code" />
</fileset>
<description>
Found bugs in both versions of the system.status server method (both
the basic and the Apache flavor). Both were neglecting to set the
"methods_known" value. Also found a bug in system.methodHelp. Amazing
what writing the regression tests can uncover.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Method.pm" />
<file path="lib/RPC/XML/Procedure.pm" action="ADD" />
</fileset>
<description>
RPC::XML::Method is now a skeleton file, slated to be removed by or
before 1.0. It has been renamed to RPC::XML::Procedure, and the
RPC::XML::Method class is declared as an empty subclass of the
RPC::XML::Procedure class. Procedures differ from methods in that they
do not get the server object instance as a first parameter in the list
that gets passed in.
</description>
</change>
<change>
<fileset>
<file path="etc/rpc-method.dtd" />
<file path="etc/make_method" />
<file path="ex/linux.proc.cpuinfo.code" />
<file path="ex/linux.proc.meminfo.code" />
</fileset>
<description>
Support for RPC::XML::Procedure (and general procedure vs. method)
added to the DTD and the make_method tool. All the routines in the
ex/ directory are declared as procedures, to further illustrate the
concept.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Procedure.pm" />
<file path="lib/RPC/XML/Server.pm" />
</fileset>
<description>
When code blocks for XPL files are eval'd, they are given a
"package" statement to force subsequent calls to be in the
RPC::XML::Procedure namespace, rather than defaulting to main (a
potentially dangerous assumption). The docs on routine-calling in
RPC::XML::Server have been updated to discuss this.
</description>
</change>
<change>
<file path="t/40_server.t" />
<description>
Many more tests added to the suite for RPC::XML::Server.
</description>
</change>
<change>
<file path="t/50_client.t" action="ADD" />
<description>
Created the test suite for RPC::XML::Client.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML.pm" />
<file path="lib/RPC/XML/Client.pm" />
</fileset>
<description>
RPC::XML::Client no longer returns a full RPC::XML::response object
from any of its routines. Rather, simple_request still does what it
always has, and send_request now returns a data-type value. All the
data-type classes have a method called "is_fault" that returns false
for all except (of course) RPC::XML::fault. This lets callers of
send_request test the return value to see if it is a fault.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Client.pm" />
<file path="t/50_client.t" />
</fileset>
<description>
Added callback support for errors and faults to the RPC::XML::Client
class. This allows programmers to tie specific actions to cases where
a call returns a RPC::XML::fault object, or an outright error.
</description>
</change>
<change>
<file path="t/60_net_server.t" action="ADD" />
<description>
Created a separate test suite for RPC::XML::Server when used in
conjunction with the Net::Server package (it skips if the latter is
not installed on the system).
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
Almost all of the method-manipulation routines in RPC::XML::Server (all
but add_default_methods()) now have counterparts called by the same
name after s/method/proc/. This is purely for syntactical sugar and
symmetry. Except in the case of add_proc(), where it actually ensures
that a hash-reference calling convention is geared correctly to add a
RPC::XML::Procedure object rather than RPC::XML::Method.
</description>
</change>
</release>
<release version="0.30" date="2002-01-03T01:57:29-08:00">
<description>first beta release</description>
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Apache::RPC::Server::list_servers no longer sorts the list before
returning it. No reason to assume it matters, or to levy that tax
against those who don't care.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
RPC::XML::Server::url now constructs saner strings for HTTPS and for
HTTP on port 80.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
The new() method in RPC::XML::Server wasn't quite handling the
"host" and "port" arguments that Apache::RPC::Server sent it correctly.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
Added a patch to the RPC::XML::Server class from Christopher Blizzard
(blizzard@redhat.com) to allow control over the timeout interval that
HTTP::Daemon uses in answering new connections.
</description>
</change>
<change>
<file path="Makefile.PL" />
<description>
Replaced a GNU Make-centric dependancy rule for the XPL files with
a more portable .SUFFIXES-based one. This is unfortunate, as the %
syntax of GNU make is much cleaner. But GNU Make isn't universal.
Yet.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Status.pm" action="ADD" />
<description>
This release marks the debut of Apache::RPC::Status, a monitor similar
in nature and design to Apache::Status, for running RPC servers under
Apache/mod_perl. See the manual page for details.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Documentation for Apache::RPC::Server was updated based on trials and
travails in trying to actually set up a configuration inside <Perl>
blocks. This isn't very clear in the mod_perl documentation, but at
least the docs for this module reflect exactly what I have configured
on my development box, so I know it works.
</description>
</change>
</release>
<release version="0.29" date="2001-12-02T22:41:39-08:00">
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
Added share_methods(), copy_methods() and delete_method() calls to the
RPC::XML::Server class (and thus to the Apache class as well). Had
already added an INSTALL_DIR method to retrieve the class-specific
installation dir to the Apache class, so mirrored it here, as well.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Added list_servers() static method to Apache::RPC::Server, to allow
for abstract retrieval of the ID-tags of the current known servers.
This is mainly so Apache::RPC::Status can use it in conjunction with
get_server() to examine the server objects for the sake of stats and
such.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
Added list_methods() to RPC::XML::Server, to list the object's
known (published) methods by name. Mainly for use in the regression
suites, but worth documenting in the API in case someone else finds it
useful.
</description>
</change>
<change>
<fileset>
<file path="methods/introspection.code" />
<file path="methods/listMethods.code" />
<file path="methods/methodHelp.code" />
<file path="methods/methodSignature.code" />
</fileset>
<description>
Four of the provided methods in the introspection API
(system.introspection, system.listMethods, system.methodHelp and
system.methodSignature) needed to be updated to use the newer API for
the XML::RPC::Method class when retrieving information from the server.
</description>
</change>
<change>
<fileset>
<file path="t/30_method.t" action="ADD" />
<file path="t/40_server.t" action="ADD" />
</fileset>
<description>
Started the test suites for RPC::XML::Method and RPC::XML::Server.
The tests that are delivered as part of this build are not fully
complete, but should be a reasonable start.
</description>
</change>
</release>
<release version="0.28" date="2001-10-07T21:27:39-07:00">
<change>
<file path="lib/RPC/XML.pm" />
<description>
Found a subtle-but-nasty bug in the handling of RPC::XML::string
objects. Thanks to Dominic Mitchell <dom@semantico.com> for pointing
me in the right direction.
</description>
</change>
<change>
<file path="lib/RPC/XML.pm" />
<description>
Started down the path of making the suite as a whole geared more
towards real use than illustrative example. The XML data-classes now
no longer use indention (or any superfluous whitespace) in their
stringification. This shortened the code quite a bit, and will also
mean shorter messages. This could not have been done cleanly without
the tests in t/10_data.t.
</description>
</change>
<change>
<fileset>
<file path="lib/RPC/XML/Method.pm" action="ADD" />
<file path="lib/RPC/XML/Server.pm" />
<file path="lib/Apache/RPC/Server.pm" />
</fileset>
<description>
Extracted the method-manipulation code into a new class, called
RPC::XML::Method. This should make method-sharing easier, and pull
a lot of method-specific code out of RPC::XML::Server and
Apache::RPC::Server.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Clarified some issues in the new() constructor of the
Apache::RPC::Server class, and also changed the calling convention.
It no longer treats the first few arguments in any special way at all.
The arguments are all consistently taken as option/value pairs, just
as with RPC::XML::Server. The documentation reflects this. This may
break things built on the old style, but in the long run it should
prove much better.
</description>
</change>
</release>
<release version="0.27" date="2001-07-08T16:25:51-07:00">
<change>
<file path="lib/RPC/XML.pm" />
<description>
Removed a -w warning from RPC/XML.pm. Fixed some cases in the new()
method of RPC::XML::boolean that would have permitted invalid data.
Added two convenience methods to RPC::XML::fault, called code() and
string(), that fetch the faultCode and faultString member values as
native Perl values. The RPC::XML::base64 class was using the wrong
container tags in the as_string method.
</description>
</change>
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
Clarified and expanded some of the documentation in RPC/XML/Server.pm.
</description>
</change>
<change>
<file path="Makefile.PL" />
<description>
Adjusted the PREREQ_PM hash in Makefile.PL so that it correctly looks
for LWP, and also looks for File::Spec 0.8 or newer (needed to ensure
that the splitpath() method is available).
</description>
</change>
<change>
<fileset>
<file path="t/00_load.t" />
<file path="t/10_data.t" />
<file path="t/20_parser.t" />
</fileset>
<description>
Cleaned up the load-tests (t/00_load.t) to use the Test harnessing
package. Added test suites for the RPC::XML data classes (t/10_data.t,
96 tests) and the RPC::XML::Parser container-class (t/20_parser.t,
7 tests).
</description>
</change>
</release>
<release version="0.26" date="2001-06-25T22:30:18-07:00">
<change>
<file path="lib/RPC/XML/Server.pm" />
<description>
Fixed some doc errors in RPC::XML::Server. Mainly things I had
simplified, but not updated the docs to reflect.
</description>
</change>
<change>
<file path="lib/Apache/RPC/Server.pm" />
<description>
Added a fair amount to the docs in Apache::RPC::Server. In particular,
a new section was added that illustrates using <Perl> configuration
sections to create the server objects in the master Apache process,
so that they are automatically inherited by children.
</description>
</change>
</release>
<release version="0.25" date="2001-06-12T22:35:09-07:00">
<description>
This is the initial release.
</description>
<change>
<file path="*" />
<description>All files are tracked from this point forward.</description>
</change>
</release>
</changelog>
|