1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041
|
<?xml version='1.0' encoding='UTF-8'?>
<!--
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<!-- $Id: releases.xml 1897227 2022-01-20 04:44:56Z mukulg $ -->
<!DOCTYPE releases SYSTEM 'dtd/releases.dtd'>
<releases>
<release version='&ParserName; 2.12.2'>
<desc>
<p>
This release is a bug fix release. It fixes few bugs which were present in Xerces-J 2.12.1
and also includes a few other minor enhancements.
</p>
</desc>
<changes>
<fix>
<note>
Implemented a fix, that solves rarely occurring XML parsing performance issue.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Improved compliance, of XPath 2.0 processor's regex implementation (that's used
within XML Schema 1.1 implementation).
</note>
<submitter name='Mukul Gandhi'/>
</fix>
<fix>
<note>
XML Schema validation error message improvements, when XML attributes are validated.
</note>
<submitter name='Mukul Gandhi'/>
</fix>
<fix>
<note>
Improved the JAXP SourceValidator sample, related to XML Schema 1.1 assertion evaluations
on list types.
</note>
<submitter name='Mukul Gandhi'/>
</fix>
<fix>
<note>
Solved an XML Schema implementation issue, where combination of restrictions 'length'
and 'minLength' was leading to error.
</note>
<submitter name='Mukul Gandhi'/>
</fix>
<fix>
<note>
Made minor, improvements to few XML Schema 1.1 validation error messages.
</note>
<submitter name='Mukul Gandhi'/>
</fix>
<fix>
<note>
Fixed a rarely occurring issue during XML Schema 1.1 xs:assert evaluation, where adjacent text
values within XML instance document, were resulting in more than one adjacent XPath 2.0 text
nodes.
</note>
<submitter name='Mukul Gandhi, John Morris'/>
</fix>
<add>
<note>
Upgraded the minimum, Java requirement to use XercesJ to Java version 1.7.
</note>
<submitter name='XercesJ team'/>
</add>
<add>
<note>
Upgraded XalanJ serializer dependency to version 2.7.2 from 2.7.1, which is
required by XercesJ.
</note>
<submitter name='XercesJ team'/>
</add>
<add>
<note>
Re-built, "XML Commons External" and "XML Commons Resolver" codebases
(which are dependencies for XercesJ) using Java 1.7.
</note>
<submitter name='XercesJ team'/>
</add>
</changes>
</release>
<release version='&ParserName; 2.12.1'>
<desc>
<p>
This release is a bug fix release. It fixes few bugs which were present in Xerces-J 2.12.0
and also includes a few other minor enhancements.
</p>
</desc>
<changes>
<fix>
<note>
Implemented few fixes for XML Schema identity constraints, within Xerces's XML Schema 1.0 and 1.1
validators.
</note>
<submitter name='Sandy Gao, Mukul Gandhi'/>
</fix>
<fix>
<note>
When XML Schema 1.1 validations are done, where xs:assert are contained within xs:override, the XPath
expressions within xs:assert can't see XML namespace bindings specified at certain locations in schema
documents. This release fixes this.
</note>
<submitter name='Mukul Gandhi, Patrick Gratz'/>
</fix>
<fix>
<note>
When XML Schema 1.1 validations are done, when the schema document is specified via xsi:schemaLocation
attribute in the XML document, when full XPath 2.0 is used with CTA, for certain use cases
validation was not occurring correctly. This release fixes this.
</note>
<submitter name='Mukul Gandhi, Yitzhak Khabinsky'/>
</fix>
<fix>
<note>
When XML Schema 1.1 documents having xs:assert are used for XML document validation, for certain use cases
error messages appeared like following 'FOAR0001 - Division by zero'. Modified such error messages, to now
contain the character ':' instead of '-' (since, the character '-' may be confused with a negation symbol).
</note>
<submitter name='Mukul Gandhi'/>
</fix>
<fix>
<note>
The 'XML Schema 1.1 structures' Recommendation in the section, "3.2.3 Constraints on XML Representations
of Attribute Declarations (Schema Representation Constraint: Attribute Declaration Representation)"
mentions, '5 If fixed and use are both present, use must not have the actual value prohibited'. This
functionality is newly introduced in XML Schema 1.1. Fixed a runtime validation issue for this XSD clause,
when XSD 1.1 implementation is invoked in XSD 1.0 mode.
</note>
<submitter name='Mukul Gandhi'/>
</fix>
<fix>
<note>
Xerces-J was previously not building from sources when Java 9+ was used. This release fixes this.
</note>
<submitter name='Mukul Gandhi, Michael Glavassevich, Thomas Pasch'/>
</fix>
<fix>
<note>
XML Schema 1.1 has introduced the attribute 'ref' on xs:key, xs:unique and xs:keyref. When certain such
schema documents were processed by Xerces-J's XSD 1.1 implementation in XSD 1.0 mode, a
java.lang.NullPointerException was displayed to the user when the schema document is processed with Xerces
sample jaxp.SourceValidator. This release fixes this.
</note>
<submitter name='Michael Glavassevich, Mukul Gandhi'/>
</fix>
<fix>
<note>
Fixed minor bugs and made various improvements.
</note>
<submitter name='Mukul Gandhi, Michael Glavassevich, Octavian Nadolu'/>
</fix>
<add>
<note>
Added many new tests to the regression since the previous Xerces release, for Xerces's
XML Schema 1.0 and 1.1 implementations.
</note>
<submitter name='Mukul Gandhi'/>
</add>
</changes>
</release>
<release version='&ParserName; 2.12.0'>
<desc>
<p>
This release expands on Xerces-J's experimental support for XML Schema 1.1 by providing a
fully compliant XML Schema 1.1 implementation. It fixes several bugs which were present in
Xerces-J 2.11.0 and also includes a few other enhancements and performance improvements.
</p>
</desc>
<changes>
<add>
<note>
Report all id/idref problems when validating XML against DTD or XML Schema.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Implemented improvements to XML Schema 1.1 CTA implementation and inheritable attributes.
</note>
<submitter name='Mukul Gandhi, Hiranya Jayathilaka'/>
</add>
<update>
<note>
Implemented improved error/warning message reporting for various XML Schema use cases.
</note>
<submitter name='Mukul Gandhi'/>
</update>
<update>
<note>
Implemented few performance enhancements (affecting parsing/validation latency and memory footprint) to the implementation.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed minor bugs in Xerces-J's regex support in XML Schema <pattern> facet.
</note>
<submitter name='Michael Glavassevich, Khaled Noaman, Sandy Gao'/>
</fix>
<fix>
<note>
Implemented various fixes to XML Schema 1.1 assert/assertion implementation.
</note>
<submitter name='Mukul Gandhi'/>
</fix>
<fix>
<note>
Fixed possible security issue: an implementation of the NamedNodeMapImpl class in the JAXP component did not
limit the amount of memory allocated when creating object instance from a serialized form. A specially-crafted
input could cause a java application to use an excessive amount of memory when deserialized.
</note>
<submitter name='David Dillard, Michael Glavassevich, Mukul Gandhi'/>
</fix>
<fix>
<note>
Implemented minor and major fixes in certain areas, to XML Schema 1.0 and 1.1 implementations.
</note>
<submitter name='Michael Glavassevich, Khaled Noaman, Sandy Gao, Mukul Gandhi'/>
</fix>
<fix>
<note>
Fixed the issue related to, XIncludeTextReader doesn't handle null Content Types properly.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed minor problems in the DOM (Level 3 Core) implementation.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed few errors related to Xerces-J's build component.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Solved a minor bug in SoftReferenceSymbolTable implementation component.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed various bugs and made various improvements.
</note>
<submitter name='Mukul Gandhi, Jorge L. Williams, Octavian Nadolu, Radu Coravu'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.11.0'>
<desc>
<p>
This release expands on Xerces' experimental support for XML Schema 1.1
by providing implementations for the simplified complex type restriction
rules (also known as subsumption), xs:override and a few other XML Schema
1.1 features. This release also introduces experimental support for XML
Schema Component Designators (SCD). It fixes several bugs which were
present in &ParserName; 2.10.0 and also includes a few other minor
enhancements.
</p>
</desc>
<changes>
<add>
<note>
Implemented XML Schema 1.1's simplified complex type restriction
rules (also known as subsumption).
</note>
<submitter name='Sandy Gao'/>
</add>
<add>
<note>
Added support for XML Schema 1.1's overriding component definitions
(<xs:override>).
</note>
<submitter name='Khaled Noaman, Udayanga Wickramasinghe'/>
</add>
<add>
<note>
Added experimental support for a parser and evaluator for
<jump href='http://www.w3.org/TR/2010/CR-xmlschema-ref-20100119/'>
XML Schema Component Designators</jump> (SCD).
</note>
<submitter name='Sandy Gao, Ishan Jayawardena'/>
</add>
<add>
<note>
Implemented support for the vc:typeAvailable, vc:typeUnavailable, vc:facetAvailable
and vc:facetUnavailable attributes for conditional inclusion processing in XML
Schema 1.1 documents.
</note>
<submitter name='Mukul Gandhi'/>
</add>
<add>
<note>
Implemented support for allowing xs:group as a child of xs:all in XML Schema 1.1
documents.
</note>
<submitter name='Mukul Gandhi'/>
</add>
<update>
<note>
Made several enhancements to the support for assertions in the XML Schema 1.1
implementation.
</note>
<submitter name='Mukul Gandhi'/>
</update>
<update>
<note>
Improved the ways in which the XML Schema API exposes values and identity
constraint information.
</note>
<submitter name='Sandy Gao'/>
</update>
<fix>
<note>
Fixed a bug where XMLSchemaValidator.findSchemaGrammar() was not getting
called for substitution groups.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in the regular expression support which was introduced in the previous
release. See JIRA Issue
<jump href='https://issues.apache.org/jira/browse/XERCESJ-1456'>XERCESJ-1456</jump>
for details.
</note>
<submitter name='Khaled Noaman'/>
</fix>
<fix>
<note>
Fixed multiple issues with decimal precision in the processing of xs:precisionDecimal
values.
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>
Fixed various bugs and made various improvements.
</note>
<submitter name='Mukul Gandhi, Sandy Gao, Michael Glavassevich, Johannes Koch, Khaled Noaman'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.10.0'>
<desc>
<p>
This release introduces experimental support for the XML Schema 1.1
Structures and Datatypes (December 2009) Working Drafts. It also
contains an implementation of the parser related portions of JAXP 1.4,
including partial support for StAX 1.0 (javax.xml.stream.events only)
and a complete implementation of the DOM Element Traversal API. It
contains fixes for several bugs which were present in &ParserName; 2.9.1,
as well as a few other enhancements and performance improvements.
</p>
</desc>
<changes>
<add>
<note>
Added experimental support for XML Schema 1.1 (refer to the
<link idref='xml-schema' anchor="supported-schema-1.1-features">documentation</link>
for a list of features supported).
</note>
<submitter name='Ken Cai, John Chan, Mukul Gandhi, Hiranya Jayathilaka, Khaled Noaman, Kun Xu'/>
</add>
<add>
<note>
Implemented enhancements to javax.xml.validation that were introduced by JAXP 1.4,
including support for StAXSource/StAXResult as an input/output to the JAXP Validator,
StreamResult as an output to the JAXP Validator and StAXSource as an input to the
SchemaFactory.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Added support for the StAX 1.0 event API (javax.xml.stream.events).
</note>
<submitter name='Michael Glavassevich, Lucian Holland'/>
</add>
<add>
<note>
Added support for the <jump href="http://www.w3.org/TR/ElementTraversal/">Element Traversal</jump>
API (org.w3c.dom.ElementTraversal).
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Implemented a <link idref='properties' anchor="validation.schema.root-element-declaration">property</link>
for starting schema assessment from a specific element declaration and enhanced the existing
<link idref='properties' anchor="validation.schema.root-type-definition">property</link> for starting
schema assessment from a type definition to accept a javax.xml.namespace.QName as a value.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Added a <link idref='properties' anchor="locale">property</link> for specifying the locale to
use when reporting error and warning messages.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Added support for matching multi-digit back references in regular expressions.
</note>
<submitter name='Khaled Noaman'/>
</add>
<add>
<note>
Added a method to the ItemPSVI interface in the XML Schema API to expose error messages corresponding
to the error codes that were already available in the PSVI.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Implemented native support for UTF-16.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<update>
<note>
Improved usability of the XML Schema API by updating XSNamedMap and all of the
list type interfaces to extend java.util.Map and java.util.List respectively.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<update>
<note>
Improved performance by eliminating excessive calls to XMLSchemaValidator.findSchemaGrammar()
when processing local elements with no namespace.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<update>
<note>
Improved recovery from schema loading errors.
</note>
<submitter name='Sandy Gao'/>
</update>
<update>
<note>
Improved performance of Element.getBaseURI() when the depth of the node to the document
root is longer.
</note>
<submitter name='Ludger Bünger'/>
</update>
<update>
<note>
Implemented several improvements in the DOM implementation to help the garbage collector
reclaim objects which are no longer reachable by the application but were held on to
strongly by the Document node.
</note>
<submitter name='Ludger Bünger'/>
</update>
<update>
<note>
Improved the messages reported for minOccurs/maxOccurs related schema validation errors.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed problems with regular expression matching where the parser would hang or cause a
stack overflow exception.
</note>
<submitter name='Khaled Noaman'/>
</fix>
<fix>
<note>
Fixed a problem where the LSParser repeatedly overwrote a text node child of an element
(rather than appending) when there are multiple text nodes in the input.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed an infinite loop in XMLScanner which could allow remote attackers to launch a
denial of service attack (CVE-2009-2625).
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in XSDateTime where getXMLGregorianCalendar() would lose precision for fractional digits
and insert time-zones where there are none.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in the DOM implementation where a static text Node field in AttrImpl broke thread-safety
of mutations in independent documents from within an event listener. This was also a potential memory
leak.
</note>
<submitter name='Ludger Bünger'/>
</fix>
<fix>
<note>
Fixed a bug in the SoftReferenceSymbolTable which could cause it to get stuck in an infinite loop.
</note>
<submitter name='Anli Shundi'/>
</fix>
<fix>
<note>
Fixed a bug which could cause an ArrayIndexOutOfBoundsException to be thrown when adopting
a node from a deferred DOM.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed various bugs and made various improvements.
</note>
<submitter name='Nathan Beyer, Dave Brosius, Ludger Bünger, Arthur De Magalhaes, Mukul Gandhi, Sandy Gao, Michael Glavassevich, Khaled Noaman'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.9.1'>
<desc>
<p>
This release fixes several bugs which were present in Xerces-J 2.9.0.
It also includes a few minor enhancements and performance improvements.
</p>
</desc>
<changes>
<add>
<note>
Added support for creating UIEvents and MouseEvents through the
DOM Level 2 <jump href="http://www.w3.org/TR/DOM-Level-2-Events/">Events</jump> API.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<update>
<note>
Improved the reporting of character conversion errors. The CharConversionException
which triggered the fatal error is now available from SAXException.getException().
</note>
<submitter name='Michael Glavassevich'/>
</update>
<update>
<note>
Reduced the performance penalty for using an EOFException internally to
signal to the scanner that the end of the document has been reached. The
exception is now cached, avoiding the expensive fillInStackTrace() on
creation.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<update>
<note>
Improved the performance of the XMLGregorianCalendar implementation.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<update>
<note>
Implemented improvements in the processing of large minOccurs/maxOccurs on
element/wildcard particles which once caused OutOfMemoryErrors to occur during
validation. Note that an OutOfMemoryError may still occur if the minOccurs/maxOccurs
are nested or appear on a sequence or choice model group.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<update>
<note>
Improved the algorithm for checking the <jump href="http://www.w3.org/TR/xmlschema-1/#cos-nonambig">Unique Particle Attribution</jump>
constraint so that it no longer causes an OutOfMemoryError for content models with large maxOccurs values. Note that this only applies
to the checking of schema validity. An OutOfMemoryError may still occur if the schema contains large maxOccurs and is used to validate
an instance document.
</note>
<submitter name='Peter McCracken'/>
</update>
<fix>
<note>
Completed the implementation of XML Schema erratum E2-67.
</note>
<submitter name='Ed Merks, Khaled Noaman'/>
</fix>
<fix>
<note>
Implemented XML 1.0 Third Edition erratum E13.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed bugs in the implementation of Document.normalizeDocument() where it was not correctly
re-evaluating Element.schemaTypeInfo, Attr.schemaTypeInfo, IDness or the
[element content whitespace] property of text nodes when validating against a DTD or XML Schema.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a thread-safety bug which could cause an ArrayIndexOutOfBoundsException or a
NullPointerException to be thrown during DTD validation if a grammar pool is shared
between multiple parser instances.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in the DOMConfiguration of a Document where it was processing the
"schema-location" parameter as an atomic URI value instead of a whitespace separated
list of URIs.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in the XInclude implementation where the Locator would report the location
of the xi:include element in the top-level document as the location of all the document
events in the included document or fragment.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in the JAXP schema validator which caused it to fail with a third-party DOM
Level 3 implementation whose nodes can only be tested for identity using isSameNode().
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed several bugs in the XML schema processor which were exposed by running the W3C's
XML Schema 1.0 2nd Edition test suite.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed several bugs in the DOM Level 2
<jump href="http://www.w3.org/TR/DOM-Level-2-Traversal-Range/">Traversal and Range</jump> implementation.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed various bugs and made various improvements.
</note>
<submitter name='Dave Brosius, Michael Glavassevich, Khaled Noaman'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.9.0'>
<desc>
<p>
As of this release, Xerces and Xalan now share a common serialization codebase.
The DOM Level 3 serialization support which was in Xerces was migrated into
the Xalan serializer and Xerces' native serializer was deprecated. In this release
we also upgraded the xml-commons resolver to v1.2 (which provides support for OASIS
XML Catalogs v1.1), introduced a few minor features and fixed several bugs.
</p>
</desc>
<changes>
<update>
<note>
Migrated the DOM Level 3 serialization support onto a common serialization
codebase shared with Xalan and deprecated Xerces' native serializer.
</note>
<submitter name='Neil Delima, Michael Glavassevich'/>
</update>
<add>
<note>
Upgraded the xml-commons resolver to v1.2. This new version of
the resolver adds support for
<jump href="http://www.oasis-open.org/committees/download.php/14809/xml-catalogs.html">OASIS XML Catalogs v1.1</jump>.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Created a new parser configuration which uses a memory sensitive
SymbolTable which can handle usage scenarios where the names in the
XML documents being parsed are mostly unique. The internalized
strings stored in this SymbolTable are softly reachable and may be
cleared by the garbage collector in response to memory demand.
</note>
<submitter name='Peter McCracken'/>
</add>
<update>
<note>
Updated the schema loader so that it can now process schema documents with an XML 1.1 declaration.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed several bugs in the checking of schema type restrictions
that involve substitution groups.
</note>
<submitter name='Lucian Holland, Ignacio Hernandez-Ros'/>
</fix>
<fix>
<note>
Fixed a bug in Xerces' regular expression support where patterns containing
"$" and "^" were being interpreted as anchors in a schema context.
</note>
<submitter name='Chris Carman'/>
</fix>
<fix>
<note>
Fixed a bug in the XPath matcher for identity constraints which allowed
steps containing NCName:* to select element or attribute names which do
not match the specified namespace.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in the XPath parser for identity constraints which caused
field and selector XPaths containing the non-abbreviated form of the
child and attribute axes to be reported as invalid.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug which allowed the JAXP SchemaFactory to mutate a user
supplied DOM input.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug which caused the JAXP 1.2 method for schema validation to
produce DTD validation errors when XInclude processing is enabled.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed various bugs and made various improvements.
</note>
<submitter name='Nathan Beyer, George Cristian Bina, Michael Glavassevich, Jacob Kjome, Grant McDonald'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.8.1'>
<desc>
<p>
This release fixes several bugs which were present in Xerces-J 2.8.0.
It also includes a few minor enhancements and performance improvements.
</p>
</desc>
<changes>
<add>
<note>
Implemented native support for the ISO-8859-1 encoding.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Added a method to XSModel which returns a list containing the members
of the substitution group for a given element declaration.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<update>
<note>
Improved the performance of Xerces' optimized readers (for small
documents) by recycling their byte buffers.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<update>
<note>
Modified the DocumentBuilder and LSParser implementations so that they drop
their internal references to the DOM they just built. If an application is
pooling parsers this will allow the garbage collector to reclaim the Document
and all of its nodes if the application no longer has any references to it.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed numerous schema annotation related bugs including those introduced in
Xerces-J 2.8.0 which caused NPEs to be thrown from several of the getAnnotation()
methods in the XML Schema API.
</note>
<submitter name='Neil Delima, Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a DOM bug which caused the internal subset of a DocumentType node to be
omitted from a cloned Document.
</note>
<submitter name='Jacob Kjome'/>
</fix>
<fix>
<note>
Fixed a bug in Xerces' regular expression support involving patterns starting with '.'.
</note>
<submitter name='Kent Tamura'/>
</fix>
<fix>
<note>
Fixed a bug which caused the DOM builder to drop all of the text in the document if
grammar caching is enabled and the document being processed contains both an internal
and an external DTD subset.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a schema bug which allowed defaulted attributes with the same local
name to overwrite each other.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug which caused a schema document to be loaded multiple times if it
was both included and redefined. This made it possible for the redefined components
to be incorrectly overwritten by the original ones from the include.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in Xerces' native serializer which caused documents containing
supplemental characters in attribute values to be written incorrectly.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug in the XInclude processor which in some instances caused
content to be omitted from the result if an element() XPointer is
specified on an include element.
</note>
<submitter name='Neil Delima'/>
</fix>
<fix>
<note>
Fixed various bugs and made various improvements.
</note>
<submitter name='Dave Brosius, Michael Glavassevich, Jacob Kjome, Peter McCracken'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.8.0'>
<desc>
<p>
This release introduces several new validation related features and provides enhancements
to the XML schema annotation support. All of the schema component interfaces in the XML Schema API
now have a getAnnotations() method which returns a list of XSAnnotations. This includes annotations
on particles and attribute uses which were previously "lost". In addition, in this release we
implemented support for pretty-printing in the LSSerializer, repaired the warn-on-undeclared-elemdef
feature which had been broken for several releases and fixed many other bugs.
</p>
</desc>
<changes>
<add>
<note>
Added a getAnnotations() method to each of the component interfaces in the XML Schema API
(including XSParticle and XSAttributeUse) and implemented the support for the new methods.
</note>
<submitter name='Neil Delima'/>
</add>
<add>
<note>
Implemented a <link idref='properties' anchor="validation.schema.root-type-definition">property</link>
for starting schema assessment from a specific type definition.
</note>
<submitter name='Peter McCracken'/>
</add>
<add>
<note>
Implemented features for disabling ID/IDREF, unparsed entity and identity constraint checking.
</note>
<submitter name='Peter McCracken'/>
</add>
<add>
<note>
Implemented a <link idref='features' anchor="validation.schema.ignore-xsi-type-until-elemdecl">feature</link>
which instructs the schema validator to ignore xsi:type attributes until a global element declaration
has been found.
</note>
<submitter name='Peter McCracken'/>
</add>
<update>
<note>
Modified the JAXP Validation API implementation so that it propagates features set on the SchemaFactory
to the Schemas created from the factory and in turn ValidatorHandlers and Validators constructed from
those Schema objects (as clarified by JAXP 1.4).
</note>
<submitter name='Peter McCracken'/>
</update>
<add>
<note>
Implemented the DOM Level 3 Load and Save
<jump href="http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/load-save.html#parameter-format-pretty-print">format-pretty-print</jump>
parameter.
</note>
<submitter name='Matej Kraus'/>
</add>
<fix>
<note>
Fixed the <link idref='features' anchor="validation.warn-on-undeclared-elemdef">warn-on-undeclared-elemdef</link>
feature which had been broken for many releases.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<add>
<note>
Implemented a <link idref='features' anchor="validation.balance-syntax-trees">feature</link>
which allows the parser to process DTDs containing large content models which under normal
operation may cause a StackOverflowError to occur.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<update>
<note>
Improved the performance and memory usage of XSAnnotation.writeAnnotation().
</note>
<submitter name='Michael Glavassevich'/>
</update>
<fix>
<note>
Implemented XML Schema erratum E2-66.
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>
Fixed bugs in the implementation of Document.normalizeDocument() which caused DTD
validation to fail in numerous scenarios.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug where schema validation performed in Document.normalizeDocument() was adding
default attributes without setting their owner element or firing mutation events.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug which caused the JAXP 1.2 method for schema validation to fail when the
parser is reused.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug which caused a ClassCastException to be thrown when adopting a node from a
deferred DOM into a non-deferred DOM.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed the dtdjars build target which had been broken for several releases.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<update>
<note>
Improved identity constraint error messages.
</note>
<submitter name='George Cristian Bina'/>
</update>
<fix>
<note>
Fixed various bugs and made various improvements.
</note>
<submitter name='Nathan Beyer, Dave Brosius, Sandy Gao, Michael Glavassevich, Matej Kraus, Peter McCracken'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.7.1'>
<desc>
<p>
This release fixes one XInclude bug and several schema related
bugs which were present in Xerces-J 2.7.0.
</p>
</desc>
<changes>
<fix>
<note>
Fixed an inconsistency in the validation behaviour of the parser
when XInclude processing is enabled and the
<link idref='features' anchor="validation">validation</link> and
<link idref='features' anchor="validation.schema">schema validation</link>
features are also enabled.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug where in a DOM Level 3 context with schema validation
enabled, not all schema constraints (such as unique particle
attribution) were being checked.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed bugs which allowed various invalid lexical values to be
accepted by the schema validator for the following types: double,
date, float, gDay, gMonthDay, gMonth and gYearMonth.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a schema bug where errors would be reported for comments and
processing instructions which appear as the children of an
element declared to have empty content.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug which caused an NPE to be thrown for a
namespace declaration such as xmlns="" which appeared on
an ancestor element of an <annotation>.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.7.0'>
<desc>
<p>This release provides a complete implementation of the parser related
portions of JAXP 1.3 and also brings Xerces into compliance with SAX 2.0.2,
the DOM Level 3 Core and Load/Save W3C Recommendations, the XML Inclusions
(XInclude) Version 1.0 W3C Recommendation and the XML Schema 1.0 Structures
and Datatypes Second Edition W3C Recommendations.</p>
<p>&ParserName; 2.7.0 incorporates two minor changes to the Xerces Native Interface
(documented below). A new package <code>org.apache.xerces.xs.datatypes</code> has
been added to Xerces' XML Schema API that provides a full schema datatype to
object mapping. In addition, in this release we introduced many new parser
features, improved parser performance in several areas and fixed many bugs.
</p>
</desc>
<changes>
<add>
<note>
Implemented the following packages defined by JAXP 1.3:
javax.xml.datatype, javax.xml.parsers and javax.xml.validation.
</note>
<submitter name='Neeraj Bajaj, Neil Delima, Joseph Fialli, Michael Glavassevich, Kohsuke Kawaguchi,
Ankit Pasricha, Jeff Suttor, K. Venugopal, Jack Z. Wang, Arun Yadav'/>
</add>
<add>
<note>
Defined and implemented interfaces (<code>org.apache.xerces.xs.datatypes</code>) for accessing actual values.
</note>
<submitter name='Naela Nissar, Ankit Pasricha'/>
</add>
<add>
<note>
Implemented a feature that instructs the schema processor to use all schema location hints
for a given target namespace when locating components.
</note>
<submitter name='Ankit Pasricha'/>
</add>
<add>
<note>
Implemented partial experimental support for the first working draft of
XML Schema 1.1 <jump href="http://www.w3.org/TR/2004/WD-xmlschema11-1-20040716/">Structures</jump>
and <jump href="http://www.w3.org/TR/2004/WD-xmlschema11-2-20040716/">Datatypes</jump>.
</note>
<submitter name='Naela Nissar, Ankit Pasricha'/>
</add>
<add>
<note>
Implemented features for configuring whether the XInclude processor
performs <jump href="http://www.w3.org/TR/2004/REC-xinclude-20041220/#base">base URI fixup</jump>
and/or <jump href="http://www.w3.org/TR/2004/REC-xinclude-20041220/#language">language fixup</jump>.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<update>
<note>
Implemented the <jump href="http://www.w3.org/TR/2004/REC-xinclude-20041220/">XInclude</jump>
Recommendation (December 2004).
</note>
<submitter name='Neil Delima, Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed a bug which caused the DTD validator to be activated when using the XInclude
processor with schema validation turned on.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<update>
<note>
Modified the XNI XMLLocator interface to include getCharacterOffset and getXMLVersion.
Added a getCharacterOffset method to XMLParseException.
</note>
<submitter name='Michael Glavassevich, Ankit Pasricha'/>
</update>
<update>
<note>
Made various modifications to support the reporting of character offsets in XNI and DOM.
</note>
<submitter name='Ankit Pasricha'/>
</update>
<add>
<note>
Implemented SAX 2.0.2 and SAX2 Extensions 1.1.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<fix>
<note>
Fixed SAX conformance bugs including one concerning skipped entities.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<add>
<note>
Implemented a feature that allows schema annotations to be validated.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<add>
<note>
Added support for generating synthetic annotations when a schema component
has non-schema attributes but no child annotation.
</note>
<submitter name='Ankit Pasricha'/>
</add>
<fix>
<note>
Fixed numerous schema related bugs.
</note>
<submitter name='Mike Boos, Neil Delima, Sandy Gao, Michael Glavassevich, Kohsuke Kawaguchi, Elena Litani, Ankit Pasricha'/>
</fix>
<update>
<note>
Reimplemented <jump href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#Text3-replaceWholeText">Text.replaceWholeText</jump> and
<jump href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#TypeInfo-isDerivedFrom">TypeInfo.isDerivedFrom</jump> according
to the DOM Level 3 Core Recommendation.
</note>
<submitter name='Neil Delima'/>
</update>
<fix>
<note>
Fixed various DOM Level 3 bugs.
</note>
<submitter name='Jonathan Au, Neil Delima, Michael Glavassevich, Naela Nissar, Ankit Pasricha, K. Venugopal'/>
</fix>
<fix>
<note>
Fixed numerous bugs in the DOM Level 2 <jump href="http://www.w3.org/TR/DOM-Level-2-Events/">Events</jump> and
<jump href="http://www.w3.org/TR/DOM-Level-2-Traversal-Range/">Traversal and Range</jump> implementation.
</note>
<submitter name='Neil Delima, Naela Nissar'/>
</fix>
<add>
<note>
Created two new parser configurations that support XML 1.1.
</note>
<submitter name='John Kim'/>
</add>
<update>
<note>
Improved the performance of the SymbolTable, processing of attribute values and parsing of relative URIs.
</note>
<submitter name='Michael Glavassevich, John Kim'/>
</update>
<update>
<note>
Added support for EntityResolver2 and LSResourceResolver to XMLCatalogResolver.
</note>
<submitter name='Michael Glavassevich, John Kim'/>
</update>
<fix>
<note>
Fixed a potential memory leak in the ObjectFactory classes which in some
circumstances allowed input streams to never be closed.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a thread-safety bug concerning identity constraints which caused
spurious errors about duplicate field matches to be reported.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed various bugs.
</note>
<submitter name='Dave Brosius, Michael Glavassevich, Eric Isakson'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.6.2'>
<desc>
This release fixes several bugs which were present in
Xerces-J 2.6.1. It also provides a few minor performance
improvements.
</desc>
<changes>
<fix>
<note>
Fixed a bug in the specification of the XML Schema API. Some of the
method signatures did not match the signatures in the implementation.
</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>
Fixed a bug introduced in 2.6.1 which caused the XMLSerializer to
automatically expand entity references and convert CDATA sections to text.
</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>
Fixed a possible security hole regarding class loading.
</note>
<submitter name='Neeraj Bajaj'/>
</fix>
<update>
<note>
Improved class initialization for the XMLChar and
XML11Char classes to reduce the cost of loading Xerces.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed a SAX conformance bug involving spurious
prefix mapping events with namespace support
turned off.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<update>
<note>
Made message localization changes.
</note>
<submitter name='Neil Delima, Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed schema related bugs.
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>
Fixed various bugs.
</note>
<submitter name='Curt Arnold, Michael Glavassevich, Kohsuke Kawaguchi, Naela Nissar'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.6.1'>
<desc>
This release provides support for OASIS XML Catalogs
and includes several bug fixes for XML 1.1, XML Schema and
DOM Level 3 Core and Load/Save. It also contains several
performance improvements and includes an update for
the latest working draft of XInclude. This is the last
release to support JDK 1.1.
</desc>
<changes>
<add>
<note>
Added support for XML Catalogs.
</note>
<submitter name='Michael Glavassevich'/>
</add>
<fix>
<note>
Implemented some remaining XML Schema errata and
fixed several schema related bugs.
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>
Fixed various DOM Level 3 bugs.
</note>
<submitter name='Neil Delima, Kohsuke Kawaguchi, Michael Glavassevich, Elena Litani, K. Venugopal'/>
</fix>
<update>
<note>
Implemented well-formedness checking for LSSerializer (DOM Level 3).
</note>
<submitter name='Elena Litani'/>
</update>
<fix>
<note>
Modified the XJavac task used by the build file so that
Xerces can be built on Mac OS X with Apple JDK 1.4.
</note>
<submitter name='Alex Milowski'/>
</fix>
<fix>
<note>
Fixed possible security hole: the features and properties set on the parser were not propagated to the XMLSchemaLoader.
</note>
<submitter name='Elena Litani'/>
</fix>
<update>
<note>
Implemented the latest
<jump href="http://www.w3.org/TR/2003/WD-xinclude-20031110/">XInclude</jump>
draft, excluding support for XPointer.
</note>
<submitter name='Michael Glavassevich, K. Venugopal'/>
</update>
<fix>
<note>
Implemented missing support for supplemental
characters in XML 1.1 names.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed a bug which caused the parser to overwrite some of
the user's configuration with default values when
namespace support was disabled.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<update>
<note>
Implemented various performance improvements.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed various bugs.
</note>
<submitter name='Michael Glavassevich, Lucian Holland, Kohsuke Kawaguchi, Elena Litani'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.6.0'>
<desc>This release provides an implementation of W3C DOM Level 3 Core and Load/Save Candidate Recommendations and also brings Xerces into compliance with the most recent work of the W3C XML Core working group (XML 1.1, Namespace in XML 1.1, XML 1.0 3rd edition, XInclude).
In addition, in this release we improved parser performance in several areas and fixed many bugs.
</desc>
<changes>
<update>
<note>
Improved the scanning of attribute lists, both small and large.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<update>
<note>
Reimplemented XML11Configuration (the default configuration), improving
performance during reset; accomplished primarily by adding an internal
feature which allows components to query whether or not they need to
read features and properties from the configuration.
</note>
<submitter name='Elena Litani'/>
</update>
<update>
<note>
Modified XML Schema interfaces (<code>org.apache.xerces.xs</code>) and
updated the implementation accordingly. Methods were added to expose
actual values and their types and new interfaces were added for
loading XSModels. In addition, fixed various bugs in the implementation and <code>PSVIWriter</code> sample.
</note>
<submitter name='Sandy Gao, Pete Lloyd, Elena Litani'/>
</update>
<update>
<note>
Implemented the DOM Level 3
<jump href="http://www.w3.org/TR/2003/CR-DOM-Level-3-Core-20031107/">Core</jump> and
<jump href="http://www.w3.org/TR/2003/CR-DOM-Level-3-LS-20031107/">Load and Save</jump> Candidate Recommendations.
</note>
<submitter name='Neil Delima, Neeraj Bajaj, Michael Glavassevich, Elena Litani, Ramesh Mandava, Gopal Sharma, K.Venugopal'/>
</update>
<add>
<note>
Added support for the 'well-formed' feature in DOM Level 3 Core.
</note>
<submitter name='Neeraj Bajaj'/>
</add>
<add>
<note>
Added XML 1.1 support to DOM Level 3.
</note>
<submitter name='K.Venugopal'/>
</add>
<fix>
<note>
Fixed the serializer so that
TAB (0x9), LF (0xA), CR (0xD), NEL (0x85) and LSEP (0x2028) are
escaped where appropriate in order to allow these characters
to be roundtripped.
</note>
<submitter name='Neil Delima, Elena Litani'/>
</fix>
<update>
<note>
Implemented experimental support for the
<jump href="http://www.w3.org/TR/2003/PR-xml11-20031105/">XML 1.1</jump> PR.
This still excludes section 2.13.
</note>
<submitter name='Michael Glavassevich'/>
</update>
<fix>
<note>
Fixed a bug which could cause the parser to run out of
memory (or other resources) while parsing documents
containing many entity references.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Implemented missing support for Registry-based
Naming Authority in the URI implementation.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Modified the XJavac task used by the build file so that
Xerces can be built on Linux with Blackdown JDK 1.4.
</note>
<submitter name='Amit Kapoor'/>
</fix>
<fix>
<note>
Removed static references to sun.io.CharToByteConverter
which made it impossible to compile Xerces on platforms
that do not have this internal class. With binaries on
such platforms, the serializer was unusable with
many encodings.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<update>
<note> Added support for XML Base to the XInclude implementation.
Fixed various bugs regarding text inclusion and relative URI
resolution in the XInclude implementation.
</note>
<submitter name='Michael Glavassevich, Peter McCracken, Neil Pitman'/>
</update>
<update>
<note>
Implemented <jump href="http://www.w3.org/XML/xml-V10-2e-errata">errata</jump>
from the XML 1.0 Second Edition Specification.
</note>
<submitter name='Neil Delima, Michael Glavassevich, Glenn Marcy, Peter McCracken'/>
</update>
<update>
<note>
Moved Xerces' SAX support up to SAX 2.0.1.
</note>
<submitter name='Elena Litani'/>
</update>
<fix>
<note>
Fixed bugs in the XML 1.1 entity scanner that in some cases treated
NEL (0x85) and LSEP (0x2028) as white space characters in internal
entities, and not as end of line characters in external entities.
</note>
<submitter name='Michael Glavassevich'/>
</fix>
<fix>
<note>
Fixed bug in HTML DOM implementation that would cause a hierarchy
request error by trying to move a doctype node to be a child of
the <html> element.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Fixed various bugs.
</note>
<submitter name="Neil Delima, Sandy Gao, Neil Graham, Michael Glavassevich, Elena Litani, Lisa Martin, Peter McCracken, Gareth Reakes, Neeraj Bajaj, K.Venugopal, Ramesh Mandava, Kohsuke Kawaguchi, Gopal Sharma"/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.5.0'>
<desc>
This release provides a partial implementation of W3C XInclude specification as well as adds annotation support for the XML Schema component API. In addition to fixing many bugs, this release also brings Xerces into compliance with the most recent work of the W3C DOM working group on DOM level 3 Core and Load/Save, and includes additional fixes related to the XML 1.1 specification.
</desc>
<changes>
<fix>
<note>
Fixed an ArrayIndexOutOfBoundsException in the scanner caused by some
invalid character references.
</note>
<submitter name="Michael Glavassevich"/>
</fix>
<fix>
<note>
Fixed various bugs related to XML 1.1.
</note>
<submitter name="Neil Graham, Neil Delima, Michael Glavassevich"/>
</fix>
<fix>
<note>
Fixed various bugs in the URI implementation, and added previously missing
support for IPv6 addresses.
</note>
<submitter name="Michael Glavassevich"/>
</fix>
<fix>
<note>
Fixed performance issue for attributes with large value field.
</note>
<submitter name="Thomas DeWeese"/>
</fix>
<update>
<note>
Implemented the latest DOM Level 3
<jump href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030609/">Core</jump> and
<jump href="http://www.w3.org/TR/2003/WD-DOM-Level-3-LS-20030619/">Load and Save</jump> drafts in Last Call.
</note>
<submitter name="Elena Litani, Gopal Sharma, Arun Yadav, Neeraj Bajaj"/>
</update>
<update>
<note>
Added annotation support to the XML Schema component model API implementation. Modified the PSVI API to allow exposing facets as objects.
</note>
<submitter name="Neil Graham, Elena Litani"/>
</update>
<update>
<note>
Added preliminary XInclude implementation, excluding support for XPointer and
XML Base specifications.
</note>
<submitter name="Peter McCracken, Arun Yadav, Elena Litani"/>
</update>
<update>
<note>
Modified PSVIWriter to output all PSVI information. Changed it to output to
an XNI event stream rather than a file.
</note>
<submitter name="Peter McCracken, Neil Graham"/>
</update>
<fix>
<note>
Modified error messages for Schema validation.
</note>
<submitter name="Peter McCracken, Sandy Gao"/>
</fix>
<fix>
<note>
Fixed various bugs.
</note>
<submitter name='Neil Delima, Neil Graham, Elena Litani, Michael Glavassevich, K. Venugopal'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.4.0'>
<desc>
This release incorporates two minor changes to the Xerces Native Interface.
In addition to fixing many bugs, this release also brings Xerces
into compliance with the most recent
work of the W3C DOM working group on DOM level 3 Core
and Load/Save, and includes additional fixes based on the XML Schema errata.
Also in this release, XML 1.1. is supported by default.
</desc>
<changes>
<update>
<note>
Modified XNI XMLResourceIdentifier to include set/getNamespace.
Added getEncoding method to the XNI XMLLocator interface.
</note>
<submitter name="Sandy Gao, Neil Graham"/>
</update>
<fix>
<note>
Fixed scanner implementation to be able to handle large CDATA sections
without buffering.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Made internal class loading strategy a bit more friendly in environments which
need to provide classloaders to do things like manage multiple
versions of Xerces.
</note>
<submitter name="Igor Malinin, Neil Graham"/>
</fix>
<fix>
<note>Improved robustness of build shell script under the Cygwin environment.
</note>
<submitter name="J. Pietschmann, Neil Graham"/>
</fix>
<fix>
<note>
Fixed null pointer exception in DTDConfiguration caused when
no DTD handlers are registered.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Fixed various bugs related to <redefine> in XML Schema traversal.
</note>
<submitter name='Khaled Noaman, Sandy Gao'/>
</fix>
<fix>
<note>
Fixed various bugs related to the pattern facet (regular expression)
in XML Schema.
</note>
<submitter name='Khaled Noaman, Sandy Gao'/>
</fix>
<update>
<note>
Implemented the latest DOM Level 3
<jump href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Core-20030226/">Core</jump> and
<jump href="http://www.w3.org/TR/2003/WD-DOM-Level-3-LS-20030226/">Load and Save</jump> drafts.
</note>
<submitter name="Elena Litani"/>
</update>
<update>
<note>
Improved performance of XML11Configuration and made it the default configuration.
</note>
<submitter name="Elena Litani"/>
</update>
<update>
<note>
Added support for ordering disconnected nodes (DOM Level 3 compareDocumentPosition)
</note>
<submitter name="Lisa Martin"/>
</update>
<update>
<note>
In anticipation of the DOM Level 3 Events specification, fix Xerces Events implementation
to call event listeners in the order in which they were registered
</note>
<submitter name="Arnaud Le Hors"/>
</update>
<update>
<note>
Implemented XML Schema errata as they were published.
</note>
<submitter name="Sandy Gao"/>
</update>
<fix>
<note>
Fixed a bug related the external-schemaLocation property.
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>
Fixed various bugs.
</note>
<submitter name='Ville Skyttä, Michael Glavassevich, Elena Litani, Sandy Gao, Neil Graham'/>
</fix>
</changes>
</release>
<release version="&ParserName; 2.3.0">
<desc>
With this release, the Xerces-J developers are declaring the Xerces
Native Interface (XNI) core and parsers packages
to be gold.
This release also brings Xerces into compliance with the most recent
work of the W3C DOM working group on DOM level 3 Core
and Load/Save, and introduces many fixes to bring Xerces's behaviour
into line with XML Schema errata. Support for the
parsing of documents written according to the XML 1.1 candidate recommendation
has also been completed, except that no option for verifying that documents
are normalized has yet been implemented.
Finally, Xerces now provides means by which applications can force
the parser to reject certain kinds of documents the processing of which could
result in a denial-of-service attack.
</desc>
<changes>
<update>
<note>
Modified XMLLocator interface to remove setter methods for move
towards finalizing XNI; this change also implied removing XMLLocator's dependence
upon XMLResourceIdentifier.
</note>
<submitter name='Andy Clark'/>
</update>
<add>
<note>Implemented several DOM Level 3 features, including DOMConfiguration, exposing type
information via DOM, and allowing to set an ID attribute in the DOM.
</note>
<submitter name='Elena Litani'/>
</add>
<update>
<note>
Modified support for DOM L3 compareDocumentPosition (formerly
compareTreePosition).
</note>
<submitter name='Lisa Martin'/>
</update>
<update>
<note>
Modified several XNI interfaces, i.e. NamespaceContext, XMLResourceIdentifier,
Augmentation, XMLAttributes, and updated implementation accordingly.
</note>
<submitter name='Elena Litani, Sandy Gao'/>
</update>
<update>
<note>
Modified PSVI interfaces (<code>org.apache.xerces.impl.xs.psvi</code>)
and updated implementation accordingly.
</note>
<submitter name='Elena Litani'/>
</update>
<update>
<note>
Modified XMLDTDHandler, XMLDTDSource, XMLDTDContentModelHandler and
XMLDTDContentModelSource to make these pipelines doubly-linked,
as was done in the last release for the main document pipeline.
</note>
<submitter name="Neil Graham"/>
</update>
<add>
<note>Completed experimental support for XML 1.1 and
XML Namespaces 1.1 CR's, except for XML 1.1 section 2.13.
</note>
<submitter name="Neil Graham"/>
</add>
<add>
<note>
Provided a mechanism by which applications can instruct the parser
to abort the parsing of documents containing constructs that
could swamp system resources.
</note>
<submitter name="Neil Graham, Neeraj Bajaj"/>
</add>
<add>
<note>
Added a feature "disallow-doctype-decl" so that a fatal error is reported
if this feature is on and the incoming document has a DOCTYPE.
</note>
<submitter name="Sandy Gao"/>
</add>
<add>
<note>
Added a feature "standard-uri-conformant" so that the parser enforces
the URI rules when this feature is on.
</note>
<submitter name="Sandy Gao"/>
</add>
<update>
<note>
Performance update: ported the partial DTM implementation of DOM and
use it for parsing Schema documents.
</note>
<submitter name="Sandy Gao"/>
</update>
<add>
<note>
Provided full support for canonical representation of XML Schema
datatypes.
</note>
<submitter name="Sandy Gao"/>
</add>
<update>
<note>
Implemented XML Schema errata as they were published.
</note>
<submitter name="Sandy Gao"/>
</update>
<fix>
<note>
Fix comment parsing bug that prevented Tomcat 4.1.12 from making
use of Xerces versions later than 2.1.0.
</note>
<submitter name="Tim Bruce, Neil Graham"/>
</fix>
</changes>
</release>
<release version="&ParserName; 2.2.1">
<desc>
This release fixes four important bugs and several minor problems that
were present in Xerces-J 2.2.0.
</desc>
<changes>
<fix>
<note>
Fixed SAX endElement call so that the element's
namespace URI is returned.
</note>
<submitter name="Elena Litani"/>
</fix>
<fix>
<note>
Fixed HTML DOM implementation so that
it can be instantiated.
</note>
<submitter name="Neil Graham"/>
</fix>
<fix>
<note>
Made the external-schema-location property work again.
</note>
<submitter name="Sandy Gao"/>
</fix>
<fix>
<note>
Enabled Xerces to validate the schema for schemas.
</note>
<submitter name="Sandy Gao"/>
</fix>
</changes>
</release>
<release version="&ParserName; 2.2.0">
<desc>
As well as incorporating two changes to the Xerces Native Interface, this
release focuses on performance improvements and bug fixes.
</desc>
<changes>
<update>
<note>
Modified XMLComponent interface so that components used
in a parser configuration can specify preferred default
values for settings. Also updated all classes that
implement the XMLComponent interface.
</note>
<submitter name='Andy Clark'/>
</update>
<update>
<note>
Modified XNI XMLDocumentHandler interface so that NamespaceContext
objects are passed on the startDocument call. This makes
the start/endPrefixMapping calls redundant; they have
been deprecated.
</note>
<submitter name="Elena Litani, Arnaud Le Hors"/>
</update>
<fix>
<note>
Fixed many conformance bugs and enhanced the parser's performance
in many situations.
</note>
<submitter name="Elena Litani, Sandy Gao, Neil Graham"/>
</fix>
</changes>
</release>
<release version="&ParserName; 2.1.0">
<desc>
As well as some relatively minor changes to XNI, this release includes many
bugfixes and performance improvements.
</desc>
<changes>
<update>
<note>
Added xni.XMLDocumentHandler.setDocumentSource/getDocumentSource and
XMLDocumentSource.getDocumentHandler methods to allow to modify Xerces
pipeline dynamically.
</note>
<submitter name='Elena Litani'/>
</update>
<add>
<note>Store PSVI in DOM tree: when the new DOM document is used,
element/attribute nodes can be casted to Element/AttributePSVI
interfaces to retrieve PSVI properties.
</note>
<submitter name='Sandy Gao'/>
</add>
<add>
<note>Provide access to PSVI via SAX using
org.apache.xerces.impl.xs.psvi.PSVIProvider interface.
</note>
<submitter name='Elena Litani'/>
</add>
<add>
<note>Provided a way to convert preparsed schema grammars to XSModels.
</note>
<submitter name='Sandy Gao'/>
</add>
<update>
<note>
Message localization changes.
</note>
<submitter name='Sandy Gao, Neil Graham, Elena Litani, Lisa Martin'/>
</update>
<update>
<note>Send all element PSVI properties on endElement calls, so that
the application doesn't need to stack them when startElement
is called.
</note>
<submitter name='Sandy Gao'/>
</update>
<update>
<note>Made it possible to build a Schema Datatype jar file. Now it
can be used as a standalone data type library.
</note>
<submitter name='Sandy Gao'/>
</update>
<update>
<note>Performance update: avoid using exceptions to determine whether
an array needs to be resized.
</note>
<submitter name='Henry Zongaro, Sandy Gao'/>
</update>
<update>
<note>Performance update: avoid adding the commonly used XML symbols
to the symbol table again and again.
</note>
<submitter name='Sandy Gao'/>
</update>
<update>
<note>Performance update: improve scanning speed by skipping end tag
names and using proper input buffer size.
</note>
<submitter name='Neeraj Bajaj, Sandy Gao'/>
</update>
<fix>
<note>Applied fixes to Xerces's regular expression support to address
a number of bugs reported by users.
</note>
<submitter name="Kent Tamura, Neil Graham"/>
</fix>
<add>
<note>Provide implementation for DOM Level 3 DOMBuilderFilter and DOMWriterFilter.
</note>
<submitter name='Elena Litani'/>
</add>
<update>
<note>
Applied fixes to JAXP, SAX and internal
object factory code so that it behaves correctly
in environments where AccessControllers are being
used. These fixes make it no longer possible to
compile Xerces under JDK 1.1.8.
</note>
<submitter name="Edwin Goei, Neil Graham"/>
</update>
<update>
<note>Reorganize the code again to allow to build Xerces with DOM Level 3 support and
modifying the build.xml to replace import statements in the source code.
</note>
<submitter name='Elena Litani'/>
</update>
<update>
<note>
Changed various parts of Xerces's implementation so
that it is now statically immutable.
</note>
<submitter name="Neil Graham"/>
</update>
<fix>
<note>
Reorganized identity constraint support to improve both conformance
and performance.
</note>
<submitter name="Neil Graham"/>
</fix>
<fix>
<note>General bug fixes.
</note>
<submitter name="Elena Litani, Neil Graham, Lisa Martin, Sandy Gao"/>
</fix>
</changes>
</release>
<release version="&ParserName; 2.0.2">
<desc>
In this release, numerous bugs have been fixed. Only one minor change in the Xerces
Native Interface is included (documented below); considerable
new functionality has also been added in terms of PSVI support, DOM level 3, and
grammar preparsing/caching.
</desc>
<changes>
<add>
<note>Schema Component API interfaces and implementation; full PSVI support.
</note>
<submitter name='Sandy Gao, Elena Litani'/>
</add>
<update>
<note>
Add XMLResourceIdentifier to startExternalSubset() method defined in
XNI XMLDTDHandler.
That allows supporting baseURI for an external subset.
</note>
<submitter name='Elena Litani'/>
</update>
<add>
<note>
Add implementation for baseURI, documentURI, normalizeDocument
and required normalize document features. Added support for DOM revalidation
against XML Schemas. [DOM Level 3]
</note>
<submitter name='Elena Litani'/>
</add>
<add>
<note>
Added implementation for compareTreePosition method of DOM L3.
</note>
<submitter name='Lisa Martin'/>
</add>
<add>
<note>Added XMLGrammarLoader interface to the xni.grammars package; refactor DTD and
Schema validation code to create classes implementing this interface; created
a convenience class (XMLGrammarPreparser) that uses the new grammar loaders to permit grammar preparsing;
wrote a sample (xni.XMLGrammarBuilder) that demonstrates how all this works.
</note>
<submitter name="Neil Graham"/>
</add>
<add>
<note>
Reorganized the code in Xerces DOM implementation to expose DOM Level 3
functionality via org.w3c.dom package.
Added several build targets for building customized xerces jar files that include
DOM Level 3 Core and Load/Save interfaces and
implementation of those interfaces: jars-dom3, apijar-dom3, sampjar-dom3.
</note>
<submitter name='Arnaud Le Hors, Elena Litani'/>
</add>
<update>
<note>
Updated xni.DocumentTracer sample to print augmentations for events.
This makes it easier to debug configurations that augment the document's
infoset.
</note>
<submitter name='Andy Clark'/>
</update>
<update>
<note>
Removed dependence on SAX attribute interfaces from XMLAttributesImpl
utility class. The AbstractSAXParser already defines a SAX attribute
proxy class so that the parser and components can be properly layered.
</note>
<submitter name='Andy Clark'/>
</update>
<update>
<note>
Moved from the org.xml.sax.helpers.AttributesImpl shipped with SAX 2.0 to that
shipping in 2.0.1. This solves problems encountered with creating empty
attribute lists.
</note>
<submitter name="Neil Graham"/>
</update>
<update>
<note>
Improved handling of settings in parser classes making it easier
to re-use the parsers with other parser configurations. Previously,
the parser instances assumed that all configurations supported
various settings (i.e. the parser would set default values without
first adding the recognized features and property identifiers to
the parser configuration).
</note>
<submitter name='Andy Clark'/>
</update>
<fix>
<note>
Fixed bug in HTML DOM implementation that was causing xerces.dom
element nodes to be created instead of the appropriate HTML element
nodes.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Fixed bug to avoid null pointer exception in AbstractDOMParser when
locator information is not available from parser configuration.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Fixed bug in WrappedInput/OutputStream classes reported by Morten Bjørhus.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>The DTD validator failed to report
"undeclared element" error if an attribute was
declared for an undeclared element.</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>Performance fixes: replaced code that increases array sizes by catching ArrayIndexOutOfBoundsExceptions
with code that checks the sizes of the relevant arrays. Also streamlined
several method calls in the DTD Grammar classes to account for the
fact that scope is not relevant for this type of grammar. Finally,
improved algorithm for recognizing entities and notations.
</note>
<submitter name="Henry Zongaro, Neil Graham"/>
</fix>
<update>
<note>
Compress jars by default. We have not done so in the past,
and it will be useful to see if this proves problematic or
beneficial.
</note>
<submitter name="Neil Graham"/>
</update>
<add>
<note>
Added several build targets for building customized xercesImpl
jar files. Now we can build a DTD-only version, and a DTD-only
version also excluding support for the HTML/WML DOM.
</note>
<submitter name="Neil Graham"/>
</add>
<fix>
<note>
Parser now reads external entities one chunk at a time,
rather than a character at a time;
this increases performance dramatically in certain circumstances.
This fix also allows a number of EBCDIC encodings to work which did
not work previously.
</note>
<submitter name="Neil Graham, Henry Zongaro"/>
</fix>
<update>
<note>Performance enhancement: implemented DOM node and
declaration pools that reduce number of objects created
during building of XML Schema grammars.
</note>
<submitter name='Elena Litani'/>
</update>
<update>
<note>Improved performance for non-deferred DOM: reduced
number of concatenations for characters (bug #5602)
</note>
<submitter name='Elena Litani'/>
</update>
<update>
<note>According to the namespace spec errata, namespace declaration
attributes should be bound to a special namespace; and errors should
be reported on illegal bindings of "xmlns" and "xml" prefixes and
their namespaces.
</note>
<submitter name='Sandy Gao'/>
</update>
<update>
<note>Refined schema error messages: provide more descriptive error
messages for simple type validation errors; avoid cascading errors
when a grammar for a given namespace is not found, or when components
from a certain namespace can't be accessed from a given schema
document.
</note>
<submitter name='Sandy Gao'/>
</update>
<update>
<note>Changed the lexical representation of gMonth from "--MM--" to "--MM".
</note>
<submitter name='Sandy Gao'/>
</update>
<fix>
<note>Decimal point shouldn't be allowed in integer-derived types;
"fractionDigits" and "totalDigits" should be calculated on the value space.
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>Fixed several DOM bugs. Xerces now passes
W3C DOM Level 1 Core test suite.
</note>
<submitter name='Elena Litani'/>
</fix>
<update>
<note>Improved management of ID attributes in the DOM so that
Document.getElementByID is more reliable.
</note>
<submitter name='Arnaud Le Hors'/>
</update>
<fix>
<note>Applied patch from Scott Sanders to fix Java serialization of the
DOM and add a test.
</note>
<submitter name='Arnaud Le Hors'/>
</fix>
<fix>
<note>Applied patch from Henry Zongaro to fix a ClassCastException
in the deferred DOM.</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>Applied patch from Fabio Riccardi to reset normalize value
in the PSVI.
</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>Applied patch from Joe Kesselman that fixes
NPE in a NodeIterator (bug #6888).
</note>
<submitter name='Elena Litani'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.0.1'>
<desc>
This release fixes a number of bugs.
</desc>
<changes>
<fix>
<note>
Fixed and closed bugs filed in Bugzilla.
</note>
<submitter name='Sandy Gao, Pavani Mukthipudi, Elena Litani, Rahul Srivastava, Neil Graham, Neeraj Bajaj, Lisa Martin, Gopal Sharma, Andy Clark, Arun Yadav'/>
</fix>
<add>
<note>
Added the support of reporting line/column numbers of schema errors.
</note>
<submitter name='Sandy Gao'/>
</add>
<update>
<note>
When creating DOM nodes, use Strings we already have, instead of
creating new ones.
</note>
<submitter name='Sandy Gao'/>
</update>
<update>
<note>
Updated DTD datatypes to use the new datatype interfaces.
</note>
<submitter name='Sandy Gao'/>
</update>
<fix>
<note>
Fixed an entity resolution bug: we passed null as the system ID
to the entity resolver.
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>
Fixed a bug in the handling of URI's containing "../../".
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>
Fixed a thread-safety bug in schema simple type implementation.
The implementation class should be stateless after construction.
</note>
<submitter name='Sandy Gao'/>
</fix>
<fix>
<note>Fixed bugs in namespace algorithm for serialization.</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>Fixed a bug in deferred DOM for CDATA nodes.</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>Enabled processing of base 64-encoded material on OS/390.</note>
<submitter name='Neil Graham, Steve Dulin'/>
</fix>
<update>
<note>Modified XNI grammar interfaces such that Grammars now have
an associated XMLGrammarDescription and XMLGrammarDescriptions record the
type of the grammar. </note>
<submitter name="Neil Graham"/>
</update>
<fix>
<note>Fixed a bug related to Signature of call back attributeDecl in XNI samples.</note>
<submitter name='Rahul Srivastava'/>
</fix>
<fix>
<note>Fixed a bug related to feature prefix in AbstractDOMParser.</note>
<submitter name='Rahul Srivastava'/>
</fix>
<add>
<note>
Added the support for defer loading of schema grammars, grammar is parsed
only when there is reference to any schema component from that namespace.
</note>
<submitter name='Neeraj Bajaj'/>
</add>
<update>
<note>
JAXP 1.2 schemaSource property, if the String given is relative URI,
now it is resolved against the instance document being parsed.
</note>
<submitter name='Neeraj Bajaj'/>
</update>
<fix>
<note>
Fixed a bug related to SchemaNormalizedValue to expose it only when
validation attempted is full.
</note>
<submitter name='Pavani Mukthipudi'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.0.0'>
<desc>
This is the first production-quality release of the Xerces2 Java
XML parser. We are confident that it also marks the stabilization
of the XNI API, although changes in XNI are still possible. As
well as these XNI improvements and extensions, a host of bugs
and limitations that existed in Xerces 2.0.0beta4 have been fixed in
this release.
</desc>
<changes>
<add>
<note>Implemented support for UCS-4 and UCS-2 encodings.</note>
<submitter name='Neil Graham'/>
</add>
<add>
<note>
Added ability to override default parser configuration.
</note>
<submitter name='Andy Clark'/>
</add>
<add>
<note>Implemented DOM Level 3 isEqualNode() method
</note>
<submitter name='Arnaud Le Hors'/>
</add>
<add>
<note>Implemented namespace fixup during serialization of DOM tree.</note>
<submitter name='Elena Litani'/>
</add>
<add>
<note>Added implementation for new Xerces features validation/schema/normalized-value and
validation/schema/element-default</note>
<submitter name='Elena Litani'/>
</add>
<add>
<note>Implemented current-element-node property</note>
<submitter name='Ted Leung'/>
</add>
<add>
<note>Added internal subset string to DOM.</note>
<submitter name='Andy Clark'/>
</add>
<add>
<note>Added support for warn-on-duplicate-attdef xerces feature
validation/warn-on-duplicate-attdef
</note>
<submitter name='Neeraj Bajaj'/>
</add>
<update>
<note> Added an interface, XMLResourceIdentifier, for
describing the physical location of XML resources (external
entities, schemas etc.) for use in grammar caching and entity
resolution. Updated XMLEntityResolver, XMLLocator,
XMLDocumentHandler, XMLDocumentFragmentHandler, and
XMLDTDHandler to use this new interface consistently instead of unwieldy
lists of Strings in various callbacks.
</note>
<submitter name="Neil Graham"/>
</update>
<update>
<note>
Updated Xerces Native Interface to add augmentations to
document fragment handler, DTD handler, and the DTD content
model handler interfaces. Additional methods were also
renamed and/or modified.
</note>
<submitter name='Andy Clark'/>
</update>
<update>
<note>
Updated Xerces Native Interface to add methods to Augmentations, XMLAttributes, and
modify PSVI interfaces.
</note>
<submitter name='Elena Litani'/>
</update>
<update>
<note>
Cleaned up separation between DOMParser and DeferredDOM by
moving part of the code from createDeferredElement back into the parser,
this has several benefits including to only have to walk the list of
attributes once
</note>
<submitter name='Arnaud Le Hors'/>
</update>
<update>
<note>Provided support for fundamental facets in DV implementation </note>
<submitter name='Neeraj Bajaj, Sandy Gao'/>
</update>
<fix>
<note> Moved schema simple type error messages to the property file to enable localization.
</note>
<submitter name="Sandy Gao"/>
</fix>
<fix>
<note> Fixed various bugs related to the dependency between schema documents.
</note>
<submitter name="Sandy Gao"/>
</fix>
<fix>
<note> Modified URI resolution strategy so that Windows network paths are recognized.
</note>
<submitter name="Sandy Gao"/>
</fix>
<fix>
<note> Fixed various bugs related to schema components traversal and validation.
</note>
<submitter name="Sandy Gao"/>
</fix>
<fix>
<note> Fixed a bug in the ui.DOMParserSaveEncoding sample.
</note>
<submitter name="Joerg Vogel, Neil Graham"/>
</fix>
<fix>
<note>
Modified XMLDTDScanner to synchronize start/end entity calls.
Fixed XMLDocumentScannerImpl so it always checks settings for load-external-dtd feature.
Modified implementation of setDocumentHandler(): now user can change document handler
during the parse.
</note>
<submitter name="Elena Litani"/>
</fix>
<fix>
<note>
Fixed DOM L2 bugs: synchronization for entity reference nodes,
cloning of attribute node, report of event phases.
</note>
<submitter name="Arnaud Le Hors, Elena Litani"/>
</fix>
<fix>
<note>
Fixed a bug in XMLDocumentFragmentScannerImpl occurring when a ] is encountered at the end of an entity.
</note>
<submitter name="Arnaud Le Hors"/>
</fix>
<fix>
<note>Fixed misc. SAX bugs.
</note>
<submitter name="Lisa Martin"/>
</fix>
<fix>
<note>Fixed JAXP implementation of schemaLanguage property.
</note>
<submitter name="Edwin Goei"/>
</fix>
<fix>
<note>Massive Javadoc fixes.
</note>
<submitter name="Ted Leung, Neeraj Bajaj, Rahul Srivastava"/>
</fix>
<fix>
<note>Fixed external-schemaLocation and external-noNamespaceSchemalocation
properties related bug (# 5768)
</note>
<submitter name="Gopal Sharma"/>
</fix>
<fix>
<note>Fixed namespaces and namespace-prefixes related SAX bug.
</note>
<submitter name="Rahul Srivastava"/>
</fix>
<fix>
<note>Corrected features documentation for string-interning feature.
</note>
<submitter name="Rahul Srivastava"/>
</fix>
<fix>
<note>Fixed the bug in which duplicate attribute definitions were not ignored
and error was reported for ID datatype and Notation.
</note>
<submitter name="Neeraj Bajaj"/>
</fix>
<fix>
<note>Fixed the bug where 'locale' value was not set for StandardParserConfiguration.
</note>
<submitter name="Takuki Kamiya, Neeraj Bajaj"/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.0.0 (beta4)'>
<desc>
This release fixes a number of bugs, introduces more changes to the Xerces
Native Interface, provides partial experimental DOM Level 3 implementation,
and includes full XML Schema support.
</desc>
<changes>
<add>
<note>
Implemented schema particle derivation restriction checking
</note>
<submitter name="Lisa Martin"/>
</add>
<add>
<note>
Added checking for schema constraint cos-element-consistent
</note>
<submitter name="Lisa Martin"/>
</add>
<fix>
<note>
resolved misc. SAX2 bugs
</note>
<submitter name="Lisa Martin"/>
</fix>
<add>
<note>
Added implementation of DOMInputSource, DOMError, DOMLocator and wrappers
for entity resolver and error handler (DOM Level 3).
</note>
<submitter name='Gopal Sharma, Elena Litani'/>
</add>
<add>
<note>
Added implementation of DOMWriter, DocumentLS, DOMImplementationLS and new
features support for save and load: create-cdata-nodes,
split-cdata-sections (DOM Level 3).
</note>
<submitter name='Rahul Srivastava, Elena Litani'/>
</add>
<add>
<note>
Added implementation of DOMBuilder, DOMASBuilder and partial
implementation of ASModel. Add support for a new feature
"include-comments" (DOM Level 3).
</note>
<submitter name='Pavani Mukthipudi, Neil Graham, Elena Litani'/>
</add>
<add>
<note>
Added Augmentations interface to core XNI interfaces and PSVI interfaces
as an extension to XNI (unstable). Added DOM Level 3 interfaces to
xerces.dom3 package. Modified samples accordingly.
</note>
<submitter name='Elena Litani'/>
</add>
<add>
<note>
Implemented split of xerces.jar file into an API-only jar file
(xmlParserAPIs.jar) and a jar file containing only the API
implementation (xercesImpl.jar).
</note>
<submitter name="Neil Graham"/>
</add>
<update>
<note>
Modified XNI document handler interface to include Augmentations as an
extra parameter on each parser event. Modified XMLAttributes interface to
include getter methods for augmentations.
</note>
<submitter name='Elena Litani'/>
</update>
<add>
<note>
Implemented PSVI support in Xerces and added PSVIWriter, PSVIParser and
PSVIConfiguration sample files.
</note>
<submitter name='Arun Yadav, Elena Litani, Sandy Gao'/>
</add>
<add>
<note>
Added "external-schemaLocation" and "external-noNamespaceSchemaLocation"
properties.
</note>
<submitter name='Sandy Gao'/>
</add>
<add>
<note>
New schema simple type interface and implementation. It fixes various bugs
in the old implementation, and provides enough information for PSVI
support.
</note>
<submitter name='Sandy Gao, Neeraj Bajaj'/>
</add>
<update>
<note>
Internalize all symbols in SymbolTable using
java.lang.String#intern(). Now applications can compare the symbols by
reference.
</note>
<submitter name='Sandy Gao'/>
</update>
<add>
<note>
Added "schema-full-checking" feature, and implemented "Unique Particle
Attribution" constraint.
</note>
<submitter name='Sandy Gao'/>
</add>
<fix>
<note>
Changed the default configuration to standard parser configuration (that
does not include XML Schema validator), modified how and when the pipeline
is constructed.
</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>
Changed XML Schema validation behavior back to validate only if the
http://xml.org/sax/features/validation feature is true. Note: XML Schema
validation is off by default.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Added constructor to new DTDXSParserConfiguration so it can
share settings from a parent configuration.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
The parser no longer wraps RuntimeException with XNIException
in the parse method.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Fixed cloneNode() for Entity, EntityReference and DocumentType. Fixed
importNode() of EntityReference nodes which mistakenly carried the old
value. Fixed handling EntityReference node subtrees that left the node
empty in non deferred DOM.
</note>
<submitter name='Arnaud Le Hors'/>
</fix>
<fix>
<note>
Added missing default attribute values in the DOM and fixed
double entity value bug in deferred DOM.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Fixed getElementById() in the DOMParser. Bound namespace attributes to
http://www.w3.org/2000/xmlns/ (DOM only).
</note>
<submitter name='Elena Litani'/>
</fix>
<fix>
<note>Various documentation fixes.</note>
<submitter name='Andy Clark, Elena Litani'/>
</fix>
<add>
<note>
Added more DOM Level 3 interfaces to xerces.dom3 package. Implemented
DOMImplementationRegistry (DOMImplementationSource really),
Node.set/getTextContent(), Node.isSameNode(), Node.getInterface(),
Node.set/getUserData(). Extended dom.mem.Test to test these additions.
</note>
<submitter name='Arnaud Le Hors'/>
</add>
<add>
<note>
Added ASBuilder sample to the DOM samples package to show how
to use the new DOM level 3 ASBuilder interface to implement a
form of grammar caching.
</note>
<submitter name='Sandy Gao'/>
</add>
<fix>
<note>
Enabled the parser to process documents encoded in EBCDIC and
UTF-16.
</note>
<submitter name='Neil Graham'/>
</fix>
</changes>
</release>
<release version='&ParserName; 2.0.0 (beta3)'>
<desc>
This release fixes a number of bugs, introduces some changes to
the Xerces Native Interface, and is the first Xerces2 release to
include XML Schema validation support. Please note that the XML
Schema validation code was completely rewritten for Xerces2 and
should be considered alpha at this time.
</desc>
<changes>
<add>
<note>
Redesigned and rewrote XML Schema validation code. Also updated
standard parser configuration to include the XML Schema validator
in the document pipeline by default.
</note>
<submitter name='Sandy Gao, Lisa Martin, Neil Graham, Elena Litani, Rahul Srivastava, Gopal Sharma, Pavani Mukthipudi, Neeraj Bajaj'/>
</add>
<add>
<note>
Added new default parser configuration that includes DTD and XML Schema
validators (DTDXSParserConfiguration). Implemented dynamic validation for
both validators.
</note>
<submitter name='Sandy Gao, Elena Litani'/>
</add>
<fix>
<note>
Synched up javax.xml.parsers package with latest code from xml-commons
module and various bug fixes.
</note>
<submitter name='Edwin Goei'/>
</fix>
<fix>
<note>
DOM/ DOMParser bug fixes.
</note>
<submitter name='Ted Leung, Andy Clark, Elena Litani, Arun Yadav'/>
</fix>
<fix>
<note>
Fixed newline normalization bug. Previously, the sequence #x0A #x0D
was being converted to #x0A instead of #x0A #x0A per section 2.11 of
the XML 1.0 specification. Thanks to Aleksander Slominski for the
bug report.
</note>
<submitter name='Andy Clark'/>
</fix>
<update>
<note>
Added getter methods to XMLParserConfiguration interface and added
filter interfaces for components that consume and produce document
and DTD information.
</note>
<submitter name='Andy Clark'/>
</update>
<fix>
<note>
Fixed DTD scanner from reporting entity boundaries appearing
inside of markup declarations. Entity boundaries appearing
in the content model of an element declaration is still
reported, though.
</note>
<submitter name='Andy Clark'/>
</fix>
<update>
<note>
Simplified XMLAttributes interface by removing the methods
related to entities appearing in attribute values.
</note>
<submitter name='Andy Clark'/>
</update>
<update>
<note>
Changed the XMLDTDHandler defined in XNI to add a non-normalized
value parameter to the internal element declaration callback. Also
implemented the non-normalized value for attribute values.
</note>
<submitter name='Andy Clark'/>
</update>
<fix>
<note>
Fixed bug in entity manager that would never resolve IANA encoding
names to Java encoding names properly. (Bug #3449)
</note>
<submitter name='Pavani Mukthipudi' mailto='Pavani.Mukthipudi@sun.com'/>
</fix>
<fix>
<note>
Fixed bug in SAX parser that was not forwarding external entity
declarations in the DTD. (Bug #3392)
</note>
<submitter name='Neeraj Bajaj' mailto='Neeraj.Bajaj@sun.com'/>
</fix>
<add>
<note>
Separated the XMLDocumentScannerImpl class so that it derives
from XMLDocumentFragmentScannerImpl which enables an
application to parse document fragments.
</note>
<submitter name='Andy Clark'/>
</add>
<add>
<note>
Ported the deferred DOM implementation from the Xerces 1.x
codebase.
</note>
<submitter name='Arnaud Le Hors'/>
</add>
</changes>
</release>
<release version='&ParserName; 2.0.0 (beta2)'>
<desc>
This is primarily a bug fix release. However, a new XNI
interface and additional documentation have been added.
</desc>
<changes>
<fix>
<note>
Fixed bug for when namespace bindings were added as default
attributes from the DTD.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Fixed Xerces2 standard components to properly recognize and use
the features and properties that they are documented to accept.
</note>
<submitter name='Andy Clark'/>
</fix>
<add>
<note>
Added documentation to the XNI Manual for re-using the Xerces2
parser components.
</note>
<submitter name='Andy Clark'/>
</add>
<update>
<note>
Moved Xerces 1.x to "xerces_j_1" branch and moved Xerces2 to the main
trunk of the "xml-xerces" module.
</note>
<submitter name='Arnaud Le Hors'/>
</update>
<fix>
<note>
Improved ability of document and DTD scanners to perform pull parsing.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>
Fixed bug where namespace binder would turn an emptyElement callback into
startElement and endElement callbacks.
</note>
<submitter name='Andy Clark'/>
</fix>
<update>
<note>
Updated standard parser configuration to separate DTD validation
and namespace binding in the parsing pipeline.
</note>
<submitter name='Andy Clark'/>
</update>
<remove>
<note>
Removed old XML Schema code that was not being used. This code
is intended to be replaced by either a port of the Xerces 1.x
XML Schema implementation or by a re-designed, re-implemented
XML Schema implementation.
</note>
<submitter name='Andy Clark'/>
</remove>
<fix>
<note>
Fixed bug in scanner that allowed the built-in entity references
to be sent via XNI. The default value for this feature should have
been false.
</note>
<submitter name='Andy Clark'/>
</fix>
<fix>
<note>Fixed several SAX bugs.</note>
<submitter name='Andy Clark'/>
</fix>
<update>
<note>
Synchronized DOM implementation code from Xerces 1.x codebase.
</note>
<submitter name='Andy Clark'/>
</update>
</changes>
</release>
<release version='&ParserName; 2.0.0 (beta)'>
<desc>
First beta release of the Xerces2 code. Besides numerous bug
fixes, this release has changes and additions to XNI. The new
XNI parser configuration framework has been added in this release.
Refer to the <link idref='xni'>XNI Manual</link> for complete
information.
</desc>
<changes>
<add>
<note>
Added document and DTD scanner interfaces to XNI to allow
parser configuration pipelines to be constructed generically.
</note>
<submitter name='Andy Clark'/>
</add>
<fix>
<note>
Fixed bug in DTD grammar for mixed content models that was
building the wrong validation content model.
</note>
<submitter name='Sandy Gao'/>
</fix>
<update>
<note>
Removed SAX dependency from XNI framework. Now the only
dependence on external API such as SAX is in the implementation
of the AbstractSAXParser and DOMParser so that legacy code
doesn't break.
</note>
<submitter name='Andy Clark'/>
</update>
<update>
<note>
Rewrote existing documentation, added XNI information, cleaned
up stylesheets, and converted some docs to use custom DTDs.
</note>
<submitter name='Andy Clark'/>
</update>
<fix>
<note>DTD method ordering problem for INCLUDE/IGNORE sections.</note>
<submitter name='Petr Kuzel'/>
</fix>
<update>
<note>Improved DFA build-time performance.</note>
<submitter name='ATOZAWA@jp.ibm.com' mailto='ATOZAWA@jp.ibm.com'/>
</update>
<update>
<note>Synchronized with Xerces 1.3.0</note>
<submitter name='Arnaud Le Hors'/>
</update>
</changes>
</release>
<release version='&ParserName; 2.0.0 (alpha)'>
<desc>Initial alpha release of Xerces2 code.</desc>
</release>
</releases>
|