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
|
<?xml version="1.0" encoding="UTF-8"?>
<appendix id="release_notes">
<title>Appendix</title>
<subtitle>Release Notes</subtitle>
<sect1>
<title>Release 2.3.1</title>
<para>Release date: 2016/11/28</para>
<para>This is a bug fix and performance improvement release.</para>
<simplesect>
<title>Bug Fixes and Enhancements</title>
<para>#1973, st_concavehull() returns sometimes empty geometry collection
Fix from gde</para>
<para>#3501, add raster constraint max extent exceeds array size limit
for large tables</para>
<para>#3643, PostGIS not building on latest OSX XCode</para>
<para>#3644, Deadlock on interrupt</para>
<para>#3650, Mark ST_Extent, ST_3DExtent and ST_Mem*
agg functions as parallel safe so they can be parallelized</para>
<para>#3652, Crash on Collection(MultiCurve())</para>
<para>#3656, Fix upgrade of aggregates from 2.2 or lower version</para>
<para>#3659, Crash caused by raster GUC define after CREATE EXTENSION
using wrong memory context. (manaeem)</para>
<para>#3665, Index corruption and memory leak in BRIN indexes
patch from Julien Rouhaud (Dalibo)</para>
<para>#3667, geography ST_Segmentize bug
patch from Hugo Mercier (Oslandia)</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.3.0</title>
<para>Release date: 2016/09/26</para>
<para>This is a new feature release, with new functions, improved performance, all relevant bug fixes from PostGIS 2.2.3,and other goodies.</para>
<simplesect>
<title>Important / Breaking Changes</title>
<para>#3466, Casting from box3d to geometry now returns a 3D
geometry (Julien Rouhaud of Dalibo)</para>
<para>#3396, ST_EstimatedExtent, throw WARNING instead of ERROR
(Regina Obe)</para>
</simplesect>
<simplesect>
<title>New Features</title>
<para>Add support for custom TOC in postgis_restore.pl
(Christoph Moench-Tegeder)</para>
<para>Add support for negative indexing in ST_PointN and ST_SetPoint
(Rémi Cura)</para>
<para>Add parameters for geography ST_Buffer (Thomas Bonfort)</para>
<para>TopoGeom_addElement, TopoGeom_remElement (Sandro Santilli)</para>
<para>populate_topology_layer (Sandro Santilli)</para>
<para>#454, ST_WrapX and lwgeom_wrapx (Sandro Santilli)</para>
<para>#1758, ST_Normalize (Sandro Santilli)</para>
<para>#2236, shp2pgsql -d now emits "DROP TABLE IF EXISTS"</para>
<para>#2259, ST_VoronoiPolygons and ST_VoronoiLines (Dan Baston)</para>
<para>#2841 and #2996, ST_MinimumBoundingRadius and new ST_MinimumBoundingCircle
implementation using Welzl's algorithm (Dan Baston)</para>
<para>#2991, Enable ST_Transform to use PROJ.4 text (Mike Toews)</para>
<para>#3059, Allow passing per-dimension parameters in ST_Expand (Dan Baston)</para>
<para>#3339, ST_GeneratePoints (Paul Ramsey)</para>
<para>#3362, ST_ClusterDBSCAN (Dan Baston)</para>
<para>#3364, ST_GeometricMedian (Dan Baston)</para>
<para>#3391, Add table inheritance support in ST_EstimatedExtent
(Alessandro Pasotti)</para>
<para>#3424, ST_MinimumClearance (Dan Baston)</para>
<para>#3428, ST_Points (Dan Baston)</para>
<para>#3465, ST_ClusterKMeans (Paul Ramsey)</para>
<para>#3469, ST_MakeLine with MULTIPOINTs (Paul Norman)</para>
<para>#3549, Support PgSQL 9.6 parallel query mode, as far as possible
(Paul Ramsey, Regina Obe)</para>
<para>#3557, Geometry function costs based on query stats (Paul Norman)</para>
<para>#3591, Add support for BRIN indexes. PostgreSQL 9.4+ required.
(Giuseppe Broccolo of 2nd Quadrant, Julien Rouhaud
and Ronan Dunklau of Dalibo)</para>
<para>#3496, Make postgis non-relocateable for extension install,
schema qualify calls in functions (Regina Obe)
Should resolve once and for all for extensions #3494, #3486, #3076</para>
<para>#3547, Update tiger geocoder to support TIGER 2016
and to support both http and ftp.</para>
<para>#3613, Segmentize geography using equal length segments
(Hugo Mercier of Oslandia)</para>
</simplesect>
<simplesect>
<title>Bug Fixes</title>
<para>All relevant bug fixes from PostGIS 2.2.3</para>
<para>#2841, ST_MinimumBoundingCircle not covering original</para>
<para>#3604, pgcommon/Makefile.in orders CFLAGS incorrectly leading to
wrong liblwgeom.h (Greg Troxel)</para>
</simplesect>
<simplesect>
<title>Performance Enhancements</title>
<para>#75, Enhancement to PIP short circuit (Dan Baston)</para>
<para>#3383, Avoid deserializing small geometries during index operations
(Dan Baston)</para>
<para>#3400, Minor optimization of PIP routines (Dan Baston)</para>
<para>Make adding a line to topology interruptible (Sandro Santilli)</para>
<para>Documentation updates from Mike Toews</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.2.2</title>
<para>Release date: 2016/03/22</para>
<para>This is a bug fix and performance improvement release.</para>
<simplesect>
<title>New Features</title>
<para>#3463, Fix crash on face-collapsing edge change</para>
<para>#3422, Improve ST_Split robustness on standard precision double systems (arm64, ppc64el, s390c, powerpc, ...)</para>
<para>#3427, Update spatial_ref_sys to EPSG version 8.8</para>
<para>#3433, ST_ClusterIntersecting incorrect for MultiPoints</para>
<para>#3435, ST_AsX3D fix rendering of concave geometries</para>
<para>#3436, memory handling mistake in ptarray_clone_deep</para>
<para>#3437, ST_Intersects incorrect for MultiPoints</para>
<para>#3461, ST_GeomFromKML crashes Postgres when there are innerBoundaryIs and no outerBoundaryIs</para>
<para>#3429, upgrading to 2.3 or from 2.1 can cause loop/hang on some platforms</para>
<para>#3460, ST_ClusterWithin 'Tolerance not defined' error after upgrade</para>
<para>#3490, Raster data restore issues, materialized views. Scripts postgis_proc_set_search_path.sql, rtpostgis_proc_set_search_path.sql refer to http://postgis.net/docs/manual-2.2/RT_FAQ.html#faq_raster_data_not_restore</para>
<para>#3426, failing POINT EMPTY tests on fun architectures</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.2.1</title>
<para>Release date: 2016/01/06</para>
<para>This is a bug fix and performance improvement release.</para>
<simplesect>
<title>New Features</title>
<para>#2232, avoid accumulated error in SVG rounding</para>
<para>#3321, Fix performance regression in topology loading</para>
<para>#3329, Fix robustness regression in TopoGeo_addPoint</para>
<para>#3349, Fix installation path of postgis_topology scripts</para>
<para>#3351, set endnodes isolation on ST_RemoveIsoEdge
(and lwt_RemIsoEdge)</para>
<para>#3355, geography ST_Segmentize has geometry bbox </para>
<para>#3359, Fix toTopoGeom loss of low-id primitives from
TopoGeometry definition</para>
<para>#3360, _raster_constraint_info_scale invalid input syntax</para>
<para>#3375, crash in repeated point removal for collection(point)</para>
<para>#3378, Fix handling of hierarchical TopoGeometries
in presence of multiple topologies</para>
<para>#3380, #3402, Decimate lines on topology load</para>
<para>#3388, #3410, Fix missing end-points in ST_Removepoints</para>
<para>#3389, Buffer overflow in lwgeom_to_geojson</para>
<para>#3390, Compilation under Alpine Linux 3.2
gives an error when compiling the postgis and postgis_topology extension</para>
<para>#3393, ST_Area NaN for some polygons</para>
<para>#3401, Improve ST_Split robustness on 32bit systems</para>
<para>#3404, ST_ClusterWithin crashes backend</para>
<para>#3407, Fix crash on splitting a face or an edge
defining multiple TopoGeometry objects</para>
<para>#3411, Clustering functions not using spatial index</para>
<para>#3412, Improve robustness of snapping step in TopoGeo_addLinestring</para>
<para>#3415, Fix OSX 10.9 build under pkgsrc</para>
<para>Fix memory leak in lwt_ChangeEdgeGeom [liblwgeom]</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.2.0</title>
<para>Release date: 2015/10/07</para>
<para>This is a new feature release, with new functions, improved performance, and other goodies.</para>
<simplesect>
<title>New Features</title>
<para>Topology API in liblwgeom (Sandro Santilli / Regione Toscana - SITA)</para>
<para>New lwgeom_unaryunion method in liblwgeom</para>
<para>New lwgeom_linemerge method in liblwgeom</para>
<para>New lwgeom_is_simple method in liblwgeom</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3169"><ulink url="http://trac.osgeo.org/postgis/ticket/3169">#3169</ulink></ulink>, Add SFCGAL 1.1 support: add ST_3DDifference, ST_3DUnion, ST_Volume, ST_MakeSolid, ST_IsSolid (Vincent Mora / Oslandia)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3169"><ulink url="http://trac.osgeo.org/postgis/ticket/3169">#3169</ulink></ulink>, ST_ApproximateMedialAxis (Sandro Santilli)</para>
<para>ST_CPAWithin (Sandro Santilli / Boundless)</para>
<para>Add |=| operator with CPA semantic and KNN support with PgSQL 9.5+ (Sandro Santilli / Boundless)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3131"><ulink url="http://trac.osgeo.org/postgis/ticket/3131">#3131</ulink></ulink>, KNN support for the geography type (Paul Ramsey / CartoDB)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3023"><ulink url="http://trac.osgeo.org/postgis/ticket/3023">#3023</ulink></ulink>, ST_ClusterIntersecting / ST_ClusterWithin (Dan Baston)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2703"><ulink url="http://trac.osgeo.org/postgis/ticket/2703">#2703</ulink></ulink>, Exact KNN results for all geometry types, aka "KNN re-check" (Paul Ramsey / CartoDB)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1137"><ulink url="http://trac.osgeo.org/postgis/ticket/1137">#1137</ulink></ulink>, Allow a tolerance value in ST_RemoveRepeatedPoints (Paul Ramsey / CartoDB)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3062"><ulink url="http://trac.osgeo.org/postgis/ticket/3062">#3062</ulink></ulink>, Allow passing M factor to ST_Scale (Sandro Santilli / Boundless)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3139"><ulink url="http://trac.osgeo.org/postgis/ticket/3139">#3139</ulink></ulink>, ST_BoundingDiagonal (Sandro Santilli / Boundless)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3129"><ulink url="http://trac.osgeo.org/postgis/ticket/3129">#3129</ulink></ulink>, ST_IsValidTrajectory (Sandro Santilli / Boundless)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3128"><ulink url="http://trac.osgeo.org/postgis/ticket/3128">#3128</ulink></ulink>, ST_ClosestPointOfApproach (Sandro Santilli / Boundless)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3152"><ulink url="http://trac.osgeo.org/postgis/ticket/3152">#3152</ulink></ulink>, ST_DistanceCPA (Sandro Santilli / Boundless)</para>
<para>Canonical output for index key types</para>
<para>ST_SwapOrdinates (Sandro Santilli / Boundless)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2918"><ulink url="http://trac.osgeo.org/postgis/ticket/2918">#2918</ulink></ulink>, Use GeographicLib functions for geodetics (Mike Toews)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3074"><ulink url="http://trac.osgeo.org/postgis/ticket/3074">#3074</ulink></ulink>, ST_Subdivide to break up large geometry (Paul Ramsey / CartoDB)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3040"><ulink url="http://trac.osgeo.org/postgis/ticket/3040">#3040</ulink></ulink>, KNN GiST index based centroid (<<->>) n-D distance operators (Sandro Santilli / Boundless)</para>
<para>Interruptibility API for liblwgeom (Sandro Santilli / CartoDB)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2939"><ulink url="http://trac.osgeo.org/postgis/ticket/2939">#2939</ulink></ulink>, ST_ClipByBox2D (Sandro Santilli / CartoDB)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2247"><ulink url="http://trac.osgeo.org/postgis/ticket/2247">#2247</ulink></ulink>, ST_Retile and ST_CreateOverview: in-db raster overviews creation (Sandro Santilli / Vizzuality)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/899"><ulink url="http://trac.osgeo.org/postgis/ticket/899">#899</ulink></ulink>, -m shp2pgsql attribute names mapping -m switch (Regina Obe / Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1678"><ulink url="http://trac.osgeo.org/postgis/ticket/1678">#1678</ulink></ulink>, Added GUC postgis.gdal_datapath to specify GDAL config variable GDAL_DATA</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2843"><ulink url="http://trac.osgeo.org/postgis/ticket/2843">#2843</ulink></ulink>, Support reprojection on raster import (Sandro Santilli / Vizzuality)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2349"><ulink url="http://trac.osgeo.org/postgis/ticket/2349">#2349</ulink></ulink>, Support for encoded_polyline input/output (Kashif Rasul)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2159"><ulink url="http://trac.osgeo.org/postgis/ticket/2159">#2159</ulink></ulink>, report libjson version from postgis_full_version()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2770"><ulink url="http://trac.osgeo.org/postgis/ticket/2770">#2770</ulink></ulink>, ST_MemSize(raster)</para>
<para>Add postgis_noop(raster)</para>
<para>Added missing variants of ST_TPI(), ST_TRI() and ST_Roughness()</para>
<para>Added GUC postgis.gdal_enabled_drivers to specify GDAL config variable GDAL_SKIP</para>
<para>Added GUC postgis.enable_outdb_rasters to enable access to rasters with out-db bands</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2387"><ulink url="http://trac.osgeo.org/postgis/ticket/2387">#2387</ulink></ulink>, address_standardizer extension as part of PostGIS (Stephen Woodbridge / imaptools.com, Walter Sinclair, Regina Obe)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2816"><ulink url="http://trac.osgeo.org/postgis/ticket/2816">#2816</ulink></ulink>, address_standardizer_data_us extension provides reference lex,gaz,rules for address_standardizer (Stephen Woodbridge / imaptools.com, Walter Sinclair, Regina Obe)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2341"><ulink url="http://trac.osgeo.org/postgis/ticket/2341">#2341</ulink></ulink>, New mask parameter for ST_MapAlgebra</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2397"><ulink url="http://trac.osgeo.org/postgis/ticket/2397">#2397</ulink></ulink>, read encoding info automatically in shapefile loader</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2430"><ulink url="http://trac.osgeo.org/postgis/ticket/2430">#2430</ulink></ulink>, ST_ForceCurve</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2565"><ulink url="http://trac.osgeo.org/postgis/ticket/2565">#2565</ulink></ulink>, ST_SummaryStatsAgg()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2567"><ulink url="http://trac.osgeo.org/postgis/ticket/2567">#2567</ulink></ulink>, ST_CountAgg()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2632"><ulink url="http://trac.osgeo.org/postgis/ticket/2632">#2632</ulink></ulink>, ST_AsGML() support for curved features</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2652"><ulink url="http://trac.osgeo.org/postgis/ticket/2652">#2652</ulink></ulink>, Add --upgrade-path switch to run_test.pl</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2754"><ulink url="http://trac.osgeo.org/postgis/ticket/2754">#2754</ulink></ulink>, sfcgal wrapped as an extension</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2227"><ulink url="http://trac.osgeo.org/postgis/ticket/2227">#2227</ulink></ulink>, Simplification with Visvalingam-Whyatt algorithm ST_SimplifyVW, ST_SetEffectiveArea (Nicklas Avén)</para>
<para>Functions to encode and decode TWKB ST_AsTWKB, ST_GeomFromTWKB (Paul Ramsey / Nicklas Avén / CartoDB)</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3223"><ulink url="http://trac.osgeo.org/postgis/ticket/3223">#3223</ulink></ulink>, Add memcmp short-circuit to ST_Equals (Daniel Baston)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3227"><ulink url="http://trac.osgeo.org/postgis/ticket/3227">#3227</ulink></ulink>, Tiger geocoder upgraded to support Tiger 2015 census</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2278"><ulink url="http://trac.osgeo.org/postgis/ticket/2278">#2278</ulink></ulink>, Make liblwgeom compatible between minor releases</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/897"><ulink url="http://trac.osgeo.org/postgis/ticket/897">#897</ulink></ulink>, ST_AsX3D support for GeoCoordinates and systems "GD" "WE" ability to flip x/y axis (use option = 2, 3)</para>
<para>ST_Split: allow splitting lines by multilines, multipoints and (multi)polygon boundaries</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3070"><ulink url="http://trac.osgeo.org/postgis/ticket/3070">#3070</ulink></ulink>, Simplify geometry type constraint</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2839"><ulink url="http://trac.osgeo.org/postgis/ticket/2839">#2839</ulink></ulink>, Implement selectivity estimator for functional indexes, speeding up spatial queries on raster tables. (Sandro Santilli / Vizzuality)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2361"><ulink url="http://trac.osgeo.org/postgis/ticket/2361">#2361</ulink></ulink>, Added spatial_index column to raster_columns view</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2390"><ulink url="http://trac.osgeo.org/postgis/ticket/2390">#2390</ulink></ulink>, Testsuite for pgsql2shp</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2527"><ulink url="http://trac.osgeo.org/postgis/ticket/2527">#2527</ulink></ulink>, Added -k flag to raster2pgsql to skip checking that band is NODATA</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2616"><ulink url="http://trac.osgeo.org/postgis/ticket/2616">#2616</ulink></ulink>, Reduce text casts during topology building and export</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2717"><ulink url="http://trac.osgeo.org/postgis/ticket/2717">#2717</ulink></ulink>, support startpoint, endpoint, pointn, numpoints for compoundcurve</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2747"><ulink url="http://trac.osgeo.org/postgis/ticket/2747">#2747</ulink></ulink>, Add support for GDAL 2.0</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2754"><ulink url="http://trac.osgeo.org/postgis/ticket/2754">#2754</ulink></ulink>, SFCGAL can now be installed with CREATE EXTENSION (Vincent Mora @ Oslandia)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2828"><ulink url="http://trac.osgeo.org/postgis/ticket/2828">#2828</ulink></ulink>, Convert ST_Envelope(raster) from SQL to C</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2829"><ulink url="http://trac.osgeo.org/postgis/ticket/2829">#2829</ulink></ulink>, Shortcut ST_Clip(raster) if geometry fully contains the raster and no NODATA specified</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2906"><ulink url="http://trac.osgeo.org/postgis/ticket/2906">#2906</ulink></ulink>, Update tiger geocoder to handle tiger 2014 data</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3048"><ulink url="http://trac.osgeo.org/postgis/ticket/3048">#3048</ulink></ulink>, Speed up geometry simplification (J.Santana @ CartoDB)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3092"><ulink url="http://trac.osgeo.org/postgis/ticket/3092">#3092</ulink></ulink>, Slow performance of geometry_columns with many tables</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.8</title>
<para>Release date: 2015-07-07</para>
<para>This is a critical bug fix release.</para>
<simplesect>
<title>Bug Fixes</title>
<para>#3159, do not force a bbox cache on ST_Affine</para>
<para>#3018, GROUP BY geography sometimes returns duplicate rows</para>
<para>#3048, shp2pgsql - illegal number format when specific system locale set</para>
<para>#3094, Malformed GeoJSON inputs crash backend</para>
<para>#3104, st_asgml introduces random characters in ID field</para>
<para>#3155, Remove liblwgeom.h on make uninstall</para>
<para>#3177, gserialized_is_empty cannot handle nested empty cases</para>
<para>Fix crash in ST_LineLocatePoint</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.7</title>
<para>Release date: 2015-03-30</para>
<para>This is a critical bug fix release.</para>
<simplesect>
<title>Bug Fixes</title>
<para>#3086, ST_DumpValues() crashes backend on cleanup with invalid band indexes</para>
<para>#3088, Do not (re)define strcasestr in a liblwgeom.h</para>
<para>#3094, Malformed GeoJSON inputs crash backend</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.6</title>
<para>Release date: 2015-03-20</para>
<para>This is a bug fix and performance improvement release.</para>
<simplesect>
<title>Enhancements</title>
<para>#3000, Ensure edge splitting and healing algorithms use indexes</para>
<para>#3048, Speed up geometry simplification (J.Santana @ CartoDB)</para>
<para>#3050, Speep up geometry type reading (J.Santana @ CartoDB)</para>
</simplesect>
<simplesect>
<title>Bug Fixes</title>
<para>#2941, allow geography columns with SRID other than 4326</para>
<para>#3069, small objects getting inappropriately fluffed up w/ boxes</para>
<para>#3068, Have postgis_typmod_dims return NULL for unconstrained dims</para>
<para>#3061, Allow duplicate points in JSON, GML, GML ST_GeomFrom* functions</para>
<para>#3058, Fix ND-GiST picksplit method to split on the best plane</para>
<para>#3052, Make operators <-> and <#> available for PostgreSQL < 9.1</para>
<para>#3045, Fix dimensionality confusion in &&& operator</para>
<para>#3016, Allow unregistering layers of corrupted topologies</para>
<para>#3015, Avoid exceptions from TopologySummary</para>
<para>#3020, ST_AddBand out-db bug where height using width value</para>
<para>#3031, Allow restore of Geometry(Point) tables dumped with empties in them</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.5</title>
<para>Release date: 2014-12-18</para>
<para>This is a bug fix and performance improvement release.</para>
<simplesect>
<title>Enhancements</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2933"><ulink url="http://trac.osgeo.org/postgis/ticket/2933">#2933</ulink></ulink>, Speedup construction of large multi-geometry objects</para>
</simplesect>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2947"><ulink url="http://trac.osgeo.org/postgis/ticket/2947">#2947</ulink></ulink>, Fix memory leak in lwgeom_make_valid for single-component
collection input</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2949"><ulink url="http://trac.osgeo.org/postgis/ticket/2949">#2949</ulink></ulink>, Fix memory leak in lwgeom_mindistance2d for curve input</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2931"><ulink url="http://trac.osgeo.org/postgis/ticket/2931">#2931</ulink></ulink>, BOX representation is case sensitive</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2942"><ulink url="http://trac.osgeo.org/postgis/ticket/2942">#2942</ulink></ulink>, PostgreSQL 9.5 support</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2953"><ulink url="http://trac.osgeo.org/postgis/ticket/2953">#2953</ulink></ulink>, 2D stats not generated when Z/M values are extreme</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/3009"><ulink url="http://trac.osgeo.org/postgis/ticket/3009">#3009</ulink></ulink>, Geography cast may effect underlying tuple</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.4</title>
<para>Release date: 2014-09-10</para>
<para>This is a bug fix and performance improvement release.</para>
<simplesect>
<title>Enhancements</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2745"><ulink url="http://trac.osgeo.org/postgis/ticket/2745">#2745</ulink></ulink>, Speedup ST_Simplify calls against points</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2747"><ulink url="http://trac.osgeo.org/postgis/ticket/2747">#2747</ulink></ulink>, Support for GDAL 2.0</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2749"><ulink url="http://trac.osgeo.org/postgis/ticket/2749">#2749</ulink></ulink>, Make rtpostgis_upgrade_20_21.sql ACID</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2811"><ulink url="http://trac.osgeo.org/postgis/ticket/2811">#2811</ulink></ulink>, Do not specify index names when loading shapefiles/rasters</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2829"><ulink url="http://trac.osgeo.org/postgis/ticket/2829">#2829</ulink></ulink>, Shortcut ST_Clip(raster) if geometry fully contains the raster
and no NODATA specified</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2895"><ulink url="http://trac.osgeo.org/postgis/ticket/2895">#2895</ulink></ulink>, Raise cost of ST_ConvexHull(raster) to 300 for better query plans</para>
</simplesect>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2605"><ulink url="http://trac.osgeo.org/postgis/ticket/2605">#2605</ulink></ulink>, armel: _ST_Covers() returns true for point in hole</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2911"><ulink url="http://trac.osgeo.org/postgis/ticket/2911">#2911</ulink></ulink>, Fix output scale on ST_Rescale/ST_Resample/ST_Resize of rasters
with scale 1/-1 and offset 0/0.</para>
<para>Fix crash in ST_Union(raster)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2704"><ulink url="http://trac.osgeo.org/postgis/ticket/2704">#2704</ulink></ulink>, ST_GeomFromGML() does not work properly with array of gml:pos
(Even Roualt)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2708"><ulink url="http://trac.osgeo.org/postgis/ticket/2708">#2708</ulink></ulink>, updategeometrysrid doesn't update srid check when schema
not specified. Patch from Marc Jansen</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2720"><ulink url="http://trac.osgeo.org/postgis/ticket/2720">#2720</ulink></ulink>, lwpoly_add_ring should update maxrings after realloc</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2759"><ulink url="http://trac.osgeo.org/postgis/ticket/2759">#2759</ulink></ulink>, Fix postgis_restore.pl handling of multiline object comments
embedding sql comments</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2774"><ulink url="http://trac.osgeo.org/postgis/ticket/2774">#2774</ulink></ulink>, fix undefined behavior in ptarray_calculate_gbox_geodetic</para>
<para>Fix potential memory fault in ST_MakeValid</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2784"><ulink url="http://trac.osgeo.org/postgis/ticket/2784">#2784</ulink></ulink>, Fix handling of bogus argument to --with-sfcgal</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2772"><ulink url="http://trac.osgeo.org/postgis/ticket/2772">#2772</ulink></ulink>, Premature memory free in RASTER_getBandPath (ST_BandPath)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2755"><ulink url="http://trac.osgeo.org/postgis/ticket/2755">#2755</ulink></ulink>, Fix regressions tests against all versions of SFCGAL</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2775"><ulink url="http://trac.osgeo.org/postgis/ticket/2775">#2775</ulink></ulink>, lwline_from_lwmpoint leaks memory</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2802"><ulink url="http://trac.osgeo.org/postgis/ticket/2802">#2802</ulink></ulink>, ST_MapAlgebra checks for valid callback function return value</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2803"><ulink url="http://trac.osgeo.org/postgis/ticket/2803">#2803</ulink></ulink>, ST_MapAlgebra handles no userarg and STRICT callback function</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2834"><ulink url="http://trac.osgeo.org/postgis/ticket/2834">#2834</ulink></ulink>, ST_Estimated_Extent and mixedCase table names (regression bug)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2845"><ulink url="http://trac.osgeo.org/postgis/ticket/2845">#2845</ulink></ulink>, Bad geometry created from ST_AddPoint</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2870"><ulink url="http://trac.osgeo.org/postgis/ticket/2870">#2870</ulink></ulink>, Binary insert into geography column results geometry being inserted</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2872"><ulink url="http://trac.osgeo.org/postgis/ticket/2872">#2872</ulink></ulink>, make install builds documentation (Greg Troxell)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2819"><ulink url="http://trac.osgeo.org/postgis/ticket/2819">#2819</ulink></ulink>, find isfinite or replacement on Centos5 / Solaris</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2899"><ulink url="http://trac.osgeo.org/postgis/ticket/2899">#2899</ulink></ulink>, geocode limit 1 not returning best answer (tiger geocoder)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2903"><ulink url="http://trac.osgeo.org/postgis/ticket/2903">#2903</ulink></ulink>, Unable to compile on FreeBSD</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2927"><ulink url="http://trac.osgeo.org/postgis/ticket/2927">#2927</ulink></ulink> reverse_geocode not filling in direction prefix (tiger geocoder)
get rid of deprecated ST_Line_Locate_Point called</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.3</title>
<para>Release date: 2014/05/13</para>
<para>This is a bug fix and security release.</para>
<simplesect>
<title>Important changes</title>
<para>
Starting with this version offline raster access and use of GDAL drivers
are disabled by default.
</para>
<para>
An environment variable is introduced to allow for enabling
specific GDAL drivers: POSTGIS_GDAL_ENABLED_DRIVERS.
By default, all GDAL drivers are disabled
</para>
<para>
An environment variable is introduced to allow for enabling
out-db raster bands: POSTGIS_ENABLE_OUTDB_RASTERS.
By default, out-db raster bands are disabled
</para>
<para>
The environment variables must be set for the PostgreSQL process,
and determines the behavior of the whole cluster.
</para>
</simplesect>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2697">#2697</ulink>, invalid GeoJSON Polygon input crashes server process</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2700">#2700</ulink>, Fix dumping of higher-dimension datasets with null rows</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2706">#2706</ulink>, ST_DumpPoints of EMPTY geometries crashes server</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.2</title>
<para>Release date: 2014/03/31</para>
<para>This is a bug fix release, addressing issues that have been filed since the 2.1.1 release.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2666">#2666</ulink>, Error out at configure time if no SQL preprocessor can be found</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2534">#2534</ulink>, st_distance returning incorrect results for large geographies</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2539">#2539</ulink>, Check for json-c/json.h presence/usability before json/json.h</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2543">#2543</ulink>, invalid join selectivity error from simple query</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2546">#2546</ulink>, GeoJSON with string coordinates parses incorrectly </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2547">#2547</ulink>, Fix ST_Simplify(TopoGeometry) for hierarchical topogeoms</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2552">#2552</ulink>, Fix NULL raster handling in ST_AsPNG, ST_AsTIFF and
ST_AsJPEG</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2555">#2555</ulink>, Fix parsing issue of range arguments of ST_Reclass</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2556">#2556</ulink>, geography ST_Intersects results depending on insert order</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2580">#2580</ulink>, Do not allow installing postgis twice in the same database</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2589">#2589</ulink>, Remove use of unnecessary void pointers</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2607">#2607</ulink>, Cannot open more than 1024 out-db files in one process</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2610">#2610</ulink>, Ensure face splitting algorithm uses the edge index</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2615">#2615</ulink>, EstimatedExtent (and hence, underlying stats) gathering wrong bbox</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2619">#2619</ulink>, Empty rings array in GeoJSON polygon causes crash</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2634">#2634</ulink>, regression in sphere distance code</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2638">#2638</ulink>, Geography distance on M geometries sometimes wrong</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2648">#2648</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/2653">#2653</ulink>, Fix topology functions when "topology" is not in search_path</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2654">#2654</ulink>, Drop deprecated calls from topology</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2655">#2655</ulink>, Let users without topology privileges call postgis_full_version()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2674">#2674</ulink>, Fix missing operator = and hash_raster_ops opclass on raster</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2675">#2675</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/2534">#2534</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/2636">#2636</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/2634">#2634</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/2638">#2638</ulink>, Geography distance issues with tree optimization</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2494">#2494</ulink>, avoid memcopy in GiST index (hayamiz)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2560">#2560</ulink>, soft upgrade: avoid drop/recreate of aggregates that hadn't changed</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.1</title>
<para>Release date: 2013/11/06</para>
<para>This is a bug fix release, addressing issues that have been filed since the 2.1.0 release.</para>
<simplesect>
<title>Important Changes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2514">#2514</ulink>, Change raster license from GPL v3+ to v2+, allowing distribution of PostGIS Extension as GPLv2.</para>
</simplesect>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2396">#2396</ulink>, Make regression tests more endian-agnostic</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2434">#2434</ulink>, Fix ST_Intersection(geog,geog) regression in rare cases</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2454">#2454</ulink>, Fix behavior of ST_PixelAsXXX functions regarding exclude_nodata_value parameter</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2489">#2489</ulink>, Fix upgrades from 2.0 leaving stale function signatures</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2525">#2525</ulink>, Fix handling of SRID in nested collections</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2449">#2449</ulink>, Fix potential infinite loop in index building</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2493">#2493</ulink>, Fix behavior of ST_DumpValues when passed an empty raster</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2502">#2502</ulink>, Fix postgis_topology_scripts_installed() install schema</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2504">#2504</ulink>, Fix segfault on bogus pgsql2shp call </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2512">#2512</ulink>, Support for foreign tables and materialized views in raster_columns and raster_overviews</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2478">#2478</ulink>, support for tiger 2013</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2463">#2463</ulink>, support for exact length calculations on arc geometries</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.1.0</title>
<para>Release date: 2013/08/17</para>
<para>This is a minor release addressing both bug fixes and performance and functionality enhancements addressing issues since 2.0.3 release.
If you are upgrading from 2.0+, only a soft upgrade is required. If you are upgrading from 1.5 or earlier, a hard upgrade is required.</para>
<simplesect>
<title>Important / Breaking Changes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1653">#1653</ulink>, Removed srid parameter from ST_Resample(raster) and variants
with reference raster no longer apply reference raster's SRID.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1962">#1962</ulink> ST_Segmentize - As a result of
the introduction of geography support, The construct:
<code>SELECT ST_Segmentize('LINESTRING(1 2, 3 4)',0.5);</code>
will result in ambiguous function error</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2026">#2026</ulink>, ST_Union(raster) now unions all bands of all rasters</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2089">#2089</ulink>, liblwgeom: lwgeom_set_handlers replaces lwgeom_init_allocators.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2150">#2150</ulink>, regular_blocking is no longer a constraint. column of same name
in raster_columns now checks for existance of spatially_unique
and coverage_tile constraints</para>
<para>ST_Intersects(raster, geometry) behaves in the same manner as
ST_Intersects(geometry, raster).</para>
<para>point variant of ST_SetValue(raster) previously did not check SRID
of input geometry and raster.</para>
<para>ST_Hillshade parameters azimuth and altitude are now in degrees
instead of radians.</para>
<para>ST_Slope and ST_Aspect return pixel values in degrees instead of radians.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2104">#2104</ulink>, ST_World2RasterCoord, ST_World2RasterCoordX and
ST_World2RasterCoordY renamed to ST_WorldToRasterCoord,
ST_WorldToRasterCoordX and ST_WorldToRasterCoordY.
ST_Raster2WorldCoord, ST_Raster2WorldCoordX and
ST_Raster2WorldCoordY renamed to ST_RasterToWorldCoord,
ST_RasterToWorldCoordX and ST_RasterToWorldCoordY</para>
<para>ST_Estimated_Extent renamed to ST_EstimatedExtent</para>
<para>ST_Line_Interpolate_Point renamed to ST_LineInterpolatePoint</para>
<para>ST_Line_Substring renamed to ST_LineSubstring</para>
<para>ST_Line_Locate_Point renamed to ST_LineLocatePoint</para>
<para>ST_Force_XXX renamed to ST_ForceXXX</para>
<para>ST_MapAlgebraFctNgb and 1 and 2 raster variants of ST_MapAlgebraFct.
Use ST_MapAlgebra instead</para>
<para>1 and 2 raster variants of ST_MapAlgebraExpr.
Use expression variants of ST_MapAlgebra instead</para>
</simplesect>
<simplesect>
<title>New Features</title>
<para>- Refer to http://postgis.net/docs/manual-2.1/PostGIS_Special_Functions_Index.html#NewFunctions_2_1
for complete list of new functions</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/310">#310</ulink>, ST_DumpPoints converted to a C function (Nathan Wagner) and much faster</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/739">#739</ulink>, UpdateRasterSRID()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/945">#945</ulink>, improved join selectivity, N-D selectivity calculations,
user accessible selectivity and stats reader functions for
testing (Paul Ramsey / OpenGeo)</para>
<para>toTopoGeom with TopoGeometry sink (Sandro Santilli / Vizzuality)</para>
<para>clearTopoGeom (Sandro Santilli / Vizzuality)</para>
<para>ST_Segmentize(geography) (Paul Ramsey / OpenGeo)</para>
<para>ST_DelaunayTriangles (Sandro Santilli / Vizzuality)</para>
<para>ST_NearestValue, ST_Neighborhood (Bborie Park / UC Davis)</para>
<para>ST_PixelAsPoint, ST_PixelAsPoints (Bborie Park / UC Davis)</para>
<para>ST_PixelAsCentroid, ST_PixelAsCentroids (Bborie Park / UC Davis)</para>
<para>ST_Raster2WorldCoord, ST_World2RasterCoord (Bborie Park / UC Davis)</para>
<para>Additional raster/raster spatial relationship functions
(ST_Contains, ST_ContainsProperly, ST_Covers, ST_CoveredBy, ST_Disjoint,
ST_Overlaps, ST_Touches, ST_Within, ST_DWithin, ST_DFullyWithin)
(Bborie Park / UC Davis)</para>
<para>Added array variants of ST_SetValues() to set many pixel values of a band
in one call (Bborie Park / UC Davis)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1293">#1293</ulink>, ST_Resize(raster) to resize rasters based upon width/height</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1627">#1627</ulink>, package tiger_geocoder as a PostgreSQL extension</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1643">#1643</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/2076">#2076</ulink>, Upgrade tiger geocoder to support loading tiger 2011 and 2012
(Regina Obe / Paragon Corporation) Funded by Hunter Systems Group</para>
<para>GEOMETRYCOLLECTION support for ST_MakeValid (Sandro Santilli / Vizzuality)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1709">#1709</ulink>, ST_NotSameAlignmentReason(raster, raster)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1818">#1818</ulink>, ST_GeomFromGeoHash and friends (Jason Smith (darkpanda))</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1856">#1856</ulink>, reverse geocoder rating setting for prefer numbered highway name</para>
<para>ST_PixelOfValue (Bborie Park / UC Davis)</para>
<para>Casts to/from PostgreSQL geotypes (point/path/polygon).</para>
<para>Added geomval array variant of ST_SetValues() to set many pixel values of
a band using a set of geometries and corresponding values in one call
(Bborie Park / UC Davis)</para>
<para>ST_Tile(raster) to break up a raster into tiles (Bborie Park / UC Davis)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1895">#1895</ulink>, new r-tree node splitting algorithm (Alex Korotkov)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2011">#2011</ulink>, ST_DumpValues to output raster as array (Bborie Park / UC Davis)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2018">#2018</ulink>, ST_Distance support for CircularString, CurvePolygon, MultiCurve,
MultiSurface, CompoundCurve </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2030">#2030</ulink>, n-raster (and n-band) ST_MapAlgebra (Bborie Park / UC Davis)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2193">#2193</ulink>, Utilize PAGC parser as drop in replacement for tiger normalizer
(Steve Woodbridge, Regina Obe)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2210">#2210</ulink>, ST_MinConvexHull(raster)</para>
<para>lwgeom_from_geojson in liblwgeom (Sandro Santilli / Vizzuality)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1687">#1687</ulink>, ST_Simplify for TopoGeometry (Sandro Santilli / Vizzuality)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2228">#2228</ulink>, TopoJSON output for TopoGeometry (Sandro Santilli / Vizzuality)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2123">#2123</ulink>, ST_FromGDALRaster</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/613">#613</ulink>, ST_SetGeoReference with numerical parameters instead of text</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2276">#2276</ulink>, ST_AddBand(raster) variant for out-db bands</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2280">#2280</ulink>, ST_Summary(raster)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2163">#2163</ulink>, ST_TPI for raster (Nathaniel Clay)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2164">#2164</ulink>, ST_TRI for raster (Nathaniel Clay)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2302">#2302</ulink>, ST_Roughness for raster (Nathaniel Clay)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2290">#2290</ulink>, ST_ColorMap(raster) to generate RGBA bands</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2254">#2254</ulink>, Add SFCGAL backend support.
(Backend selection throught postgis.backend var)
Functions available both throught GEOS or SFCGAL:
ST_Intersects, ST_3DIntersects, ST_Intersection, ST_Area,
ST_Distance, ST_3DDistance
New functions available only with SFCGAL backend:
ST_3DIntersection, ST_Tesselate, ST_3DArea, ST_Extrude, ST_ForceLHR
ST_Orientation, ST_Minkowski, ST_StraightSkeleton
postgis_sfcgal_version
New function available in PostGIS: ST_ForceSFS
(Olivier Courtin and Hugo Mercier / Oslandia)</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para>For detail of new functions and function improvements, please refer to <xref linkend="NewFunctions_2_1" />.</para>
<para>Much faster raster ST_Union, ST_Clip and many more function additions operations</para>
<para>For geometry/geography better planner selectivity and a lot more functions.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/823">#823</ulink>, tiger geocoder: Make loader_generate_script download portion
less greedy</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/826">#826</ulink>, raster2pgsql no longer defaults to padding tiles. Flag -P
can be used to pad tiles</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1363">#1363</ulink>, ST_AddBand(raster, ...) array version rewritten in C</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1364">#1364</ulink>, ST_Union(raster, ...) aggregate function rewritten in C</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1655">#1655</ulink>, Additional default values for parameters of ST_Slope</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1661">#1661</ulink>, Add aggregate variant of ST_SameAlignment</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1719">#1719</ulink>, Add support for Point and GeometryCollection ST_MakeValid inputs</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1780">#1780</ulink>, support ST_GeoHash for geography</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1796">#1796</ulink>, Big performance boost for distance calculations in geography</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1802">#1802</ulink>, improved function interruptibility.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1823">#1823</ulink>, add parameter in ST_AsGML to use id column for GML 3 output
(become mandatory since GML 3.2.1)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1856">#1856</ulink>, tiger geocoder: reverse geocoder rating setting for prefer
numbered highway name</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1938">#1938</ulink>, Refactor basic ST_AddBand to add multiple new bands in one call</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1978">#1978</ulink>, wrong answer when calculating length of a closed circular
arc (circle)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1989">#1989</ulink>, Preprocess input geometry to just intersection with raster
to be clipped</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2021">#2021</ulink>, Added multi-band support to ST_Union(raster, ...) aggregate function</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2006">#2006</ulink>, better support of ST_Area(geography) over poles and dateline</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2065">#2065</ulink>, ST_Clip(raster, ...) now a C function</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2069">#2069</ulink>, Added parameters to ST_Tile(raster) to control padding of tiles</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2078">#2078</ulink>, New variants of ST_Slope, ST_Aspect and ST_HillShade to provide
solution to handling tiles in a coverage</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2097">#2097</ulink>, Added RANGE uniontype option for ST_Union(raster)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2105">#2105</ulink>, Added ST_Transform(raster) variant for aligning output to
reference raster</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2119">#2119</ulink>, Rasters passed to ST_Resample(), ST_Rescale(), ST_Reskew(),
and ST_SnapToGrid() no longer require an SRID</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2141">#2141</ulink>, More verbose output when constraints fail to be added
to a raster column</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2143">#2143</ulink>, Changed blocksize constraint of raster to allow multiple values</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2148">#2148</ulink>, Addition of coverage_tile constraint for raster</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2149">#2149</ulink>, Addition of spatially_unique constraint for raster</para>
<para>TopologySummary output now includes unregistered layers and a count
of missing TopoGeometry objects from their natural layer.</para>
<para>ST_HillShade(), ST_Aspect() and ST_Slope() have one new optional
parameter to interpolate NODATA pixels before running the
operation.</para>
<para>Point variant of ST_SetValue(raster) is now a wrapper around geomval
variant of ST_SetValues(rast).</para>
<para>Proper support for raster band's isnodata flag in core API and loader.</para>
<para>Additional default values for parameters of ST_Aspect and ST_HillShade</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2178">#2178</ulink>, ST_Summary now advertises presence of known srid with an [S] flag</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2202">#2202</ulink>, Make libjson-c optional (--without-json configure switch)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2213">#2213</ulink>, Add support libjson-c 0.10+</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2231">#2231</ulink>, raster2pgsql supports user naming of filename column with -n</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2200">#2200</ulink>, ST_Union(raster, uniontype) unions all bands of all rasters</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2264">#2264</ulink>, postgis_restore.pl support for restoring into databases
with postgis in a custom schema</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2244">#2244</ulink>, emit warning when changing raster's georeference if raster has
out-db bands</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2222">#2222</ulink>, add parameter OutAsIn to flag whether ST_AsBinary should
return out-db bands as in-db bands</para>
</simplesect>
<simplesect><title>Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1839">#1839</ulink>, handling of subdatasets in GeoTIFF in raster2pgsql.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1840">#1840</ulink>, fix logic of when to compute # of tiles in raster2pgsql.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1870">#1870</ulink>, align the docs and actual behavior of raster's ST_Intersects</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1872">#1872</ulink>, fix ST_ApproxSummarystats to prevent division by zero</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1875">#1875</ulink>, ST_SummaryStats returns NULL for all parameters except count
when count is zero</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1932">#1932</ulink>, fix raster2pgsql of syntax for index tablespaces</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1936">#1936</ulink>, ST_GeomFromGML on CurvePolygon causes server crash</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1939">#1939</ulink>, remove custom data types: summarystats, histogram, quantile,
valuecount</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1951">#1951</ulink>, remove crash on zero-length linestrings</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1957">#1957</ulink>, ST_Distance to a one-point LineString returns NULL</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1976">#1976</ulink>, Geography point-in-ring code overhauled for more reliability</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1981">#1981</ulink>, cleanup of unused variables causing warnings with gcc 4.6+</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1996">#1996</ulink>, support POINT EMPTY in GeoJSON output</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2062">#2062</ulink>, improve performance of distance calculations</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2057">#2057</ulink>, Fixed linking issue for raster2psql to libpq</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2077">#2077</ulink>, Fixed incorrect values returning from ST_Hillshade()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2019">#2019</ulink>, ST_FlipCoordinates does not update bbox</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2100">#2100</ulink>, ST_AsRaster may not return raster with specified pixel type</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2126">#2126</ulink>, Better handling of empty rasters from ST_ConvexHull()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2165">#2165</ulink>, ST_NumPoints regression failure with CircularString</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2168">#2168</ulink>, ST_Distance is not always commutative</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2182">#2182</ulink>, Fix issue with outdb rasters with no SRID and ST_Resize</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2188">#2188</ulink>, Fix function parameter value overflow that caused problems
when copying data from a GDAL dataset</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2198">#2198</ulink>, Fix incorrect dimensions used when generating bands of out-db
rasters in ST_Tile()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2201">#2201</ulink>, ST_GeoHash wrong on boundaries</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2203">#2203</ulink>, Changed how rasters with unknown SRID and default geotransform
are handled when passing to GDAL Warp API</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2215">#2215</ulink>, Fixed raster exclusion constraint for conflicting name of
implicit index</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2251">#2251</ulink>, Fix bad dimensions when rescaling rasters with default
geotransform matrix</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2133">#2133</ulink>, Fix performance regression in expression variant of ST_MapAlgebra</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2257">#2257</ulink>, GBOX variables not initialized when testing with empty geometries</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2271">#2271</ulink>, Prevent parallel make of raster</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2282">#2282</ulink>, Fix call to undefined function nd_stats_to_grid() in debug mode</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2307">#2307</ulink>, ST_MakeValid outputs invalid geometries</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2309">#2309</ulink>, Remove confusing INFO message when trying to get SRS info</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2336">#2336</ulink>, FIPS 20 (KS) causes wildcard expansion to wget all files</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2348">#2348</ulink>, Provide raster upgrade path for 2.0 to 2.1</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2351">#2351</ulink>, st_distance between geographies wrong</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2359">#2359</ulink>, Fix handling of schema name when adding overview constraints</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2371">#2371</ulink>, Support GEOS versions with more than 1 digit in micro</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2383">#2383</ulink>, Remove unsafe use of \' from raster warning message</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2384">#2384</ulink>, Incorrect variable datatypes for ST_Neighborhood</para>
</simplesect>
<simplesect><title>Known Issues</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2111">#2111</ulink>, Raster bands can only reference the first 256 bands of out-db rasters</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.0.5</title>
<para>Release date: 2014/03/31</para>
<para>This is a bug fix release, addressing issues that have been filed since the 2.0.4 release. If you are using PostGIS 2.0+ a soft upgrade is required. For users of PostGIS 1.5 or below, a hard upgrade is required.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2494">#2494</ulink>, avoid memcpy in GIST index</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2502">#2502</ulink>, Fix postgis_topology_scripts_installed() install schema</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2504">#2504</ulink>, Fix segfault on bogus pgsql2shp call </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2528">#2528</ulink>, Fix memory leak in ST_Split / lwline_split_by_line</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2532">#2532</ulink>, Add missing raster/geometry commutator operators</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2533">#2533</ulink>, Remove duplicated signatures</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2552">#2552</ulink>, Fix NULL raster handling in ST_AsPNG, ST_AsTIFF and ST_AsJPEG</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2555">#2555</ulink>, Fix parsing issue of range arguments of ST_Reclass</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2589">#2589</ulink>, Remove use of unnecessary void pointers</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2607">#2607</ulink>, Cannot open more than 1024 out-db files in process</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2610">#2610</ulink>, Ensure face splitting algorithm uses the edge index </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2619">#2619</ulink>, Empty ring array in GeoJSON polygon causes crash</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2638">#2638</ulink>, Geography distance on M geometries sometimes wrong</para>
</simplesect>
<simplesect>
<title>Important Changes</title>
<para>#<ulink url="http://trac.osgeo.org/postgis/ticket/2514">#2514</ulink>, Change raster license from GPL v3+ to v2+, allowing distribution of PostGIS Extension as GPLv2.</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.0.4</title>
<para>Release date: 2013/09/06</para>
<para>This is a bug fix release, addressing issues that have been filed since the 2.0.3 release. If you are using PostGIS 2.0+ a soft upgrade is required. For users of PostGIS 1.5 or below, a hard upgrade is required.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2110">#2110</ulink>, Equality operator between EMPTY and point on origin</para>
<para>Allow adding points at precision distance with TopoGeo_addPoint</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1968">#1968</ulink>, Fix missing edge from toTopoGeom return</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2165">#2165</ulink>, ST_NumPoints regression failure with CircularString</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2168">#2168</ulink>, ST_Distance is not always commutative</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2186">#2186</ulink>, gui progress bar updates too frequent</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2201">#2201</ulink>, ST_GeoHash wrong on boundaries</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2257">#2257</ulink>, GBOX variables not initialized when testing with empty geometries</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2271">#2271</ulink>, Prevent parallel make of raster</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2267">#2267</ulink>, Server crash from analyze table</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2277">#2277</ulink>, potential segfault removed</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2307">#2307</ulink>, ST_MakeValid outputs invalid geometries</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2351">#2351</ulink>, st_distance between geographies wrong</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2359">#2359</ulink>, Incorrect handling of schema for overview constraints</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2371">#2371</ulink>, Support GEOS versions with more than 1 digit in micro</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2372">#2372</ulink>, Cannot parse space-padded KML coordinates</para>
<para>Fix build with systemwide liblwgeom installed</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2383">#2383</ulink>, Fix unsafe use of \' in warning message</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2410">#2410</ulink>, Fix segmentize of collinear curve</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2412">#2412</ulink>, ST_LineToCurve support for lines with less than 4 vertices</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2415">#2415</ulink>, ST_Multi support for COMPOUNDCURVE and CURVEPOLYGON</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2420">#2420</ulink>, ST_LineToCurve: require at least 8 edges to define a full circle</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2423">#2423</ulink>, ST_LineToCurve: require all arc edges to form the same angle</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2424">#2424</ulink>, ST_CurveToLine: add support for COMPOUNDCURVE in MULTICURVE</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2427">#2427</ulink>, Make sure to retain first point of curves on ST_CurveToLine</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2269">#2269</ulink>, Avoid uselessly detoasting full geometries on ANALYZE</para>
</simplesect>
<simplesect>
<title>Known Issues</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2111">#2111</ulink>, Raster bands can only reference the first 256 bands of out-db rasters</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.0.3</title>
<para>Release date: 2013/03/01</para>
<para>This is a bug fix release, addressing issues that have been filed since the 2.0.2 release. If you are using PostGIS 2.0+ a soft upgrade is required. For users of PostGIS 1.5 or below, a hard upgrade is required.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2126">#2126</ulink>, Better handling of empty rasters from ST_ConvexHull()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2134">#2134</ulink>, Make sure to process SRS before passing it off to GDAL functions</para>
<para>Fix various memory leaks in liblwgeom</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2173">#2173</ulink>, Fix robustness issue in splitting a line with own vertex also affecting topology building (<ulink url="http://trac.osgeo.org/postgis/ticket/2172">#2172</ulink>)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2174">#2174</ulink>, Fix usage of wrong function lwpoly_free()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2176">#2176</ulink>, Fix robustness issue with ST_ChangeEdgeGeom</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2184">#2184</ulink>, Properly copy topologies with Z value </para>
<para>postgis_restore.pl support for mixed case geometry column name in dumps</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2188">#2188</ulink>, Fix function parameter value overflow that caused problems when copying data from a GDAL dataset</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2216">#2216</ulink>, More memory errors in MultiPolygon GeoJSON parsing (with holes)</para>
<para>Fix Memory leak in GeoJSON parser</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2141">#2141</ulink>, More verbose output when constraints fail to be added to a raster column</para>
<para>Speedup ST_ChangeEdgeGeom</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.0.2</title>
<para>Release date: 2012/12/03</para>
<para>This is a bug fix release, addressing issues that have been filed since the 2.0.1 release.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1287">#1287</ulink>, Drop of "gist_geometry_ops" broke a few clients
package of legacy_gist.sql for these cases</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1391">#1391</ulink>, Errors during upgrade from 1.5</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1828">#1828</ulink>, Poor selectivity estimate on ST_DWithin</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1838">#1838</ulink>, error importing tiger/line data</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1869">#1869</ulink>, ST_AsBinary is not unique added to legacy_minor/legacy.sql scripts</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1885">#1885</ulink>, Missing field from tabblock table in tiger2010 census_loader.sql</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1891">#1891</ulink>, Use LDFLAGS environment when building liblwgeom</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1900">#1900</ulink>, Fix pgsql2shp for big-endian systems </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1932">#1932</ulink>, Fix raster2pgsql for invalid syntax for setting index tablespace</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1936">#1936</ulink>, ST_GeomFromGML on CurvePolygon causes server crash</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1955">#1955</ulink>, ST_ModEdgeHeal and ST_NewEdgeHeal for doubly connected edges</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1957">#1957</ulink>, ST_Distance to a one-point LineString returns NULL</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1976">#1976</ulink>, Geography point-in-ring code overhauled for more reliability</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1978">#1978</ulink>, wrong answer calculating length of closed circular arc (circle)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1981">#1981</ulink>, Remove unused but set variables as found with gcc 4.6+</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1987">#1987</ulink>, Restore 1.5.x behaviour of ST_Simplify</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1989">#1989</ulink>, Preprocess input geometry to just intersection with raster
to be clipped</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1991">#1991</ulink>, geocode really slow on PostgreSQL 9.2</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1996">#1996</ulink>, support POINT EMPTY in GeoJSON output</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1998">#1998</ulink>, Fix ST_{Mod,New}EdgeHeal joining edges sharing both endpoints</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2001">#2001</ulink>, ST_CurveToLine has no effect if the geometry doesn't actually contain an arc</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2015">#2015</ulink>, ST_IsEmpty('POLYGON(EMPTY)') returns False</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2019">#2019</ulink>, ST_FlipCoordinates does not update bbox</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2025">#2025</ulink>, Fix side location conflict at TopoGeo_AddLineString</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2026">#2026</ulink>, improve performance of distance calculations</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2033">#2033</ulink>, Fix adding a splitting point into a 2.5d topology </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2051">#2051</ulink>, Fix excess of precision in ST_AsGeoJSON output</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2052">#2052</ulink>, Fix buffer overflow in lwgeom_to_geojson</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2056">#2056</ulink>, Fixed lack of SRID check of raster and geometry in ST_SetValue()</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2057">#2057</ulink>, Fixed linking issue for raster2psql to libpq</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2060">#2060</ulink>, Fix "dimension" check violation by GetTopoGeomElementArray</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2072">#2072</ulink>, Removed outdated checks preventing ST_Intersects(raster) from
working on out-db bands</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2077">#2077</ulink>, Fixed incorrect answers from ST_Hillshade(raster) </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2092">#2092</ulink>, Namespace issue with ST_GeomFromKML,ST_GeomFromGML for libxml 2.8+</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2099">#2099</ulink>, Fix double free on exception in ST_OffsetCurve</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2100">#2100</ulink>, ST_AsRaster() may not return raster with specified pixel type</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2108">#2108</ulink>, Ensure ST_Line_Interpolate_Point always returns POINT</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2109">#2109</ulink>, Ensure ST_Centroid always returns POINT</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2117">#2117</ulink>, Ensure ST_PointOnSurface always returns POINT</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2129">#2129</ulink>, Fix SRID in ST_Homogenize output with collection input</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2130">#2130</ulink>, Fix memory error in MultiPolygon GeoJson parsing</para>
<para>Update URL of Maven jar</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1581">#1581</ulink>, ST_Clip(raster, ...) no longer imposes NODATA on a band if the
corresponding band from the source raster did not have NODATA</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1928">#1928</ulink>, Accept array properties in GML input multi-geom input
(Kashif Rasul and Shoaib Burq / SpacialDB)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2082">#2082</ulink>, Add indices on start_node and end_node of topology edge tables</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/2087">#2087</ulink>, Speedup topology.GetRingEdges using a recursive CTE</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.0.1</title>
<para>Release date: 2012/06/22</para>
<para>This is a bug fix release, addressing issues that have been filed since the 2.0.0 release.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1264">#1264</ulink>, fix st_dwithin(geog, geog, 0). </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1468">#1468</ulink> shp2pgsql-gui table column schema get shifted</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1694">#1694</ulink>, fix building with clang. (vince)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1708">#1708</ulink>, improve restore of pre-PostGIS 2.0 backups.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1714">#1714</ulink>, more robust handling of high topology tolerance.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1755">#1755</ulink>, ST_GeographyFromText support for higher dimensions.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1759">#1759</ulink>, loading transformed shapefiles in raster enabled db.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1761">#1761</ulink>, handling of subdatasets in NetCDF, HDF4 and HDF5 in raster2pgsql.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1763">#1763</ulink>, topology.toTopoGeom use with custom search_path.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1766">#1766</ulink>, don't let ST_RemEdge* destroy peripheral TopoGeometry objects.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1774">#1774</ulink>, Clearer error on setting an edge geometry to an invalid one.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1775">#1775</ulink>, ST_ChangeEdgeGeom collision detection with 2-vertex target.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1776">#1776</ulink>, fix ST_SymDifference(empty, geom) to return geom.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1779">#1779</ulink>, install SQL comment files.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1782">#1782</ulink>, fix spatial reference string handling in raster.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1789">#1789</ulink>, fix false edge-node crossing report in ValidateTopology.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1790">#1790</ulink>, fix toTopoGeom handling of duplicated primitives.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1791">#1791</ulink>, fix ST_Azimuth with very close but distinct points.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1797">#1797</ulink>, fix (ValidateTopology(xxx)).* syntax calls.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1805">#1805</ulink>, put back the 900913 SRID entry.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1813">#1813</ulink>, Only show readable relations in metadata tables.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1819">#1819</ulink>, fix floating point issues with ST_World2RasterCoord and
ST_Raster2WorldCoord variants.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1820">#1820</ulink> compilation on 9.2beta1.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1822">#1822</ulink>, topology load on PostgreSQL 9.2beta1.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1825">#1825</ulink>, fix prepared geometry cache lookup</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1829">#1829</ulink>, fix uninitialized read in GeoJSON parser</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1834">#1834</ulink>, revise postgis extension to only backup
user specified spatial_ref_sys</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1839">#1839</ulink>, handling of subdatasets in GeoTIFF in raster2pgsql.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1840">#1840</ulink>, fix logic of when to compute # of tiles in raster2pgsql.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1851">#1851</ulink>, fix spatial_ref_system parameters for EPSG:3844</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1857">#1857</ulink>, fix failure to detect endpoint mismatch in ST_AddEdge*Face*</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1865">#1865</ulink>, data loss in postgis_restore.pl when data rows have leading
dashes.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1867">#1867</ulink>, catch invalid topology name passed to topogeo_add*</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1872">#1872</ulink>, fix ST_ApproxSummarystats to prevent division by zero</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1873">#1873</ulink>, fix ptarray_locate_point to return interpolated Z/M values for
on-the-line case</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1875">#1875</ulink>, ST_SummaryStats returns NULL for all parameters except count
when count is zero </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1881">#1881</ulink>, shp2pgsql-gui -- editing a field sometimes triggers
removing row</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1883">#1883</ulink>, Geocoder install fails trying to run
create_census_base_tables() (Brian Panulla)</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para>More detailed exception message from topology editing functions.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1786">#1786</ulink>, improved build dependencies</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1806">#1806</ulink>, speedup of ST_BuildArea, ST_MakeValid and ST_GetFaceGeometry.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1812">#1812</ulink>, Add lwgeom_normalize in LIBLWGEOM for more stable testing.</para>
</simplesect>
</sect1>
<sect1>
<title>Release 2.0.0</title>
<para>Release date: 2012/04/03</para>
<para>This is a major release. A hard upgrade is required. Yes this means a full dump reload and some special preparations if you are using obsolete functions. Refer
to <xref linkend="hard_upgrade" /> for details on upgrading.
Refer to <xref linkend="NewFunctions_2_0" /> for more details and changed/new functions.</para>
<simplesect>
<title>Testers - Our unsung heroes</title>
<para>We are most indebted to the numerous members in the PostGIS community
who were brave enough to test out the new features in this release.
No major release can be successful without these folk.</para>
<para>Below are those who have been most valiant, provided very detailed
and thorough bug reports,
and detailed analysis.</para>
<simplelist>
<member>Andrea Peri - Lots of testing on topology, checking for correctness</member>
<member>Andreas Forø Tollefsen - raster testing</member>
<member>Chris English - topology stress testing loader functions</member>
<member>Salvatore Larosa - topology robustness testing</member>
<member>Brian Hamlin - Benchmarking
(also experimental experimental branches
before they are folded into core)
, general testing of various pieces
including Tiger and Topology. Testing on various server VMs</member>
<member>Mike Pease - Tiger geocoder testing - very detailed reports of issues</member>
<member>Tom van Tilburg - raster testing</member>
</simplelist>
</simplesect>
<simplesect>
<title>Important / Breaking Changes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/722">#722</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/302">#302</ulink>, Most deprecated functions removed (over 250 functions) (Regina Obe, Paul Ramsey)</para>
<para>Unknown SRID changed from -1 to 0. (Paul Ramsey)</para>
<para> -- (most deprecated in 1.2) removed non-ST variants buffer, length, intersects
(and internal functions renamed) etc. </para>
<para>-- If you have been using deprecated functions CHANGE your apps or suffer the consequences.
If you don't see a function documented -- it ain't supported or it is an internal function.
Some constraints in older tables were built with deprecated functions.
If you restore you may need to rebuild table constraints with populate_geometry_columns(). If you have applications or tools
that rely on deprecated functions, please refer to <xref linkend="legacy_faq" /> for more details.</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/944">#944</ulink> geometry_columns is now a view instead of a table
(Paul Ramsey, Regina Obe)
for tables created the old way reads (srid, type, dims) constraints
for geometry columns created with type modifiers
reads rom column definition</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1081">#1081</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/1082">#1082</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/1084">#1084</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/1088">#1088</ulink> - Mangement functions support typmod
geometry column creation functions now default to typmod creation
(Regina Obe)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1083">#1083</ulink> probe_geometry_columns(), rename_geometry_table_constraints(),
fix_geometry_columns(); removed
- now obsolete with geometry_column view
(Regina Obe)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/817">#817</ulink> Renaming old 3D functions to the convention ST_3D (Nicklas Avén)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/548">#548</ulink> (sorta), ST_NumGeometries,ST_GeometryN now returns 1 (or the geometry) instead of null
for single geometries (Sandro Santilli, Maxime van Noppen)</para>
</simplesect>
<simplesect>
<title>New Features</title>
<para><ulink url="http://blog.opengeo.org/2011/09/28/indexed-nearest-neighbour-search-in-postgis/">KNN Gist index based centroid (<->) and box (<#>) distance operators (Paul Ramsey / funded by Vizzuality)</ulink></para>
<para>Support for TIN and PolyHedralSurface and enhancement of many functions to support 3D (Olivier Courtin / Oslandia)</para>
<para><ulink url="http://trac.osgeo.org/postgis/wiki/WKTRaster/PlanningAndFunding">Raster support integrated and documented</ulink>
(Pierre Racine, Jorge Arévalo, Mateusz Loskot, Sandro Santilli, David Zwarg, Regina Obe, Bborie Park)
(Company developer and funding: University Laval, Deimos Space, CadCorp, Michigan Tech Research Institute, Azavea, Paragon Corporation, UC Davis Center for Vectorborne Diseases)</para>
<para>Making spatial indexes 3D aware - in progress (Paul Ramsey, Mark Cave-Ayland)</para>
<para>Topology support improved (more functions), documented, testing (Sandro Santilli / Faunalia for RT-SIGTA), Andrea Peri, Regina Obe, Jose Carlos Martinez Llari</para>
<para>3D relationship and measurement support functions (Nicklas Avén)</para>
<para> ST_3DDistance, ST_3DClosestPoint, ST_3DIntersects, ST_3DShortestLine and more...</para>
<para>N-Dimensional spatial indexes (Paul Ramsey / OpenGeo)</para>
<para>ST_Split (Sandro Santilli / Faunalia for RT-SIGTA)</para>
<para>ST_IsValidDetail (Sandro Santilli / Faunalia for RT-SIGTA)</para>
<para>ST_MakeValid (Sandro Santilli / Faunalia for RT-SIGTA)</para>
<para>ST_RemoveRepeatedPoints (Sandro Santilli / Faunalia for RT-SIGTA)</para>
<para>ST_GeometryN and ST_NumGeometries support for non-collections (Sandro Santilli)</para>
<para>ST_IsCollection (Sandro Santilli, Maxime van Noppen)</para>
<para>ST_SharedPaths (Sandro Santilli / Faunalia for RT-SIGTA)</para>
<para>ST_Snap (Sandro Santilli)</para>
<para>ST_RelateMatch (Sandro Santilli / Faunalia for RT-SIGTA)</para>
<para>ST_ConcaveHull (Regina Obe and Leo Hsu / Paragon Corporation)</para>
<para>ST_UnaryUnion (Sandro Santilli / Faunalia for RT-SIGTA)</para>
<para>ST_AsX3D (Regina Obe / Arrival 3D funding)</para>
<para>ST_OffsetCurve (Sandro Santilli, Rafal Magda)</para>
<para><ulink url="http://blog.opengeo.org/2011/11/21/st_geomfromgeojson/">ST_GeomFromGeoJSON (Kashif Rasul, Paul Ramsey / Vizzuality funding)</ulink></para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para>Made shape file loader tolerant of truncated multibyte values found in some free worldwide shapefiles (Sandro Santilli)</para>
<para>Lots of bug fixes and enhancements to shp2pgsql
Beefing up regression tests for loaders
Reproject support for both geometry and geography during import
(Jeff Adams / Azavea, Mark Cave-Ayland)</para>
<para>pgsql2shp conversion from predefined list
(Loic Dachary / Mark Cave-Ayland)</para>
<para>Shp-pgsql GUI loader - support loading multiple files at a time. (Mark Leslie)</para>
<para>Extras - upgraded tiger_geocoder from using old TIGER format to use new TIGER shp and file structure format (Stephen Frost)</para>
<para>Extras - revised tiger_geocoder to work with TIGER census 2010 data, addition of reverse geocoder function, various bug fixes, accuracy enhancements,
limit max result return, speed improvements, loading routines.
(Regina Obe, Leo Hsu / Paragon Corporation / funding provided by Hunter Systems Group)</para>
<para>Overall Documentation proofreading and corrections. (Kasif Rasul)</para>
<para>Cleanup PostGIS JDBC classes, revise to use Maven build. (Maria Arias de Reyna, Sandro Santilli)</para>
</simplesect>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1335">#1335</ulink> ST_AddPoint returns incorrect result on Linux (Even Rouault)</para>
</simplesect>
<simplesect>
<title>Release specific credits</title>
<para>We thank <ulink url="http://blog.opengeo.org/2012/02/01/it-goes-up-to-2-0/">U.S Department of State Human Information Unit (HIU)</ulink> and <ulink url="http://blog.cartodb.com/post/17318840209/postgis-core-committer-sandro-santilli-joins-cartodb">Vizzuality</ulink> for general monetary support to get PostGIS 2.0 out the door.</para>
<!-- TODO: expand this list -->
</simplesect>
</sect1>
<sect1>
<title>Release 1.5.4</title>
<para>Release date: 2012/05/07</para>
<para>This is a bug fix release, addressing issues that have been filed since the 1.5.3 release.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/547">#547</ulink>, ST_Contains memory problems (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/621">#621</ulink>, Problem finding intersections with geography (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/627">#627</ulink>, PostGIS/PostgreSQL process die on invalid geometry (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/810">#810</ulink>, Increase accuracy of area calculation (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/852">#852</ulink>, improve spatial predicates robustness (Sandro Santilli, Nicklas Avén)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/877">#877</ulink>, ST_Estimated_Extent returns NULL on empty tables (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1028">#1028</ulink>, ST_AsSVG kills whole postgres server when fails (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1056">#1056</ulink>, Fix boxes of arcs and circle stroking code (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1121">#1121</ulink>, populate_geometry_columns using deprecated functions (Regin Obe, Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1135">#1135</ulink>, improve testsuite predictability (Andreas 'ads' Scherbaum)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1146">#1146</ulink>, images generator crashes (bronaugh)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1170">#1170</ulink>, North Pole intersection fails (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1179">#1179</ulink>, ST_AsText crash with bad value (kjurka)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1184">#1184</ulink>, honour DESTDIR in documentation Makefile (Bryce L Nordgren)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1227">#1227</ulink>, server crash on invalid GML </para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1252">#1252</ulink>, SRID appearing in WKT (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1264">#1264</ulink>, st_dwithin(g, g, 0) doesn't work (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1344">#1344</ulink>, allow exporting tables with invalid geometries (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1389">#1389</ulink>, wrong proj4text for SRID 31300 and 31370 (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1406">#1406</ulink>, shp2pgsql crashes when loading into geography (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1595">#1595</ulink>, fixed SRID redundancy in ST_Line_SubString (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1596">#1596</ulink>, check SRID in UpdateGeometrySRID (Mike Toews, Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1602">#1602</ulink>, fix ST_Polygonize to retain Z (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1697">#1697</ulink>, fix crash with EMPTY entries in GiST index (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1772">#1772</ulink>, fix ST_Line_Locate_Point with collapsed input (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1799">#1799</ulink>, Protect ST_Segmentize from max_length=0 (Sandro Santilli)</para>
<para>Alter parameter order in 900913 (Paul Ramsey)</para>
<para>Support builds with "gmake" (Greg Troxel)</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.5.3</title>
<para>Release date: 2011/06/25</para>
<para>This is a bug fix release, addressing issues that have been filed since the 1.5.2 release. If you are running PostGIS 1.3+, a soft upgrade is sufficient
otherwise a hard upgrade is recommended.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1056">#1056</ulink>, produce correct bboxes for arc geometries, fixes index errors
(Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/1007">#1007</ulink>, ST_IsValid crash fix requires GEOS 3.3.0+ or 3.2.3+
(Sandro Santilli, reported by Birgit Laggner)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/940">#940</ulink>, support for PostgreSQL 9.1 beta 1
(Regina Obe, Paul Ramsey, patch submitted by stl)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/845">#845</ulink>, ST_Intersects precision error (Sandro Santilli, Nicklas Avén)
Reported by cdestigter</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/884">#884</ulink>, Unstable results with ST_Within, ST_Intersects (Chris Hodgson)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/779">#779</ulink>, shp2pgsql -S option seems to fail on points (Jeff Adams)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/666">#666</ulink>, ST_DumpPoints is not null safe (Regina Obe)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/631">#631</ulink>, Update NZ projections for grid transformation support (jpalmer)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/630">#630</ulink>, Peculiar Null treatment in arrays in ST_Collect (Chris Hodgson)
Reported by David Bitner</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/624">#624</ulink>, Memory leak in ST_GeogFromText (ryang, Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/609">#609</ulink>, Bad source code in manual section 5.2 Java Clients (simoc, Regina Obe)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/604">#604</ulink>, shp2pgsql usage touchups (Mike Toews, Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/573">#573</ulink> ST_Union fails on a group of linestrings
Not a PostGIS bug, fixed in GEOS 3.3.0</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/457">#457</ulink> ST_CollectionExtract returns non-requested type
(Nicklas Avén, Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/441">#441</ulink> ST_AsGeoJson Bbox on GeometryCollection error (Olivier Courtin)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/411">#411</ulink> Ability to backup invalid geometries (Sando Santilli)
Reported by Regione Toscana</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/409">#409</ulink> ST_AsSVG - degraded (Olivier Courtin)
Reported by Sdikiy</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/373">#373</ulink> Documentation syntax error in hard upgrade (Paul Ramsey)
Reported by psvensso</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.5.2</title>
<para>Release date: 2010/09/27</para>
<para>This is a bug fix release, addressing issues that have been filed since the 1.5.1 release. If you are running PostGIS 1.3+, a soft upgrade is sufficient
otherwise a hard upgrade is recommended.</para>
<simplesect>
<title>Bug Fixes</title>
<para>Loader: fix handling of empty (0-verticed) geometries in shapefiles. (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/536">#536</ulink>, Geography ST_Intersects, ST_Covers, ST_CoveredBy and Geometry ST_Equals not using spatial index (Regina Obe, Nicklas Aven)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/573">#573</ulink>, Improvement to ST_Contains geography (Paul Ramsey)</para>
<para>Loader: Add support for command-q shutdown in Mac GTK build (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/393">#393</ulink>, Loader: Add temporary patch for large DBF files (Maxime Guillaud, Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/507">#507</ulink>, Fix wrong OGC URN in GeoJSON and GML output (Olivier Courtin)</para>
<para>spatial_ref_sys.sql Add datum conversion for projection SRID 3021 (Paul Ramsey)</para>
<para>Geography - remove crash for case when all geographies are out of the estimate (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/469">#469</ulink>, Fix for array_aggregation error (Greg Stark, Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/532">#532</ulink>, Temporary geography tables showing up in other user sessions (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/562">#562</ulink>, ST_Dwithin errors for large geographies (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/513">#513</ulink>, shape loading GUI tries to make spatial index when loading DBF only mode (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/527">#527</ulink>, shape loading GUI should always append log messages (Mark Cave-Ayland)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/504">#504</ulink>, shp2pgsql should rename xmin/xmax fields (Sandro Santilli)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/458">#458</ulink>, postgis_comments being installed in contrib instead of version folder (Mark Cave-Ayland)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/474">#474</ulink>, Analyzing a table with geography column crashes server (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/581">#581</ulink>, LWGEOM-expand produces inconsistent results (Mark Cave-Ayland)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/513">#513</ulink>, Add dbf filter to shp2pgsql-gui and allow uploading dbf only (Paul Ramsey)</para>
<para>Fix further build issues against PostgreSQL 9.0 (Mark Cave-Ayland)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/572">#572</ulink>, Password whitespace for Shape File (Mark Cave-Ayland)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/603">#603</ulink>, shp2pgsql: "-w" produces invalid WKT for MULTI* objects. (Mark Cave-Ayland)</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.5.1</title>
<para>Release date: 2010/03/11</para>
<para>This is a bug fix release, addressing issues that have been filed since the 1.4.1 release. If you are running PostGIS 1.3+, a soft upgrade is sufficient
otherwise a hard upgrade is recommended.</para>
<simplesect>
<title>Bug Fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/410">#410</ulink>, update embedded bbox when applying ST_SetPoint, ST_AddPoint ST_RemovePoint to a linestring (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/411">#411</ulink>, allow dumping tables with invalid geometries (Sandro Santilli, for Regione Toscana-SIGTA)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/414">#414</ulink>, include geography_columns view when running upgrade scripts (Paul Ramsey)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/419">#419</ulink>, allow support for multilinestring in ST_Line_Substring (Paul Ramsey, for Lidwala Consulting Engineers)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/421">#421</ulink>, fix computed string length in ST_AsGML() (Olivier Courtin)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/441">#441</ulink>, fix GML generation with heterogeneous collections (Olivier Courtin)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/443">#443</ulink>, incorrect coordinate reversal in GML 3 generation (Olivier Courtin)</para>
<para><ulink url="http://trac.osgeo.org/postgis/ticket/450">#450</ulink>, <ulink url="http://trac.osgeo.org/postgis/ticket/451">#451</ulink>, wrong area calculation for geography features that cross the date line (Paul Ramsey)</para>
<para>Ensure support for upcoming 9.0 PgSQL release (Paul Ramsey)</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.5.0</title>
<para>Release date: 2010/02/04</para>
<para>This release provides support for geographic coordinates (lat/lon) via a new GEOGRAPHY type. Also performance enhancements, new input format support (GML,KML) and general upkeep.</para>
<simplesect>
<title>API Stability</title>
<para>The public API of PostGIS will not change during minor (0.0.X) releases.</para>
<para>The definition of the =~ operator has changed from an exact geometric equality check to a bounding box equality check.</para>
</simplesect>
<simplesect>
<title>Compatibility</title>
<para>GEOS, Proj4, and LibXML2 are now mandatory dependencies</para>
<para>The library versions below are the minimum requirements for PostGIS 1.5</para>
<para>PostgreSQL 8.3 and higher on all platforms</para>
<para>GEOS 3.1 and higher only (GEOS 3.2+ to take advantage of all features)</para>
<para>LibXML2 2.5+ related to new ST_GeomFromGML/KML functionality</para>
<para>Proj4 4.5 and higher only</para>
</simplesect>
<simplesect>
<title>New Features</title>
<para><xref linkend="NewFunctions_1_5"/></para>
<para>Added Hausdorff distance calculations (<ulink url="http://trac.osgeo.org/postgis/ticket/209">#209</ulink>) (Vincent Picavet)</para>
<para>Added parameters argument to ST_Buffer operation to support one-sided buffering and other buffering styles (Sandro Santilli)</para>
<para>Addition of other Distance related visualization and analysis functions (Nicklas Aven)</para>
<itemizedlist>
<listitem><para>ST_ClosestPoint</para></listitem>
<listitem><para>ST_DFullyWithin</para></listitem>
<listitem><para>ST_LongestLine</para></listitem>
<listitem><para>ST_MaxDistance</para></listitem>
<listitem><para>ST_ShortestLine</para></listitem>
</itemizedlist>
<para>ST_DumpPoints (Maxime van Noppen)</para>
<para>KML, GML input via ST_GeomFromGML and ST_GeomFromKML (Olivier Courtin)</para>
<para>Extract homogeneous collection with ST_CollectionExtract (Paul Ramsey)</para>
<para>Add measure values to an existing linestring with ST_AddMeasure (Paul Ramsey)</para>
<para>History table implementation in utils (George Silva)</para>
<para>Geography type and supporting functions</para>
<itemizedlist>
<listitem><para>Spherical algorithms (Dave Skea)</para></listitem>
<listitem><para>Object/index implementation (Paul Ramsey)</para></listitem>
<listitem><para>Selectivity implementation (Mark Cave-Ayland)</para></listitem>
<listitem><para>Serializations to KML, GML and JSON (Olivier Courtin)</para></listitem>
<listitem><para>ST_Area, ST_Distance, ST_DWithin, ST_GeogFromText, ST_GeogFromWKB, ST_Intersects, ST_Covers, ST_Buffer (Paul Ramsey)</para></listitem>
</itemizedlist>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para>Performance improvements to ST_Distance (Nicklas Aven)</para>
<para>Documentation updates and improvements (Regina Obe, Kevin Neufeld)</para>
<para>Testing and quality control (Regina Obe)</para>
<para>PostGIS 1.5 support PostgreSQL 8.5 trunk (Guillaume Lelarge)</para>
<para>Win32 support and improvement of core shp2pgsql-gui (Mark Cave-Ayland)</para>
<para>In place 'make check' support (Paul Ramsey)</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/query?status=closed&milestone=PostGIS+1.5.0&order=priority">http://trac.osgeo.org/postgis/query?status=closed&milestone=PostGIS+1.5.0&order=priority</ulink></para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.4.0</title>
<para>Release date: 2009/07/24</para>
<para>This release provides performance enhancements, improved internal structures and testing, new features, and upgraded documentation.
If you are running PostGIS 1.1+, a soft upgrade is sufficient
otherwise a hard upgrade is recommended.</para>
<simplesect>
<title>API Stability</title>
<para>As of the 1.4 release series, the public API of PostGIS will not change during minor releases.</para>
</simplesect>
<simplesect>
<title>Compatibility</title>
<para>The versions below are the *minimum* requirements for PostGIS 1.4</para>
<para>PostgreSQL 8.2 and higher on all platforms</para>
<para>GEOS 3.0 and higher only</para>
<para>PROJ4 4.5 and higher only</para>
</simplesect>
<simplesect>
<title>New Features</title>
<para>ST_Union() uses high-speed cascaded union when compiled against
GEOS 3.1+ (Paul Ramsey)</para>
<para>ST_ContainsProperly() requires GEOS 3.1+</para>
<para>ST_Intersects(), ST_Contains(), ST_Within() use high-speed cached prepared geometry against GEOS 3.1+ (Paul Ramsey / funded by Zonar Systems)</para>
<para>Vastly improved documentation and reference manual (Regina Obe & Kevin Neufeld)</para>
<para>Figures and diagram examples in the reference manual (Kevin Neufeld)</para>
<para>ST_IsValidReason() returns readable explanations for validity failures (Paul Ramsey)</para>
<para>ST_GeoHash() returns a geohash.org signature for geometries (Paul Ramsey)</para>
<para>GTK+ multi-platform GUI for shape file loading (Paul Ramsey)</para>
<para>ST_LineCrossingDirection() returns crossing directions (Paul Ramsey)</para>
<para>ST_LocateBetweenElevations() returns sub-string based on Z-ordinate. (Paul Ramsey)</para>
<para>Geometry parser returns explicit error message about location of syntax errors (Mark Cave-Ayland)</para>
<para>ST_AsGeoJSON() return JSON formatted geometry (Olivier Courtin)</para>
<para>Populate_Geometry_Columns() -- automatically add records to geometry_columns for TABLES and VIEWS (Kevin Neufeld)</para>
<para>ST_MinimumBoundingCircle() -- returns the smallest circle polygon that can encompass a geometry (Bruce Rindahl)</para>
</simplesect>
<simplesect>
<title>Enhancements</title>
<para>Core geometry system moved into independent library, liblwgeom. (Mark Cave-Ayland)</para>
<para>New build system uses PostgreSQL "pgxs" build bootstrapper. (Mark Cave-Ayland)</para>
<para>Debugging framework formalized and simplified. (Mark Cave-Ayland)</para>
<para>All build-time #defines generated at configure time and placed in headers for easier cross-platform support (Mark Cave-Ayland)</para>
<para>Logging framework formalized and simplified (Mark Cave-Ayland)</para>
<para>Expanded and more stable support for CIRCULARSTRING, COMPOUNDCURVE and CURVEPOLYGON, better parsing, wider support in functions (Mark Leslie & Mark Cave-Ayland)</para>
<para>Improved support for OpenSolaris builds (Paul Ramsey)</para>
<para>Improved support for MSVC builds (Mateusz Loskot)</para>
<para>Updated KML support (Olivier Courtin)</para>
<para>Unit testing framework for liblwgeom (Paul Ramsey)</para>
<para>New testing framework to comprehensively exercise every PostGIS function (Regine Obe)</para>
<para>Performance improvements to all geometry aggregate functions (Paul Ramsey)</para>
<para>Support for the upcoming PostgreSQL 8.4 (Mark Cave-Ayland, Talha Bin Rizwan)</para>
<para>Shp2pgsql and pgsql2shp re-worked to depend on the common parsing/unparsing code in liblwgeom (Mark Cave-Ayland)</para>
<para>Use of PDF DbLatex to build PDF docs and preliminary instructions for build (Jean David Techer)</para>
<para>Automated User documentation build (PDF and HTML) and Developer Doxygen Documentation (Kevin Neufeld)</para>
<para>Automated build of document images using ImageMagick from WKT geometry text files (Kevin Neufeld)</para>
<para>More attractive CSS for HTML documentation (Dane Springmeyer)</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para><ulink url="http://trac.osgeo.org/postgis/query?status=closed&milestone=PostGIS+1.4.0&order=priority">http://trac.osgeo.org/postgis/query?status=closed&milestone=PostGIS+1.4.0&order=priority</ulink></para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.3.6</title>
<para>Release date: 2009/05/04</para>
<para>If you are running PostGIS 1.1+, a soft upgrade is sufficient
otherwise a hard upgrade is recommended. This release adds support for PostgreSQL 8.4, exporting
prj files from the database with shape data, some crash fixes for shp2pgsql, and several small
bug fixes in the handling of "curve" types, logical error importing dbf only files, improved error handling of AddGeometryColumns.</para>
</sect1>
<sect1>
<title>Release 1.3.5</title>
<para>Release date: 2008/12/15</para>
<para>If you are running PostGIS 1.1+, a soft upgrade is sufficient
otherwise a hard upgrade is recommended. This release is a bug fix release to address a failure
in ST_Force_Collection and related functions that critically
affects using MapServer with LINE layers.</para>
</sect1>
<sect1>
<title>Release 1.3.4</title>
<para>Release date: 2008/11/24</para>
<para>This release adds support for GeoJSON output, building
with PostgreSQL 8.4, improves documentation quality and
output aesthetics, adds function-level SQL documentation,
and improves performance for some spatial predicates
(point-in-polygon tests).</para>
<para>Bug fixes include removal of crashers in handling
circular strings for many functions, some memory leaks
removed, a linear referencing failure for measures on vertices,
and more. See the NEWS file for details.</para>
</sect1>
<sect1>
<title>Release 1.3.3</title>
<para>Release date: 2008/04/12</para>
<para>This release fixes bugs shp2pgsql, adds enhancements to SVG and
KML support, adds a ST_SimplifyPreserveTopology function, makes the
build more sensitive to GEOS versions, and fixes a handful of severe but
rare failure cases.</para>
</sect1>
<sect1>
<title>Release 1.3.2</title>
<para>Release date: 2007/12/01</para>
<para>This release fixes bugs in ST_EndPoint() and ST_Envelope, improves
support for JDBC building and OS/X, and adds better support for GML
output with ST_AsGML(), including GML3 output.</para>
</sect1>
<sect1>
<title>Release 1.3.1</title>
<para>Release date: 2007/08/13</para>
<para>This release fixes some oversights in the previous release around
version numbering, documentation, and tagging.</para>
</sect1>
<sect1>
<title>Release 1.3.0</title>
<para>Release date: 2007/08/09</para>
<para>This release provides performance enhancements to the relational
functions, adds new relational functions and begins the migration of our
function names to the SQL-MM convention, using the spatial type (SP)
prefix.</para>
<simplesect>
<title>Added Functionality</title>
<para>JDBC: Added Hibernate Dialect (thanks to Norman Barker)</para>
<para>Added ST_Covers and ST_CoveredBy relational functions.
Description and justification of these functions can be found at
<ulink url="http://lin-ear-th-inking.blogspot.com/2007/06/subtleties-of-ogc-covers-spatial.html">http://lin-ear-th-inking.blogspot.com/2007/06/subtleties-of-ogc-covers-spatial.html</ulink></para>
<para>Added ST_DWithin relational function.</para>
</simplesect>
<simplesect>
<title>Performance Enhancements</title>
<para>Added cached and indexed point-in-polygon short-circuits for the
functions ST_Contains, ST_Intersects, ST_Within and ST_Disjoint</para>
<para>Added inline index support for relational functions (except
ST_Disjoint)</para>
</simplesect>
<simplesect>
<title>Other Changes</title>
<para>Extended curved geometry support into the geometry accessor and
some processing functions</para>
<para>Began migration of functions to the SQL-MM naming convention;
using a spatial type (ST) prefix.</para>
<para>Added initial support for PostgreSQL 8.3</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.2.1</title>
<para>Release date: 2007/01/11</para>
<para>This release provides bug fixes in PostgreSQL 8.2 support and some
small performance enhancements.</para>
<simplesect>
<title>Changes</title>
<para>Fixed point-in-polygon shortcut bug in Within().</para>
<para>Fixed PostgreSQL 8.2 NULL handling for indexes.</para>
<para>Updated RPM spec files.</para>
<para>Added short-circuit for Transform() in no-op case.</para>
<para>JDBC: Fixed JTS handling for multi-dimensional geometries
(thanks to Thomas Marti for hint and partial patch). Additionally, now
JavaDoc is compiled and packaged. Fixed classpath problems with GCJ.
Fixed pgjdbc 8.2 compatibility, losing support for jdk 1.3 and
older.</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.2.0</title>
<para>Release date: 2006/12/08</para>
<para>This release provides type definitions along with
serialization/deserialization capabilities for SQL-MM defined curved
geometries, as well as performance enhancements.</para>
<simplesect>
<title>Changes</title>
<para>Added curved geometry type support for
serialization/deserialization</para>
<para>Added point-in-polygon shortcircuit to the Contains and Within
functions to improve performance for these cases.</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.1.6</title>
<para>Release date: 2006/11/02</para>
<para>This is a bugfix release, in particular fixing a critical error
with GEOS interface in 64bit systems. Includes an updated of the SRS
parameters and an improvement in reprojections (take Z in
consideration). Upgrade is <emphasis>encouraged</emphasis>.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later follow the
<link linkend="soft_upgrade">soft upgrade</link> procedure.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>fixed CAPI change that broke 64-bit platforms</para>
<para>loader/dumper: fixed regression tests and usage output</para>
<para>Fixed setSRID() bug in JDBC, thanks to Thomas Marti</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>use Z ordinate in reprojections</para>
<para>spatial_ref_sys.sql updated to EPSG 6.11.1</para>
<para>Simplified Version.config infrastructure to use a single pack of
version variables for everything.</para>
<para>Include the Version.config in loader/dumper USAGE
messages</para>
<para>Replace hand-made, fragile JDBC version parser with
Properties</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.1.5</title>
<para>Release date: 2006/10/13</para>
<para>This is an bugfix release, including a critical segfault on win32.
Upgrade is <emphasis>encouraged</emphasis>.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later follow the
<link linkend="soft_upgrade">soft upgrade</link> procedure.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>Fixed MingW link error that was causing pgsql2shp to segfault on
Win32 when compiled for PostgreSQL 8.2</para>
<para>fixed nullpointer Exception in Geometry.equals() method in
Java</para>
<para>Added EJB3Spatial.odt to fulfill the GPL requirement of
distributing the "preferred form of modification"</para>
<para>Removed obsolete synchronization from JDBC Jts code.</para>
<para>Updated heavily outdated README files for shp2pgsql/pgsql2shp by
merging them with the manpages.</para>
<para>Fixed version tag in jdbc code that still said "1.1.3" in the
"1.1.4" release.</para>
</simplesect>
<simplesect>
<title>New Features</title>
<para>Added -S option for non-multi geometries to shp2pgsql</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.1.4</title>
<para>Release date: 2006/09/27</para>
<para>This is an bugfix release including some improvements in the Java
interface. Upgrade is <emphasis>encouraged</emphasis>.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later follow the
<link linkend="soft_upgrade">soft upgrade</link> procedure.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>Fixed support for PostgreSQL 8.2</para>
<para>Fixed bug in collect() function discarding SRID of input</para>
<para>Added SRID match check in MakeBox2d and MakeBox3d</para>
<para>Fixed regress tests to pass with GEOS-3.0.0</para>
<para>Improved pgsql2shp run concurrency.</para>
</simplesect>
<simplesect>
<title>Java changes</title>
<para>reworked JTS support to reflect new upstream JTS developers'
attitude to SRID handling. Simplifies code and drops build depend on
GNU trove.</para>
<para>Added EJB2 support generously donated by the "Geodetix s.r.l. Company" </para>
<para>Added EJB3 tutorial / examples donated by Norman Barker
<nbarker@ittvis.com></para>
<para>Reorganized java directory layout a little.</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.1.3</title>
<para>Release date: 2006/06/30</para>
<para>This is an bugfix release including also some new functionalities
(most notably long transaction support) and portability enhancements.
Upgrade is <emphasis>encouraged</emphasis>.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later follow the
<link linkend="soft_upgrade">soft upgrade</link> procedure.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Bug fixes / correctness</title>
<para>BUGFIX in distance(poly,poly) giving wrong results.</para>
<para>BUGFIX in pgsql2shp successful return code.</para>
<para>BUGFIX in shp2pgsql handling of MultiLine WKT.</para>
<para>BUGFIX in affine() failing to update bounding box.</para>
<para>WKT parser: forbidden construction of multigeometries with EMPTY
elements (still supported for GEOMETRYCOLLECTION).</para>
</simplesect>
<simplesect>
<title>New functionalities</title>
<para>NEW Long Transactions support.</para>
<para>NEW DumpRings() function.</para>
<para>NEW AsHEXEWKB(geom, XDR|NDR) function.</para>
</simplesect>
<simplesect>
<title>JDBC changes</title>
<para>Improved regression tests: MultiPoint and scientific
ordinates</para>
<para>Fixed some minor bugs in jdbc code</para>
<para>Added proper accessor functions for all fields in preparation of
making those fields private later</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>NEW regress test support for loader/dumper.</para>
<para>Added --with-proj-libdir and --with-geos-libdir configure
switches.</para>
<para>Support for build Tru64 build.</para>
<para>Use Jade for generating documentation.</para>
<para>Don't link pgsql2shp to more libs then required.</para>
<para>Initial support for PostgreSQL 8.2.</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.1.2</title>
<para>Release date: 2006/03/30</para>
<para>This is an bugfix release including some new functions and
portability enhancements. Upgrade is
<emphasis>encouraged</emphasis>.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later follow the
<link linkend="soft_upgrade">soft upgrade</link> procedure.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>BUGFIX in SnapToGrid() computation of output bounding box</para>
<para>BUGFIX in EnforceRHR()</para>
<para>jdbc2 SRID handling fixes in JTS code</para>
<para>Fixed support for 64bit archs</para>
</simplesect>
<simplesect>
<title>New functionalities</title>
<para>Regress tests can now be run *before* postgis
installation</para>
<para>New affine() matrix transformation functions</para>
<para>New rotate{,X,Y,Z}() function</para>
<para>Old translating and scaling functions now use affine()
internally</para>
<para>Embedded access control in estimated_extent() for builds against
pgsql >= 8.0.0</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>More portable ./configure script</para>
<para>Changed ./run_test script to have more sane default
behaviour</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.1.1</title>
<para>Release date: 2006/01/23</para>
<para>This is an important Bugfix release, upgrade is <emphasis>highly
recommended</emphasis>. Previous version contained a bug in
postgis_restore.pl preventing <link linkend="hard_upgrade">hard
upgrade</link> procedure to complete and a bug in GEOS-2.2+ connector
preventing GeometryCollection objects to be used in topological
operations.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later follow the
<link linkend="soft_upgrade">soft upgrade</link> procedure.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>Fixed a premature exit in postgis_restore.pl</para>
<para>BUGFIX in geometrycollection handling of GEOS-CAPI
connector</para>
<para>Solaris 2.7 and MingW support improvements</para>
<para>BUGFIX in line_locate_point()</para>
<para>Fixed handling of postgresql paths</para>
<para>BUGFIX in line_substring()</para>
<para>Added support for localized cluster in regress tester</para>
</simplesect>
<simplesect>
<title>New functionalities</title>
<para>New Z and M interpolation in line_substring()</para>
<para>New Z and M interpolation in line_interpolate_point()</para>
<para>added NumInteriorRing() alias due to OpenGIS ambiguity</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.1.0</title>
<para>Release date: 2005/12/21</para>
<para>This is a Minor release, containing many improvements and new
things. Most notably: build procedure greatly simplified; transform()
performance drastically improved; more stable GEOS connectivity (CAPI
support); lots of new functions; draft topology support.</para>
<para>It is <emphasis>highly recommended</emphasis> that you upgrade to
GEOS-2.2.x before installing PostGIS, this will ensure future GEOS
upgrades won't require a rebuild of the PostGIS library.</para>
<simplesect>
<title>Credits</title>
<para>This release includes code from Mark Cave Ayland for caching of
proj4 objects. Markus Schaber added many improvements in his JDBC2
code. Alex Bodnaru helped with PostgreSQL source dependency relief and
provided Debian specfiles. Michael Fuhr tested new things on Solaris
arch. David Techer and Gerald Fenoy helped testing GEOS C-API
connector. Hartmut Tschauner provided code for the azimuth() function.
Devrim GUNDUZ provided RPM specfiles. Carl Anderson helped with the
new area building functions. See the <link
linkend="credits_other_contributors">credits</link> section for more names.</para>
</simplesect>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later you
<emphasis>DO NOT</emphasis> need a dump/reload. Simply sourcing the
new lwpostgis_upgrade.sql script in all your existing databases will
work. See the <link linkend="soft_upgrade">soft upgrade</link> chapter
for more information.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>New functions</title>
<para>scale() and transscale() companion methods to translate()</para>
<para>line_substring()</para>
<para>line_locate_point()</para>
<para>M(point)</para>
<para>LineMerge(geometry)</para>
<para>shift_longitude(geometry)</para>
<para>azimuth(geometry)</para>
<para>locate_along_measure(geometry, float8)</para>
<para>locate_between_measures(geometry, float8, float8)</para>
<para>SnapToGrid by point offset (up to 4d support)</para>
<para>BuildArea(any_geometry)</para>
<para>OGC BdPolyFromText(linestring_wkt, srid)</para>
<para>OGC BdMPolyFromText(linestring_wkt, srid)</para>
<para>RemovePoint(linestring, offset)</para>
<para>ReplacePoint(linestring, offset, point)</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>Fixed memory leak in polygonize()</para>
<para>Fixed bug in lwgeom_as_anytype cast functions</para>
<para>Fixed USE_GEOS, USE_PROJ and USE_STATS elements of
postgis_version() output to always reflect library state.</para>
</simplesect>
<simplesect>
<title>Function semantic changes</title>
<para>SnapToGrid doesn't discard higher dimensions</para>
<para>Changed Z() function to return NULL if requested dimension is
not available</para>
</simplesect>
<simplesect>
<title>Performance improvements</title>
<para>Much faster transform() function, caching proj4 objects</para>
<para>Removed automatic call to fix_geometry_columns() in
AddGeometryColumns() and update_geometry_stats()</para>
</simplesect>
<simplesect>
<title>JDBC2 works</title>
<para>Makefile improvements</para>
<para>JTS support improvements</para>
<para>Improved regression test system</para>
<para>Basic consistency check method for geometry collections</para>
<para>Support for (Hex)(E)wkb</para>
<para>Autoprobing DriverWrapper for HexWKB / EWKT switching</para>
<para>fix compile problems in ValueSetter for ancient jdk
releases.</para>
<para>fix EWKT constructors to accept SRID=4711; representation</para>
<para>added preliminary read-only support for java2d geometries</para>
</simplesect>
<simplesect>
<title>Other new things</title>
<para>Full autoconf-based configuration, with PostgreSQL source
dependency relief</para>
<para>GEOS C-API support (2.2.0 and higher)</para>
<para>Initial support for topology modelling</para>
<para>Debian and RPM specfiles</para>
<para>New lwpostgis_upgrade.sql script</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>JTS support improvements</para>
<para>Stricter mapping between DBF and SQL integer and string
attributes</para>
<para>Wider and cleaner regression test suite</para>
<para>old jdbc code removed from release</para>
<para>obsoleted direct use of postgis_proc_upgrade.pl</para>
<para>scripts version unified with release version</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.6</title>
<para>Release date: 2005/12/06</para>
<para>Contains a few bug fixes and improvements.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later you
<emphasis>DO NOT</emphasis> need a dump/reload.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>Fixed palloc(0) call in collection deserializer (only gives
problem with --enable-cassert)</para>
<para>Fixed bbox cache handling bugs</para>
<para>Fixed geom_accum(NULL, NULL) segfault</para>
<para>Fixed segfault in addPoint()</para>
<para>Fixed short-allocation in lwcollection_clone()</para>
<para>Fixed bug in segmentize()</para>
<para>Fixed bbox computation of SnapToGrid output</para>
</simplesect>
<simplesect>
<title>Improvements</title>
<para>Initial support for postgresql 8.2</para>
<para>Added missing SRID mismatch checks in GEOS ops</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.5</title>
<para>Release date: 2005/11/25</para>
<para>Contains memory-alignment fixes in the library, a segfault fix in
loader's handling of UTF8 attributes and a few improvements and
cleanups.</para>
<note>
<para>Return code of shp2pgsql changed from previous releases to
conform to unix standards (return 0 on success).</para>
</note>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 or later you
<emphasis>DO NOT</emphasis> need a dump/reload.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Library changes</title>
<para>Fixed memory alignment problems</para>
<para>Fixed computation of null values fraction in analyzer</para>
<para>Fixed a small bug in the getPoint4d_p() low-level
function</para>
<para>Speedup of serializer functions</para>
<para>Fixed a bug in force_3dm(), force_3dz() and force_4d()</para>
</simplesect>
<simplesect>
<title>Loader changes</title>
<para>Fixed return code of shp2pgsql</para>
<para>Fixed back-compatibility issue in loader (load of null
shapefiles)</para>
<para>Fixed handling of trailing dots in dbf numerical
attributes</para>
<para>Segfault fix in shp2pgsql (utf8 encoding)</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>Schema aware postgis_proc_upgrade.pl, support for pgsql
7.2+</para>
<para>New "Reporting Bugs" chapter in manual</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.4</title>
<para>Release date: 2005/09/09</para>
<para>Contains important bug fixes and a few improvements. In
particular, it fixes a memory leak preventing successful build of GiST
indexes for large spatial tables.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.3 you <emphasis>DO
NOT</emphasis> need a dump/reload.</para>
<para>If you are upgrading from a release <emphasis>between 1.0.0RC6
and 1.0.2</emphasis> (inclusive) and really want a live upgrade read
the <link linkend="rel_1.0.3_upgrading">upgrade section</link> of the
1.0.3 release notes chapter.</para>
<para>Upgrade from any release prior to 1.0.0RC6 requires an <link
linkend="hard_upgrade">hard upgrade</link>.</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>Memory leak plugged in GiST indexing</para>
<para>Segfault fix in transform() handling of proj4 errors</para>
<para>Fixed some proj4 texts in spatial_ref_sys (missing +proj)</para>
<para>Loader: fixed string functions usage, reworked NULL objects
check, fixed segfault on MULTILINESTRING input.</para>
<para>Fixed bug in MakeLine dimension handling</para>
<para>Fixed bug in translate() corrupting output bounding box</para>
</simplesect>
<simplesect>
<title>Improvements</title>
<para>Documentation improvements</para>
<para>More robust selectivity estimator</para>
<para>Minor speedup in distance()</para>
<para>Minor cleanups</para>
<para>GiST indexing cleanup</para>
<para>Looser syntax acceptance in box3d parser</para>
</simplesect>
</sect1>
<sect1 id="rel_1.0.3_upgrading">
<title>Release 1.0.3</title>
<para>Release date: 2005/08/08</para>
<para>Contains some bug fixes - <emphasis>including a severe one
affecting correctness of stored geometries</emphasis> - and a few
improvements.</para>
<simplesect>
<title>Upgrading</title>
<para>Due to a bug in a bounding box computation routine, the upgrade
procedure requires special attention, as bounding boxes cached in the
database could be incorrect.</para>
<para>An <link linkend="hard_upgrade">hard upgrade</link> procedure
(dump/reload) will force recomputation of all bounding boxes (not
included in dumps). This is <emphasis>required</emphasis> if upgrading
from releases prior to 1.0.0RC6.</para>
<para>If you are upgrading from versions 1.0.0RC6 or up, this release
includes a perl script (utils/rebuild_bbox_caches.pl) to force
recomputation of geometries' bounding boxes and invoke all operations
required to propagate eventual changes in them (geometry statistics
update, reindexing). Invoke the script after a make install (run with
no args for syntax help). Optionally run utils/postgis_proc_upgrade.pl
to refresh postgis procedures and functions signatures (see <link
linkend="soft_upgrade">Soft upgrade</link>).</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>Severe bugfix in lwgeom's 2d bounding box computation</para>
<para>Bugfix in WKT (-w) POINT handling in loader</para>
<para>Bugfix in dumper on 64bit machines</para>
<para>Bugfix in dumper handling of user-defined queries</para>
<para>Bugfix in create_undef.pl script</para>
</simplesect>
<simplesect>
<title>Improvements</title>
<para>Small performance improvement in canonical input function</para>
<para>Minor cleanups in loader</para>
<para>Support for multibyte field names in loader</para>
<para>Improvement in the postgis_restore.pl script</para>
<para>New rebuild_bbox_caches.pl util script</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.2</title>
<para>Release date: 2005/07/04</para>
<para>Contains a few bug fixes and improvements.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.0RC6 or up you
<emphasis>DO NOT</emphasis> need a dump/reload.</para>
<para>Upgrading from older releases requires a dump/reload. See the
<link linkend="upgrading">upgrading</link> chapter for more
informations.</para>
</simplesect>
<simplesect>
<title>Bug fixes</title>
<para>Fault tolerant btree ops</para>
<para>Memory leak plugged in pg_error</para>
<para>Rtree index fix</para>
<para>Cleaner build scripts (avoided mix of CFLAGS and
CXXFLAGS)</para>
</simplesect>
<simplesect>
<title>Improvements</title>
<para>New index creation capabilities in loader (-I switch)</para>
<para>Initial support for postgresql 8.1dev</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.1</title>
<para>Release date: 2005/05/24</para>
<para>Contains a few bug fixes and some improvements.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.0RC6 or up you
<emphasis>DO NOT</emphasis> need a dump/reload.</para>
<para>Upgrading from older releases requires a dump/reload. See the
<link linkend="upgrading">upgrading</link> chapter for more
informations.</para>
</simplesect>
<simplesect>
<title>Library changes</title>
<para>BUGFIX in 3d computation of length_spheroid()</para>
<para>BUGFIX in join selectivity estimator</para>
</simplesect>
<simplesect>
<title>Other changes/additions</title>
<para>BUGFIX in shp2pgsql escape functions</para>
<para>better support for concurrent postgis in multiple schemas</para>
<para>documentation fixes</para>
<para>jdbc2: compile with "-target 1.2 -source 1.2" by default</para>
<para>NEW -k switch for pgsql2shp</para>
<para>NEW support for custom createdb options in
postgis_restore.pl</para>
<para>BUGFIX in pgsql2shp attribute names unicity enforcement</para>
<para>BUGFIX in Paris projections definitions</para>
<para>postgis_restore.pl cleanups</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.0</title>
<para>Release date: 2005/04/19</para>
<para>Final 1.0.0 release. Contains a few bug fixes, some improvements
in the loader (most notably support for older postgis versions), and
more docs.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.0RC6 you <emphasis>DO
NOT</emphasis> need a dump/reload.</para>
<para>Upgrading from any other precedent release requires a
dump/reload. See the <link linkend="upgrading">upgrading</link>
chapter for more informations.</para>
</simplesect>
<simplesect>
<title>Library changes</title>
<para>BUGFIX in transform() releasing random memory address</para>
<para>BUGFIX in force_3dm() allocating less memory then
required</para>
<para>BUGFIX in join selectivity estimator (defaults, leaks,
tuplecount, sd)</para>
</simplesect>
<simplesect>
<title>Other changes/additions</title>
<para>BUGFIX in shp2pgsql escape of values starting with tab or
single-quote</para>
<para>NEW manual pages for loader/dumper</para>
<para>NEW shp2pgsql support for old (HWGEOM) postgis versions</para>
<para>NEW -p (prepare) flag for shp2pgsql</para>
<para>NEW manual chapter about OGC compliancy enforcement</para>
<para>NEW autoconf support for JTS lib</para>
<para>BUGFIX in estimator testers (support for LWGEOM and schema
parsing)</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.0RC6</title>
<para>Release date: 2005/03/30</para>
<para>Sixth release candidate for 1.0.0. Contains a few bug fixes and
cleanups.</para>
<simplesect>
<title>Upgrading</title>
<para>You need a dump/reload to upgrade from precedent releases. See
the <link linkend="upgrading">upgrading</link> chapter for more
informations.</para>
</simplesect>
<simplesect>
<title>Library changes</title>
<para>BUGFIX in multi()</para>
<para>early return [when noop] from multi()</para>
</simplesect>
<simplesect>
<title>Scripts changes</title>
<para>dropped {x,y}{min,max}(box2d) functions</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>BUGFIX in postgis_restore.pl scrip</para>
<para>BUGFIX in dumper's 64bit support</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.0RC5</title>
<para>Release date: 2005/03/25</para>
<para>Fifth release candidate for 1.0.0. Contains a few bug fixes and a
improvements.</para>
<simplesect>
<title>Upgrading</title>
<para>If you are upgrading from release 1.0.0RC4 you <emphasis>DO
NOT</emphasis> need a dump/reload.</para>
<para>Upgrading from any other precedent release requires a
dump/reload. See the <link linkend="upgrading">upgrading</link>
chapter for more informations.</para>
</simplesect>
<simplesect>
<title>Library changes</title>
<para>BUGFIX (segfaulting) in box3d computation (yes,
another!).</para>
<para>BUGFIX (segfaulting) in estimated_extent().</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>Small build scripts and utilities refinements.</para>
<para>Additional performance tips documented.</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.0RC4</title>
<para>Release date: 2005/03/18</para>
<para>Fourth release candidate for 1.0.0. Contains bug fixes and a few
improvements.</para>
<simplesect>
<title>Upgrading</title>
<para>You need a dump/reload to upgrade from precedent releases. See
the <link linkend="upgrading">upgrading</link> chapter for more
informations.</para>
</simplesect>
<simplesect>
<title>Library changes</title>
<para>BUGFIX (segfaulting) in geom_accum().</para>
<para>BUGFIX in 64bit architectures support.</para>
<para>BUGFIX in box3d computation function with collections.</para>
<para>NEW subselects support in selectivity estimator.</para>
<para>Early return from force_collection.</para>
<para>Consistency check fix in SnapToGrid().</para>
<para>Box2d output changed back to 15 significant digits.</para>
</simplesect>
<simplesect>
<title>Scripts changes</title>
<para>NEW distance_sphere() function.</para>
<para>Changed get_proj4_from_srid implementation to use PL/PGSQL
instead of SQL.</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>BUGFIX in loader and dumper handling of MultiLine shapes</para>
<para>BUGFIX in loader, skipping all but first hole of
polygons.</para>
<para>jdbc2: code cleanups, Makefile improvements</para>
<para>FLEX and YACC variables set *after* pgsql Makefile.global is
included and only if the pgsql *stripped* version evaluates to the
empty string</para>
<para>Added already generated parser in release</para>
<para>Build scripts refinements</para>
<para>improved version handling, central Version.config</para>
<para>improvements in postgis_restore.pl</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.0RC3</title>
<para>Release date: 2005/02/24</para>
<para>Third release candidate for 1.0.0. Contains many bug fixes and
improvements.</para>
<simplesect>
<title>Upgrading</title>
<para>You need a dump/reload to upgrade from precedent releases. See
the <link linkend="upgrading">upgrading</link> chapter for more
informations.</para>
</simplesect>
<simplesect>
<title>Library changes</title>
<para>BUGFIX in transform(): missing SRID, better error
handling.</para>
<para>BUGFIX in memory alignment handling</para>
<para>BUGFIX in force_collection() causing mapserver connector
failures on simple (single) geometry types.</para>
<para>BUGFIX in GeometryFromText() missing to add a bbox cache.</para>
<para>reduced precision of box2d output.</para>
<para>prefixed DEBUG macros with PGIS_ to avoid clash with pgsql
one</para>
<para>plugged a leak in GEOS2POSTGIS converter</para>
<para>Reduced memory usage by early releasing query-context palloced
one.</para>
</simplesect>
<simplesect>
<title>Scripts changes</title>
<para>BUGFIX in 72 index bindings.</para>
<para>BUGFIX in probe_geometry_columns() to work with PG72 and support
multiple geometry columns in a single table</para>
<para>NEW bool::text cast</para>
<para>Some functions made IMMUTABLE from STABLE, for performance
improvement.</para>
</simplesect>
<simplesect>
<title>JDBC changes</title>
<para>jdbc2: small patches, box2d/3d tests, revised docs and
license.</para>
<para>jdbc2: bug fix and testcase in for pgjdbc 8.0 type
autoregistration</para>
<para>jdbc2: Removed use of jdk1.4 only features to enable build with
older jdk releases.</para>
<para>jdbc2: Added support for building against pg72jdbc2.jar</para>
<para>jdbc2: updated and cleaned makefile</para>
<para>jdbc2: added BETA support for jts geometry classes</para>
<para>jdbc2: Skip known-to-fail tests against older PostGIS
servers.</para>
<para>jdbc2: Fixed handling of measured geometries in EWKT.</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>new performance tips chapter in manual</para>
<para>documentation updates: pgsql72 requirement, lwpostgis.sql</para>
<para>few changes in autoconf</para>
<para>BUILDDATE extraction made more portable</para>
<para>fixed spatial_ref_sys.sql to avoid vacuuming the whole
database.</para>
<para>spatial_ref_sys: changed Paris entries to match the ones
distributed with 0.x.</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.0RC2</title>
<para>Release date: 2005/01/26</para>
<para>Second release candidate for 1.0.0 containing bug fixes and a few
improvements.</para>
<simplesect>
<title>Upgrading</title>
<para>You need a dump/reload to upgrade from precedent releases. See
the <link linkend="upgrading">upgrading</link> chapter for more
informations.</para>
</simplesect>
<simplesect>
<title>Library changes</title>
<para>BUGFIX in pointarray box3d computation</para>
<para>BUGFIX in distance_spheroid definition</para>
<para>BUGFIX in transform() missing to update bbox cache</para>
<para>NEW jdbc driver (jdbc2)</para>
<para>GEOMETRYCOLLECTION(EMPTY) syntax support for backward
compatibility</para>
<para>Faster binary outputs</para>
<para>Stricter OGC WKB/WKT constructors</para>
</simplesect>
<simplesect>
<title>Scripts changes</title>
<para>More correct STABLE, IMMUTABLE, STRICT uses in
lwpostgis.sql</para>
<para>stricter OGC WKB/WKT constructors</para>
</simplesect>
<simplesect>
<title>Other changes</title>
<para>Faster and more robust loader (both i18n and not)</para>
<para>Initial autoconf script</para>
</simplesect>
</sect1>
<sect1>
<title>Release 1.0.0RC1</title>
<para>Release date: 2005/01/13</para>
<para>This is the first candidate of a major postgis release, with
internal storage of postgis types redesigned to be smaller and faster on
indexed queries.</para>
<simplesect>
<title>Upgrading</title>
<para>You need a dump/reload to upgrade from precedent releases. See
the <link linkend="upgrading">upgrading</link> chapter for more
informations.</para>
</simplesect>
<simplesect>
<title>Changes</title>
<para>Faster canonical input parsing.</para>
<para>Lossless canonical output.</para>
<para>EWKB Canonical binary IO with PG>73.</para>
<para>Support for up to 4d coordinates, providing lossless
shapefile->postgis->shapefile conversion.</para>
<para>New function: UpdateGeometrySRID(), AsGML(), SnapToGrid(),
ForceRHR(), estimated_extent(), accum().</para>
<para>Vertical positioning indexed operators.</para>
<para>JOIN selectivity function.</para>
<para>More geometry constructors / editors.</para>
<para>PostGIS extension API.</para>
<para>UTF8 support in loader.</para>
</simplesect>
</sect1>
</appendix>
|