1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943
|
postgresql-common (282) unstable; urgency=medium
* pg_upgradecluster "dump" method improvements:
* Revert to using plain pg_dumpall for "dump" upgrades.
In 2005, version 33 had switched to using custom format dumps and
pg_restore to support large objects, but this has been supported in
pg_dumpall since 8.1. This enables better error detection during the
upgrade and abort instead of papering over problems. (The use of
--no-data-for-failed-tables is also dropped.)
* Output is now the queries instead of the command tags, should be more
pleasant to watch.
* Stop mangling pg_proc.probin, was introduced to work around problems
with upgrades from woody/7.4.
* Upgrading clusters with databases not accepting connections is no longer
supported. (An error is thrown instead.)
* Use PGOPTIONS to temporarily override default_transaction_read_only.
* testsuite: Remove special case for plpython3 on 9.x and python 3.12.
* t/TestLib.pm: Support catching stderr in exec_as().
* testsuite: Make tests aware on which archs postgresql-NN-jit is built.
-- Christoph Berg <myon@debian.org> Sat, 16 Aug 2025 11:28:52 +0200
postgresql-common (281) unstable; urgency=medium
* pgdg/apt.postgresql.org.sh: PG19 has been branched.
* server/postgresql.mk: Fix building for PG19.
* t: Drop python3 exceptions for 9.x, not required.
-- Christoph Berg <myon@debian.org> Sat, 19 Jul 2025 12:25:53 +0200
postgresql-common (280) unstable; urgency=medium
* server/postgresql.mk: Use --with-libcurl on Linux only.
* Updated pt translation by Américo Monteiro, thanks! (Closes: #1107433)
* Updated it translation by Luca Monducci, thanks! (Closes: #1107848)
-- Christoph Berg <myon@debian.org> Mon, 23 Jun 2025 15:32:53 +0200
postgresql-common (279) unstable; urgency=medium
* server/postgresql.mk: Build PG18 with libnuma on Linux.
-- Christoph Berg <myon@debian.org> Thu, 12 Jun 2025 21:02:00 +0200
postgresql-common (278) unstable; urgency=medium
* pg_upgradecluster: Do two vacuumdb runs in analyze hook for PG18+.
* t/040_upgrade.t: Verify presence of stats after upgrade.
* pg_virtualenv: Adjust to extension_control_path change in PG18.
-- Christoph Berg <myon@debian.org> Wed, 07 May 2025 17:58:33 +0200
postgresql-common (277) unstable; urgency=medium
* Updated ro translation by Remus-Gabriel Chelu, thanks! (Closes: #1101817)
* server/postgresql.mk: Build PG18 with liburing.
-- Christoph Berg <myon@debian.org> Wed, 09 Apr 2025 12:17:57 +0200
postgresql-common (276) unstable; urgency=medium
* pg_upgradecluster: Use --missing-stats-only in analyze hook for PG18+.
* pg_virtualenv: Use PG18's extension_control_path to find extensions in
temporary build paths instead of our custom extension_destdir patch.
* pg_buildext: Export $PG_CONFIG in all modes.
* Fix "should we build with LLVM support" detection on PG18+.
* Remove test-with-jit.conf, wasn't really exercised anyway.
* Updated es translation by Camaleón, thanks! (Closes: #1098284)
* Updated tr translation by Atila Koç, thanks! (Closes: #1101161)
* Updated pt_BR translation by Paulo Henrique de Lima Santana, thanks!
(Closes: #1098442)
-- Christoph Berg <myon@debian.org> Mon, 31 Mar 2025 15:10:15 +0200
postgresql-common (275) unstable; urgency=medium
[ Christoph Berg ]
* postgresql.mk: Enable --with-libcurl in PG18; ship llvmjit.so in new -jit
package.
* t/TestLib.pm check_clean: Sleep and retry on failure. (Closes: #1099815)
* Updated nl translation by Frans Spiesschaert, thanks! (Closes: #1099468)
* Updated de translation by Hermann-Josef Beckers, thanks! (Closes: #1099529)
[ Michael Banck ]
* pg_lsclusters: Warn if postgresql.conf is not readable.
-- Christoph Berg <myon@debian.org> Tue, 18 Mar 2025 16:37:57 +0100
postgresql-common (274) unstable; urgency=medium
* PgCommon.pm read_conf_file: Propagate missing_ok to included files.
* Move pgdg-keyring conflicts to postgresql-client-common where the files
are located now.
-- Christoph Berg <myon@debian.org> Thu, 20 Feb 2025 11:52:38 +0100
postgresql-common (273) unstable; urgency=medium
* Temporarily remove dependency on "make" until the dependency from
postgresql-common on postgresql-common-dev is removed for the PG18
transititon.
-- Christoph Berg <myon@debian.org> Fri, 14 Feb 2025 15:03:16 +0100
postgresql-common (272) unstable; urgency=medium
* Move libipc-run-perl dependency to postgresql-common-dev.
-- Christoph Berg <myon@debian.org> Thu, 13 Feb 2025 15:14:15 +0100
postgresql-common (271) unstable; urgency=medium
* Mark postgresql-common-dev as M-A: foreign.
* pg_createcluster: Disable SSL on 9.1 and earlier.
* pg_upgradecluster: Ignore missing postgresql-contrib-NN for 10+.
* PgCommon read_cluster_conf_file: Allow postgresql.auto.conf to be missing.
-- Christoph Berg <myon@debian.org> Thu, 13 Feb 2025 15:01:44 +0100
postgresql-common (270) unstable; urgency=medium
* postgresql-all.config: Handle systems without clusters.
* t/190_pg_buildext.t: Check for postgresql-server-dev-all.
-- Christoph Berg <myon@debian.org> Fri, 24 Jan 2025 13:03:15 +0100
postgresql-common (269) unstable; urgency=medium
[ Christoph Berg ]
* If the "postgresql" meta package is installed, offer automated upgrading
of the "main" cluster. (Closes: #810730)
* pg_upgradecluster: Check if all packages for the old version are installed
for the new version as well. (Closes: #703850)
* pg_upgradecluster: Enable checksums in "dump" upgrades to 18+; add
--(no-)data-checksums option. (Closes: #959705)
* pg_backupcluster: Add -Z --compress option.
* pg_backupcluster: Mark RUNNING backups properly.
* pg_ctlcluster: Fix setsid call, thanks Nam T. Nguyá»…n. (Closes: #1054782)
* pg_dropcluster: Drop only tablespace dirs matching our catalog version.
* README.Debian: Update upgrade instructions and fill in major versions
automatically. (Closes: #943788, #971536)
* Move contents of postgresql-server-dev-all to new package
postgresql-common-dev so they can be used stand-alone without pulling in
postgresql-common-dev-* and dependencies. postgresql-server-dev-all is now
a pure meta package. Also take over pg_buildext and server build files
from postgresql-common.
* postgresql-common temporarily depends on postgresql-common-dev until
all extension test dependencies have been updated. (Planned for the PG18
release preparations.)
* postgresql-common-dev is arch: all, convert postgresql-server-dev-all back
to arch: all as well since the PG build chain isn't cross-build ready yet
anyway.
* Remove postgresql-contrib meta package, provide it from postgresql.
* supported-versions: Remove obsolete distribution-detection code; move to
postgresql-common-dev; don't install
/etc/postgresql-common/supported_versions by default.
* postgresql-common.config: Remove deprecation notice for old majors.
* debian/maintscripts-functions: Create "main" cluster only when no other
clusters exist yet.
* pg_buildexit: Pass -j to `make` invocations. (Salsa: !23)
* pg_buildexit: Error out without a PGVERSION pattern in debian/control.in.
* PgCommon.pm set_conffile_value: Fix replacing unquoted floats and negative
values, thanks Allan Forsberg!
* PgCommon.pm read_conf_file: Add missing_ok parameter.
* Remove obsolete /etc/sysctl.d/30-postgresql-shm.conf. (Closes: #1042927)
* Move apt.postgresql.org.{asc,gpg,sh} to postgresql-client-common.
Drop /etc/apt/trusted.gpg.d/apt.postgresql.org.gpg compat code.
[ Christopher Bock ]
* pg_backupcluster: Fix backup directory in documentation.
[ Dennis Schwan ]
* Prevent removal of update-alternatives in RPM when updating package.
[ Michael Banck ]
* pg_createcluster: Do not remove existing data directory on failure.
(Closes: #1056303)
-- Christoph Berg <myon@debian.org> Wed, 22 Jan 2025 20:05:11 +0100
postgresql-common (267) unstable; urgency=medium
* t/027_jit.t: No jit for PG18+ on Ubuntu focal.
-- Christoph Berg <myon@debian.org> Thu, 21 Nov 2024 11:54:02 +0100
postgresql-common (266) unstable; urgency=medium
* pg_upgradecluster: Support upgrades to 18 with data checksums disabled.
* Fix pg_backupcluster with data checksums enabled.
-- Christoph Berg <myon@debian.org> Thu, 14 Nov 2024 14:53:36 +0100
postgresql-common (265) unstable; urgency=medium
* Add libipc-run-perl to postgresql-client-common depends for extension
tests.
-- Christoph Berg <myon@debian.org> Mon, 21 Oct 2024 16:50:44 +0200
postgresql-common (264) unstable; urgency=medium
* postgresql-all: Drop dependency on postgresql-contrib-*.
* Remove remaining traces of python2 compatibility code.
* debian/postgresql-common.tmpfile: Rename to .tmpfiles.
* t/027_jit.t: Skip JIT tests in 11.
* t/045_backup.t: Fix test running on 9.x without systemd.
-- Christoph Berg <myon@debian.org> Thu, 26 Sep 2024 14:06:48 +0200
postgresql-common (263) unstable; urgency=medium
[ Christoph Berg ]
* pg_buildext: Set PROVE_FLAGS=--verbose in installcheck.
* debian/supported-versions: Add 17 as default version.
* Most extension packages will now default to supporting only 64-bit
architectures. Enable the pkg.postgresql.32-bit build profile to revert
for local builds.
[ Andreas Karlsson ]
* pg_ctlcluster: Add logrotate action
-- Christoph Berg <myon@debian.org> Tue, 10 Sep 2024 13:03:32 +0200
postgresql-common (262) unstable; urgency=medium
* Chown /var/tmp/postgresql-* to postgres so catversion bump instructions do
not require root. Spotted by Greg Smith, thanks.
* Ignore test results on powerpc.
-- Christoph Berg <myon@debian.org> Thu, 08 Aug 2024 16:37:01 +0200
postgresql-common (261) unstable; urgency=medium
* server/postgresql.mk: Use --enable-dtrace only on Linux.
* pg_createcluster: Internally set LC_NUMERIC=C to ensure version
comparisons use '.' as separator.
* t/045_backup.t: ALTER SYSTEM needs 9.4+.
-- Christoph Berg <myon@debian.org> Tue, 25 Jun 2024 14:04:23 +0200
postgresql-common (260) unstable; urgency=medium
* t/020_create_sql_remove.t: Skip plpython3 tests on 9.x and Python 3.12+.
-- Christoph Berg <myon@debian.org> Thu, 09 May 2024 17:10:04 +0200
postgresql-common (259) unstable; urgency=medium
* pg_backupcluster, pg_restorecluster: Let `pg_restore --create` handle
database creation and restore of database options and grants.
(Removes databases.sql from dumps.)
* PgCommon.pm get_db_encoding: Refactor for dropped daticulocale in 17.
* pg_buildext: Pass PG_VIRTUALENV_ARGS to pg_virtualenv.
-- Christoph Berg <myon@debian.org> Mon, 15 Apr 2024 14:09:12 +0200
postgresql-common (258) unstable; urgency=medium
* server/postgresql.mk: Add Build-Profile pkg.postgresql.nollvm to disable
JIT.
-- Christoph Berg <myon@debian.org> Mon, 18 Mar 2024 17:10:46 +0100
postgresql-common (257) unstable; urgency=medium
* Move systemd unit files to /usr on releases that support it.
* debian/maintscripts-functions: More carefully build update-alternatives
command line. Hopefully fixes "link and path can't be the same" errors.
* debian/maintscripts-functions: Remove empty /usr/share/man/ directories.
* pg_backupcluster: Add hostname, machine-id, and machine-deployment (from
/etc/machine-info) to backup status; use machine-readable timestamps for
starttime/endtime; sort keys.
* pg_upgradecluster: Skip upgrade scripts when --no-start is given.
* pg_upgradecluster: Pass --jobs to analyze script. (Closes: #1054179)
* debian/po/sv.po: Updated Swedish translation by Martin Bagge and Anders
Jonsson, thanks! (Closes: #1059169)
-- Christoph Berg <myon@debian.org> Thu, 08 Feb 2024 13:32:31 +0100
postgresql-common (256) unstable; urgency=medium
* pg_upgradecluster: Remove old_snapshot_threshold in PG17.
* Install pg_bsd_indent and pgindent into server-dev in PG17.
* pg_buildext: words containing PGVERSIONS are replaced by a list of
words with versions filled in. Most useful in Build-Depends.
* pg_buildext: Add actions run and run_installed.
* server/postgresql.mk: Grab LLVM version from B-D instead of autodetecting.
-- Christoph Berg <myon@debian.org> Wed, 08 Nov 2023 16:25:17 +0100
postgresql-common (255) unstable; urgency=medium
* PgCommon.pm: Set defined path in prepare_exec. Thanks Niko Tyni!
* debian/supported-versions: Add 16 as default version.
-- Christoph Berg <myon@debian.org> Thu, 14 Sep 2023 10:35:53 +0200
postgresql-common (254) unstable; urgency=medium
* /etc/postgresql-common/pg_upgradecluster.d/analyze: Automatically analyze
databases after upgrade.
* pg_upgradecluster: drop hard-coded analyze used in dump mode only.
* server: Ignore test results on ia64 and sh4.
* pg_upgradecluster: Honor --keep-on-error not just for failing upgrade
scripts; properly start old cluster again after errors. On PG15+, move
pg_upgrade output from pg_upgrade_output.d to /var/log/postgresql/.
Remove force_parallel_mode in PG16+.
* Thanks to Dagfinn Ilmari Mannsåker for helping with the patches!
* Remove /usr/share/postgresql-common/upgrade-scripts, upgrade scripts for
postgresql-common itself. I believe this functionality was never used.
* pgdg/apt.postgresql.org.sh: Set umask 022.
-- Christoph Berg <myon@debian.org> Thu, 07 Sep 2023 11:12:30 +0200
postgresql-common (253) unstable; urgency=medium
* pg_upgradecluster: Remove db_user_namespace in PG17.
* t/045_backup.t: Relax analyze_count check that's flaky on s390x.
* pgdg/apt.postgresql.org.sh: Allow multiple versions in -v.
-- Christoph Berg <myon@debian.org> Wed, 09 Aug 2023 11:51:21 +0200
postgresql-common (252) unstable; urgency=medium
* pg_upgradecluster: Add --keep-on-error option.
* PgCommon get_db_locales: PG16 removes lc_ctype and lc_collate GUCs, query
pg_database instead.
* t/050_encodings.t: Revert back to old LC_ALL=C behavior.
-- Christoph Berg <myon@debian.org> Sat, 01 Jul 2023 20:45:40 +0200
postgresql-common (251) unstable; urgency=medium
* Refresh pgdg/apt.postgresql.org.sh.
-- Christoph Berg <myon@debian.org> Fri, 30 Jun 2023 12:42:37 +0200
postgresql-common (250) experimental; urgency=medium
* server/postgresql.mk: Fix ignoring test failures on alpha; ignore test
results on hppa and sparc64.
* pg_upgradecluster: Remove vacuum_defer_cleanup_age in PG16.
-- Christoph Berg <myon@debian.org> Wed, 24 May 2023 10:41:06 +0200
postgresql-common (249) experimental; urgency=medium
* Merge postmaster.1.gz alternatives into psql.1.gz link group.
* Test-Depend on postgresql-doc to test the man3 alternatives.
* Depend on sysvinit-utils alternatively to obsolete lsb-base.
* server/postgresql.mk: Allow setting MAJOR_PKG for custom server packages.
* server/catversion: Also extract catalog file version number.
* debian/maintscripts-functions: Support flavored server packages.
* testsuite: Support flavored server packages (testsuite -F ee).
* pg_upgradecluster: Copy encryption_key_command from old cluster to support
PostgreSQL TDE.
* pg_backupcluster, t/045_backup.t: Handle icu-encoded clusters and
databases.
* pg_backupcluster: Support passing --checkpoint=fast to pg_basebackup.
* pg_restorecluster: Pass extra pg_createcluster arguments after --.
* t/050_encodings.t: Accept en_US_POSIX-encoded cluster with LANG=C on PG16.
* pg_upgradecluster, t/052_upgrade_encodings.t: Preserve ICU locale when
upgrading from PG15+.
* debian/tests/default-psql: Mark as skippable and honor createcluster.d.
-- Christoph Berg <myon@debian.org> Wed, 10 May 2023 21:11:56 +0200
postgresql-common (248) unstable; urgency=medium
[ Christoph Berg ]
* Update ro debconf translation, mulțumesc Remus-Gabriel Chelu!
[ Athos Ribeiro ]
* Fix set_conffile_value comment parsing regular expression.
-- Christoph Berg <myon@debian.org> Tue, 14 Mar 2023 15:19:01 +0100
postgresql-common (247) unstable; urgency=medium
[ Christoph Berg ]
* Update pt_BR debconf translation, thanks Paulo Henrique de Lima Santana!
(Closes: #1024197)
* postgresql.mk: Ignore test failures on alpha.
* pgdg/apt.postgresql.org.sh: Fix version comparisons for 9.x.
* pg_upgradecluster: Remove promote_trigger_file in PG16.
* t/200_maintscripts.t: Run apt-get update before reinstalling pg-common.
[ Dennis Schwan ]
* Fix pgsql-XX isn't numeric in numeric comparison. (Salsa #31)
-- Christoph Berg <myon@debian.org> Thu, 09 Feb 2023 11:28:43 +0100
postgresql-common (246) unstable; urgency=medium
* pg_buildext: If PGVERSION appears outside the package name only, fill in
the newest supported version.
* pg_wrapper: Select cluster based on port number as well. (Closes: #986186)
* t/020_create_sql_remove.t: Fix pgwrapper+psql version test on pre-9.2.
* pgdg: Include .asc and .gpg keys from pgdg-keyring; upgrade
apt.postgresql.org.sh to write pgdg.sources instead of pgdg.list.
-- Christoph Berg <myon@debian.org> Thu, 10 Nov 2022 15:06:56 +0100
postgresql-common (245) unstable; urgency=medium
[ Marco Nenciarini ]
* pgdg: fix unbound variable error with empty PGVERSION.
[ Christoph Berg ]
* server/postgresql.mk: EXCLUDE_PACKAGES to skip building libs, used now for
postgresql-14 in bookworm when postgresql-15 has already been uploaded.
* server/postgresql.mk: Skip building -doc package when nodoc is selected.
-- Christoph Berg <myon@debian.org> Sat, 22 Oct 2022 14:46:03 +0200
postgresql-common (244) unstable; urgency=medium
* debian/supported-versions: Bump default version to 15.
* dh_install{init,systemd}: Use --no-stop-on-upgrade and to not restart any
services on postgresql-common upgrades. (Closes: #1011067)
* debian/maintscripts-functions: Add -v to pg_upgradecluster template to
stay on the same major version on catversion upgrades.
* pg_upgradecluster: Fix port handling when --rename is used.
-- Christoph Berg <myon@debian.org> Fri, 14 Oct 2022 10:59:12 +0200
postgresql-common (243) unstable; urgency=medium
* pg_backupcluster: Enable gzip compression with pg_receivewal.
* next_free_port: Set SO_REUSEADDR and listen() on sockets created.
* t/TestLib.pm check_clean: Use ss from iproute2 instead of netstat.
* debian/supported-versions: Don't look at the OS release, we'll just ship
the matching file in that release.
* Test-depend on locales-all.
* pgcommon.sh: Remove, dropping get_release and locale_gen.
* postgresql.service: Improve comment explaining the relation to
postgresql@.service.
* testsuite: Run all tests even when one is failing.
* pg_wrapper: If the cluster version is older than 9.2, consider psql only
up to version 14 instead of the newest version.
* Use grep -E instead of egrep.
* debian/rules: Use DEB_VERSION instead of dpkg-parsechangelog.
-- Christoph Berg <myon@debian.org> Thu, 08 Sep 2022 15:34:54 +0200
postgresql-common (242) unstable; urgency=medium
* server/postgresql.mk: Tell pg_upgrade to create sockets in /tmp.
* pg_virtualenv: Unset PGHOSTADDR PGPORT PGSERVICE.
-- Christoph Berg <myon@debian.org> Thu, 11 Aug 2022 11:25:31 +0200
postgresql-common (241) unstable; urgency=medium
* Remove stats_temp_directory in PG 15.
* server/postgresql.mk: Fix detection of latest llvm version.
* server/postgresql.mk: Remove builddir prefix from generated pg_config.
* t/045_backup.t: Accept new PG15 psql -l output.
-- Christoph Berg <myon@debian.org> Wed, 11 May 2022 15:57:04 +0200
postgresql-common (240) unstable; urgency=medium
* t/085_pg_ctl.conf.t: Honor systemd hard core file size limit.
-- Christoph Berg <myon@debian.org> Mon, 14 Mar 2022 12:12:02 +0100
postgresql-common (239) unstable; urgency=medium
* t/085_pg_ctl.conf.t: sudo and salsa-ci set the core file size hard limit
to 0 by default, undo that. (Salsa: postgresql/postgresql#2)
-- Christoph Berg <myon@debian.org> Fri, 11 Mar 2022 12:03:17 +0100
postgresql-common (238) unstable; urgency=medium
* pg_restorecluster: Correctly detect errors on restore.
* pg_restorecluster: Support uncompressed backups and bz2/xz compression.
* supported-versions: Unsupport PG 9.6 for apt.postgresql.org.
* t/180_ecpg.t: Enable debug output and run program in pg_virtualenv.
-- Christoph Berg <myon@debian.org> Thu, 10 Feb 2022 11:02:57 +0100
postgresql-common (237) unstable; urgency=medium
* postgresql.mk: Mute dpkg error on empty version fields in debian/control.
-- Christoph Berg <myon@debian.org> Tue, 04 Jan 2022 11:44:42 +0100
postgresql-common (236) unstable; urgency=medium
* pg_buildext: Generate postgresql:Depends substvar and depend on
postgresql-$version-jit-llvm (>= $llvm_version).
-- Christoph Berg <myon@debian.org> Mon, 03 Jan 2022 16:19:56 +0100
postgresql-common (235) unstable; urgency=medium
[ Christian Ehrhardt ]
* server/postgresql.mk: avoid gcc 11 ICE on armhf and armel.
-- Christoph Berg <myon@debian.org> Mon, 20 Dec 2021 18:13:44 +0100
postgresql-common (234) unstable; urgency=medium
* server/postgresql.mk: Fix OS detection in override_dh_auto_test.
-- Christoph Berg <myon@debian.org> Mon, 06 Dec 2021 10:51:35 +0100
postgresql-common (233) unstable; urgency=medium
* pg_virtualenv.1: Document -p and extension_destdir.
* server: Centralize server packages debian/rules logic here.
-- Christoph Berg <myon@debian.org> Fri, 03 Dec 2021 09:50:31 +0100
postgresql-common (232) unstable; urgency=medium
* pg_backupcluster: Preserve wal file timestamps with compresswal.
* t/006_next_free_port.t: Sleep longer after nc startup.
* t/020_create_sql_remove.t: Sleep a bit after stopping clusters to
hopefully fix a race condition seen on ci.debian.net.
* t/180_ecpg.t: Print error messages to console.
* dh_make_pgxs/debian/watch: Look at tags instead of releases.
-- Christoph Berg <myon@debian.org> Thu, 11 Nov 2021 17:17:49 +0100
postgresql-common (231) unstable; urgency=medium
* supported-versions: Set PG 14 as default.
* pg_createcluster: Avoid "auth is trust" initdb warning on pre-9.2 servers.
-- Christoph Berg <myon@debian.org> Thu, 30 Sep 2021 13:12:36 +0200
postgresql-common (230) unstable; urgency=medium
* dh_installinit, dh_installsystemd: Use --no-start to prevent all actions
on postgresql.service at postgresql-common install/upgrade time.
* t/012_maintscripts.t: Compare pid files instead of using ps.
-- Christoph Berg <myon@debian.org> Tue, 28 Sep 2021 13:15:59 +0200
postgresql-common (229) unstable; urgency=medium
* postgresql-common.maintscript: We mistakenly tried to remove
/etc/apt/apt.conf.d/01autoremove instead of 01autoremove-postgresql.
Fix, and bump version to retry the removal.
* pg_updateaptconfig: Switch to 02autoremove-postgresql since dpkg 1.20.6's
new built-in remove-conffile-on-upgrade logic doesn't like the file
reappearing as non-conffile.
* pg_createcluster: Add --no-status option for suppressing status message.
* pg_createcluster: Use scram-sha-256 by default in PG14+.
* t/020_create_sql_remove.t: Check pg_hba.conf auth methods.
* pg_upgradecluster: Migrate old files to new cluster before upgrading.
* pg_wrapper: Skip LD_PRELOAD logic in PG13+.
* postgresql-client-common: Stop recommending libreadline.
* postgresql-server-dev-all: Mark dependency on make as :any.
* Depend on ${perl:Depends}.
* dh_installsystemd: Use -r to prevent restarting postgresql.service.
* t/012_maintscripts.t: New maintainer scripts test.
* pgdg/apt.postgresql.org.sh: Try /etc/os-release first and add some
precautionary checks to the other methods.
-- Christoph Berg <myon@debian.org> Sat, 25 Sep 2021 21:43:00 +0200
postgresql-common (228) unstable; urgency=medium
* postgresql-server-dev-all: Move to Arch: any, M-A: same to allow
cross-compiling.
* pg_buildext.pod: Use `B-D: postgresql-all <!nocheck>` in example.
* Update doc/dependencies.* and install as .svg.
* pg_virtualenv, postgresql-common.postrm: Use `command -v` instead of
deprecated `which`.
* Upgrade to debhelper 13; packaging still compatible with DH10 in stretch.
* Add ${misc:Pre-Depends} to postgresql-common.
* Install pg_backupcluster.1, pg_restorecluster.1, and pg_getwal.1 manpages.
* Remove /etc/sysctl.d/30-postgresql-shm.conf, obsolete with current
kernels and PG versions.
-- Christoph Berg <myon@debian.org> Thu, 16 Sep 2021 18:44:15 +0200
postgresql-common (227) unstable; urgency=medium
* pgdg/apt.postgresql.org.sh, t/020_create_sql_remove.t: Support PG15.
* pgxs.pm: Enable tests on hurd, it can run PostgreSQL now.
-- Christoph Berg <myon@debian.org> Tue, 31 Aug 2021 17:33:54 +0200
postgresql-common (226) experimental; urgency=medium
[ Christoph Berg ]
* pg_backupcluster, pg_restorecluster: New front-ends to pg_basebackup,
pg_receivewal and pg_dump with systemd service/timer integration.
* pg_dropcluster: Disable cluster and backup services on drop.
* pg_upgradecluster: Deprecate vacuum_cleanup_index_scale_factor in 14.
* Promote libjson-perl to Depends.
* Move cluster owner verification from pg_ctlcluster to new PgCommon.pm
function validate_cluster_owner and use it in pg_upgradecluster,
pg_renamecluster, pg_dropcluster. (Extends the CVE-2019-3466 fix.)
* PgCommon.pm: documentation converted to POD, many thanks to Pablo Valdés
for the excellent patch!
* PgCommon.pm error: Use die() instead of exit().
* supported-versions: Drop support for 9.5 on apt.postgresql.org.
[ Hanefi Onaldi ]
* pg_buildext build: Move extra_cflags from command line arguments to COPT
so Makefile.global CFLAGS are not overridden
[ Bryce Harrington ]
* d/postinst: Only add postgres to group ssl-cert if it isn't
already a member of that group. (Closes: #984473, LP: #1690432)
-- Christoph Berg <myon@debian.org> Wed, 12 May 2021 17:16:38 +0200
postgresql-common (225) unstable; urgency=medium
* pg_lsclusters, cluster_info: Show cluster managed by pacemaker or patroni.
* pg_ctlcluster: Fix "use systemctl instead" context.
* pg_createcluster: In 14+, use initdb --no-instructions.
* pg_upgradecluster: Deprecate password_encryption as boolean in 14.
* t: Accept changed connection error messages from libpq 14.
-- Christoph Berg <myon@debian.org> Tue, 02 Feb 2021 15:40:25 +0100
postgresql-common (224) unstable; urgency=medium
* pg_wrapper, PgCommon: When looking for the newest version, consider the
name of the binary (psql, postgres) asked for.
* pg_buildext: Fix typo in the psql/virtualenv exit code handling.
* pg_ctlcluster: Fix starting of md5-only clusters on 8.2/8.3.
* t/025_logging.t: Sleep a bit for the log tests to make test more stable.
* postgresqlrc.5, user_clusters.5: Mention file locations more prominently.
* pg_upgradecluster: Deprecate operator_precedence_warning in PG14.
-- Christoph Berg <myon@debian.org> Thu, 14 Jan 2021 16:23:51 +0100
postgresql-common (223) unstable; urgency=medium
* pg_ctlcluster: Refuse to start root-owned clusters with a sensible error
message.
* pgdg/apt.postgresql.org.sh: Add groovy, remove archived distributions.
-- Christoph Berg <myon@debian.org> Thu, 12 Nov 2020 12:37:57 +0100
postgresql-common (222) unstable; urgency=medium
[ Michael Banck ]
* pg_upgradecluster: set max_wal_senders along with wal_level in ugprade
mode.
[ Christoph Berg ]
* Drop t/003_package_checks.t, psql can be linked with readline now.
http://meetbot.debian.net/debian-ftp/2020/debian-ftp.2020-03-13-20.02.html
* Remove PostgreSQL 13 transition Breaks, problems were testsuite-only.
-- Christoph Berg <myon@debian.org> Mon, 26 Oct 2020 11:46:34 +0100
postgresql-common (221) unstable; urgency=medium
[ Christoph Berg ]
* pg_virtualenv: Skip build-time package tests if the PG server is missing
extension_destdir support.
* Test-depend on debhelper for the pg_buildext tests.
* Skip pg_buildext tests when invoked from postgresql-NN server tests.
* dh_make_pgxs: Support running with older debhelper versions.
* pgdg/apt.postgresql.org.sh: Bump devel version to 14, thanks to Aaron
Pavely for spotting!
* pg_updateaptconfig: Fix not to emit duplicated version entries.
* Add Breaks on regressing packages with the move to PG13.
[ Dominik George ]
* pg_buildext: Fail late on builds and tests to logs for all versions.
-- Christoph Berg <myon@debian.org> Tue, 13 Oct 2020 23:27:27 +0200
postgresql-common (220) unstable; urgency=medium
* dh_make_pgxs: Use dh --with pgxs in template.
* dh_make_pgxs: Add `R³: no` to control.in template.
* debhelper: Use dpkg_architecture_value() instead of hostarch() because
Dh_Lib.pm on stretch and xenial doesn't have the latter yet.
* Add t/190_pg_buildext.t covering pg_buildext and debhelper integration.
-- Christoph Berg <myon@debian.org> Mon, 12 Oct 2020 23:21:52 +0200
postgresql-common (219) unstable; urgency=medium
* postgresql-server-dev-all: Depend on strict postgresql-common version.
* pg_virtualenv: Export PGVERSION with the PostgreSQL major version.
* pg_virtualenv: Add -p option to set extension_destdir.
* pg_buildext: Add "virtualenv" action that loops over shells for testing.
* pg_buildext: Fix "installed-versions" for empty package name suffixes.
* pg_buildext: Don't update debian/control if debian/control.in is missing.
* Move dh_pgxs_test after dh_link so we have the links in the install trees.
* Skip invoking dh_pgxs_test if nocheck is set, or when on hurd-i386.
-- Christoph Berg <myon@debian.org> Tue, 06 Oct 2020 23:26:00 +0200
postgresql-common (218) unstable; urgency=medium
* pg_buildext installcheck: Set DESTDIR during build-time tests.
* pg_buildext clean: Do not assume Makefile to be present. (Closes: #971517)
-- Christoph Berg <myon@debian.org> Fri, 02 Oct 2020 12:49:44 +0200
postgresql-common (217) unstable; urgency=medium
* Set PostgreSQL 13 as default version.
* pg_upgradecluster: Rename wal_keep_segments to wal_keep_size on upgrades
to PG 13.
* pg_createcluster: Add option --quiet to suppress initdb output and make
pg_virtualenv use it.
* pg_createcluster: Allow -o --pgoption to override createcluster.conf
settings.
* t/060_obsolete_confparams.t: Generate full config files dynamically.
* dh_make_pgxs: Use current debhelper version instead of the oldest one,
support setting homepage, general template copy-editing.
* Implement extension building as `dh $@ --with pgxs` and pgxs_loop, backed
by `--buildsystem=pgxs` and pgxs_loop. We also run `make installcheck` at
extension build time now via dh_pgxs_test and our PostgreSQL
extension_destdir patch. Previously extensions could only be tested at
runtime via autopkgtest.
* pg_buildext loop: Clean after building instead of before.
* Add `pg_buildext psql` action for extensions that use psql for testing.
* Drop the PG major prefix from postgresql-all version number so extensions
can declare sensible versioned dependencies on it.
* Updated it debconf translation by Luca Monducci, thanks! (Closes: #969220)
-- Christoph Berg <myon@debian.org> Wed, 30 Sep 2020 21:54:23 +0200
postgresql-common (216) unstable; urgency=medium
* Updated es debconf translation by Camaleón, thanks! (Closes: #960994)
* apt.postgresql.org.sh: Install contrib package with -i.
* pg_virtualenv: Show PostgreSQL backtrace when coredumps are found and gdb
is installed.
* pg_ctlcluster: Fix cluster start in 8.2/3.
* pg_virtualenv: 8.2 doesn't have pg_ctl -c yet.
* t/170_extensions.t: Don't drop plpgsql before testing extensions.
* t/TestLib.pm: Fix deb_installed to only recognize fully installed
packages.
-- Christoph Berg <myon@debian.org> Wed, 12 Aug 2020 15:10:25 +0200
postgresql-common (215) unstable; urgency=medium
* Mark only the packages as apt NeverAutoRemove for which PostgreSQL
clusters exist. /etc/apt/apt.conf.d/01autoremove-postgresql is updated
when clusters are created and dropped. (Closes: #948728)
* t/TestLib.pm: Add os_release function.
* t/020_create_sql_remove.t: Verify server libssl linkage.
-- Christoph Berg <myon@debian.org> Thu, 14 May 2020 16:36:50 +0200
postgresql-common (214) unstable; urgency=medium
* check_pidfile_running: Read /proc/$pid/cmdline instead of calling /bin/ps.
(Works around #952572)
-- Christoph Berg <myon@debian.org> Thu, 27 Feb 2020 13:22:52 +0100
postgresql-common (213) unstable; urgency=medium
[ Christian Ehrhardt ]
* t/020_create_sql_remove.t: fix file clear with procps 3.16. (LP: #1864423)
[ Christoph Berg ]
* pg_lsclusters: List clusters even if the corresponding PostgreSQL
binaries are missing; include "binaries_missing" in status column.
(Salsa #13)
* Reload systemd on install since we don't do that automatically via
dh_installinit. Problem reported by velix, thanks! (Salsa #12)
* debian/maintscripts-functions: Save full bin and lib dirs on catversion
bump. Problem reported by Komzzpa, thanks! (Salsa #9)
* debian/maintscripts-functions: Suppress errors from pg_controldata, the
control file might be missing if the cluster was pg_upgraded. Spotted by
Michael Banck, thanks! (Salsa #6)
* pg_wrapper: Reword docs to better describe clusters on the local system.
Reported by James Coleman, thanks! (Closes: #950149)
* pg_wrapper: Document that `ALTER SYSTEM SET port` will interact badly with
cluster selection. (Closes: #919385)
-- Christoph Berg <myon@debian.org> Mon, 24 Feb 2020 16:20:14 +0100
postgresql-common (212) unstable; urgency=medium
* debian/supported-versions: Remove 9.4 support on apt.postgresql.org.
-- Christoph Berg <myon@debian.org> Tue, 11 Feb 2020 15:06:26 +0100
postgresql-common (211) unstable; urgency=medium
[ Dagfinn Ilmari Mannsåker ]
* pg_createcluster, pg_updatedicts: Enable strict and warnings.
-- Christoph Berg <myon@debian.org> Mon, 27 Jan 2020 14:57:59 +0100
postgresql-common (210) unstable; urgency=medium
* pg_ctlcluster: Drop privileges before creating socket and stats temp
directories outside /var/run/postgresql. The default configuration is not
affected by this change. Users with directories on volatile storage
(tmpfs) in other locations have to make sure the parent directory is
writable for the cluster owner. (CVE-2019-3466, discovered by Rich Mirch)
-- Christoph Berg <myon@debian.org> Thu, 14 Nov 2019 13:23:42 +0100
postgresql-common (209) unstable; urgency=medium
* pg_buildext: Fix installcheck for packages that don't have
debian/control.in (pg-sphere).
* PgCommon.pm cluster_info: Recognize standby.signal and recovery.signal for
PG12 clusters instead of recovery.conf.
-- Christoph Berg <myon@debian.org> Thu, 07 Nov 2019 15:09:18 +0100
postgresql-common (208) unstable; urgency=medium
[ Christoph Berg ]
* gitlab/gitlab-ci.yml: Too many packages fail because reprotest runs the
build as root, disable for now.
* README.Debian: Redirect reference to architecture.html to README.md.gz.
(Closes: #942021)
* README.Devel: Remove, bzr is long obsolete.
* Remove dependency on dctrl-tools; rewrite control file updating in perl.
As a side effect, generated debian/control files will no longer have a
trailing empty line. Die if no supported versions were found.
* pg_upgradecluster: Accept -m link and -m clone for simplicity.
* debian/supported-versions: Add 12 as default version and for Ubuntu 20.04.
* pg_createcluster: Add note on security implications of using --auth-host
and --auth-local.
* postgresql-all: Don't depend on postgresql-plpython-12, it doesn't exist.
* pg_buildext: New action "installed-versions" reporting the list of
PostgreSQL major versions used by packages built from a source package.
* pg_buildext: "installcheck" uses "installed-versions" now.
[ Tilman Koschnick ]
* pg_upgradecluster: Support passing --clone to pg_upgrade.
(Closes: #942307)
-- Christoph Berg <myon@debian.org> Mon, 28 Oct 2019 15:04:12 +0100
postgresql-common (207) unstable; urgency=medium
* PgCommon.pm: Fix infinite recursion in get_program_path if
/usr/lib/postgresql/ contains a non-version directory.
Patch by ITANI Eiichiro, thanks! (Closes: #940220)
-- Christoph Berg <myon@debian.org> Fri, 20 Sep 2019 14:24:23 +0200
postgresql-common (206) unstable; urgency=medium
* pg_ctlcluster, pg_upgradecluster: Always use latest psql.
* t/135_pg_virtualenv.t: Run pg_virtualenv on all versions.
* gitlab/gitlab-ci.yml: Include salsa-ci pipeline instead of our own.
-- Christoph Berg <myon@debian.org> Thu, 12 Sep 2019 15:49:10 +0200
postgresql-common (205) unstable; urgency=medium
* Disable plpython2 packages by default. (Closes: #937310)
* testsuite: Prefer PgCommon.pm from current directory.
* pgcommon.sh: Remove obsolete Ubuntu code in locale_gen function.
* Drop lsb-release dependencies, we prefer /etc/os-release anyway.
* apt.postgresql.org.sh: Parse VERSION_CODENAME in /etc/os-release.
-- Christoph Berg <myon@debian.org> Wed, 04 Sep 2019 08:38:08 +0200
postgresql-common (204) unstable; urgency=medium
* dh_installinit: Add -ppostgresql-common to work around debhelper #932073.
* dh_make_pgxs: Add debian/watch template (with a github pattern).
* pgdg/apt.postgresql.org.sh: Add options to choose PostgreSQL version, and
to optionally install packages automatically.
* Move pg_buildext from postgresql-server-dev-all to postgresql-common. Many
use-cases do not need the header files and compiler dependencies
installed.
* debian/supported-versions: Use PG11 on Bullseye.
* pg_virtualenv: Write temporary password file before chowning the file.
(Closes: #933569)
-- Christoph Berg <myon@debian.org> Thu, 08 Aug 2019 12:48:00 +0200
postgresql-common (203) unstable; urgency=medium
DATA LOSS WARNING: pg_upgradecluster from postgresql-common 200 .. 202 will
corrupt the data_directory setting when used *twice* to upgrade a cluster
(e.g. 9.6 -> 10 -> 11). This update fixes the original problem, and also
heals affected clusters on the next upgrade. No additional steps are required.
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=931635
* pg_createcluster: Allow clusters with owner gid 0. (salsa-ci uses that.)
* pg_createcluster: If there are --auth options in createcluster.conf's
initdb_options, don't update pg_hba.conf.
* pg_upgradecluster: Don't accidentally set (the wrong!) data_directory in
postgresql.auto.conf. (Closes: #931635)
* PgCommon.pm: Ignore data_directory when set in postgresql.auto.conf.
* pg_upgradecluster: Delete data_directory from postgresql.auto.conf in new
cluster.
* pg_upgradecluster: Use a tempfile instead of replacing the original
pg_hba.conf file during upgrades.
* pg_upgradecluster: With --keep-port, leave old cluster on original port.
(Closes: #507133)
* pg_ctlcluster: For consistency with systemctl, also accept action before
cluster name: "pg_ctlcluster start 11 main".
* pg_ctlcluster: Use `psql -w` to avoid flooding the log with errors when
the cluster was configured for password authentication on local
connections. Patch by Evgeny, thanks!
* debian/tests: Do full testsuite run. Previously the full testsuite was
only running from the postgresql-NN server package.
* t/135_pg_virtualenv.t: Don't fail if fakeroot is not present.
-- Christoph Berg <myon@debian.org> Tue, 09 Jul 2019 16:16:57 +0200
postgresql-common (202) unstable; urgency=medium
* pg_ctlcluster: Close extra log filedescriptor. Thanks Andrey Borodin!
(Closes: #930728)
* pg_virtualenv: Disable fakeroot while creating clusters so we don't end up
running as root.
* t/135_pg_virtualenv.t: New test file.
* t/TestLib.pm: Restrict check_clean to LISTENing sockets.
* gitlab/gitlab-ci.yml: Run blhc; fail on lintian errors.
-- Christoph Berg <myon@debian.org> Tue, 02 Jul 2019 14:39:56 +0200
postgresql-common (201) experimental; urgency=medium
[ Christoph Berg ]
* Disable ssl on older server versions. (Versions up to 9.1 support
OpenSSL 1.0 only, which has been removed from Debian unstable.)
* pg_upgrade: Fix 'sameuser' handling in pg_hba when upgrading from pre-8.4
versions.
* gitlab/gitlab-ci.yml: Ignore skipped tests, and packages without tests; install
pristine-tar; install via dh_make_pgxs.
* Move .gitlab-ci.yml to debian/gitlab-ci.yml; add buster and stretch,
* remove jessie. (Not to be confused with gitlab/gitlab-ci.yml.)
* dh_make_pgxs: Set debhelper compat level to 9, highest version supported
by jessie and trusty.
[ Andreas Hasenack ]
* Set Ubuntu 19.10 default PostgreSQL version to 11.
-- Christoph Berg <myon@debian.org> Thu, 09 May 2019 10:02:05 +0200
postgresql-common (200) unstable; urgency=medium
* pg_createcluster: Don't refuse explicit -p argument even when port is
already in use. (Closes: #653870)
* pg_createcluster: Override suggested cluster start command in initdb.
(Closes: #872660)
* pg_upgradecluster, t/052_upgrade_encodings.t: pg_dumpall 11 retains the
database encoding, so switching encodings via dump-restore does not work
anymore.
* pg_upgradecluster: Deprecate 'replacement_sort_tuples' in version 11.
* pg_upgradecluster: Migrate postgresql.auto.conf to new cluster.
(Closes: #810615)
* pg_ctlcluster: Die early if logfile is not available. (Closes: #891234)
* pg_ctlcluster: Die early if pg_ctl cannot be found. (See: #918784)
* pg_ctlcluster: Document --skip-systemctl-redirect, and skip redirect if
--foreground is requested.
* pg_renamecluster: Notify systemd. (Closes: #839954)
* pg_renamecluster: Document that cluster_name is updated as well.
* pg_dropcluster: Delete tablespace directories. (Closes: #916449)
* pg_dropcluster: Silence warning if data_directory is already gone.
Spotted by Jean-Christophe Arnu, merci!
* get_cluster_port: Fall back to 5432 if port is not defined in config.
(Closes: #920248)
* read_cluster_conf_file: Use cluster_data_directory instead of hardcoding
/var/lib/postgresql.
* postgresql@.service: Add After=network.target to ensure the server is
stopped before networking goes down on shutdown. Thanks Elrond!
(Closes: #910991)
* postgresql@.service: Drop /var prefix from PIDFile, systemd complained
about legacy directory /var/run/postgresql.
* postgresql-generator: Don't attempt to auto-start removed versions.
(Closes: #918784)
-- Christoph Berg <myon@debian.org> Fri, 01 Mar 2019 20:47:06 +0100
postgresql-common (199) unstable; urgency=medium
[ Antti Salmela ]
* pg_upgradecluster: Pass --jobs to pg_upgrade when using upgrade method.
[ Christoph Berg ]
* supported-versions: Drop support for 9.3 on apt.postgresql.org.
-- Christoph Berg <christoph.berg@credativ.de> Mon, 28 Jan 2019 16:27:27 +0100
postgresql-common (198) unstable; urgency=medium
[ Christoph Berg ]
* Add gitlab-ci.yml file to be included in all PostgreSQL team packages.
* testsuite: Stop postgresql@* explicitly. (Workaround for #759725)
[ Michael Banck ]
* pg_buildext: Add support for passing Makefile variables via the new -m
option. (Closes: #915953)
-- Christoph Berg <myon@debian.org> Sun, 16 Dec 2018 11:55:10 +0100
postgresql-common (197) unstable; urgency=medium
* dh_make_pgxs: Update Maintainer address and package URLs.
* pg_buildext: Fix problem with substitution pattern occurring multiple
times.
* pg_buildext: Set PG_REGRESS_DIFF_OPTS for unified diffs from pg_regress.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 22 Nov 2018 11:59:06 +0100
postgresql-common (196) unstable; urgency=medium
[ Christoph Berg ]
* Replace version 10 in examples by version 11. (Closes: #911391)
* Replace -X.Y version number template in examples by -NN.
* Updated Turkish translation by Atila Koç, thanks! (Closes: #912322)
* read_conf_file: Accept '+' in unquoted values for floats like 1.5+e3.
Thanks to David Barbion for spotting!
* pg_buildext: Handle multiple overlapping substitutions in
debian/tests/control.in better.
[ Jeremy Bicha ]
* Add Ubuntu 19.04 aka disco.
-- Christoph Berg <christoph.berg@credativ.de> Wed, 21 Nov 2018 12:32:11 +0100
postgresql-common (195) unstable; urgency=medium
* apt.postgresql.org: Add 11 as default to supported versions.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 18 Oct 2018 13:53:47 +0200
postgresql-common (194) unstable; urgency=medium
* Remove iproute2 | net-tools dependency from postgresql-server-dev-all,
obsolete in pg_buildext since 178.
* Also save pg_controldata on catversion changes, pg_upgrade needs it.
Spotted by Dagfinn Ilmari Mannsåker, thanks!
* Chown /etc/postgresql to user postgres.
* pg_ctlcluster: Use "fast" shutdown by default, and remove code to kill -9
the server if it doesn't react to a --force stop. (Closes: #756008)
* pg_upgradecluster: Start upgraded cluster only if it was running before,
override with new --[no-]start option. (Closes: #876281)
* pg_upgradecluster: With pg_upgrade, set wal_level early so standby servers
can be upgraded via the instructions from pg_upgrade(1). (Closes: #876293)
* pg_upgradecluster: Notify systemd about disabling the old cluster.
* pg_upgradecluster: Drop sleep(4) that had been there since the first
version.
* pg_createcluster: Create stats_temp_directory, so pg_upgrade(cluster) can
use it even without invoking pg_ctlcluster before. (Closes: #827469)
* pg_upgradecluster: Drop check for pg_restore --no-data-for-failed-tables,
switch was introduced in 8.2; use it always and not only when upgrade
scripts are present. (Closes: #876282)
* Debian: Default PostgreSQL version in buster is 11.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 11 Oct 2018 17:29:41 +0200
postgresql-common (193) unstable; urgency=medium
[ Francois Marier ]
* Use /run in /usr/lib/tmpfiles.d/postgresql.conf to avoid deprecation
warning. (Closes: #902875)
[ Christoph Berg ]
* pg_buildext: Stop passing srcdir to make invocations.
* pg_buildext: Copy CFLAGS from environment to COPT so Makefile.global
picks it up. Notably this will make extension builds use
-f{debug,file}-prefix-map from dpkg-buildflags.
-- Christoph Berg <myon@debian.org> Thu, 23 Aug 2018 12:57:46 +0200
postgresql-common (192) unstable; urgency=medium
* postgresql@.service: Use AssertPathExists instead of ConditionPathExists
so trying to operate on non-existing clusters fails loudly.
(Closes: #891836)
* postgresql@.service: Add "RequiresMountsFor /etc/postgresql/%I
/var/lib/postgresql/%I" to depend on mounts. (Closes: #855762)
* pg_createcluster: Fix error on importing existing clusters, spotted by
Mark Eichin, thanks! (Closes: #886871)
* postinst_check_catversion: Ignore errors while determining PGDATA.
* Move maintainer address to team+postgresql@tracker.debian.org.
-- Christoph Berg <christoph.berg@credativ.de> Wed, 08 Aug 2018 16:21:59 +0200
postgresql-common (191) unstable; urgency=medium
[ Christoph Berg ]
* PgCommon cluster_data_directory: Support clusters in and symlinked from
/etc/postgresql/.
* t/170_extensions.t: Add dependencies of jsonb_pl{perl,python}.
[ Christian Ehrhardt ]
* supported-versions: Add Ubuntu 18.10. (Closes: #898166)
-- Christoph Berg <myon@debian.org> Thu, 10 May 2018 16:44:19 +0200
postgresql-common (190) unstable; urgency=medium
* Move packaging repository to salsa.debian.org
* pg_lsclusters: Add --help.
* pg_virtualenv: Error out if no server packages are installed.
* postgresql-common recommends e2fsprogs, we are using chattr in
pg_createcluster. (Closes: #887251)
* PgCommon.pm: Fix include directives parser, spotted by ironhalik, thanks!
* postgresql@.service: Set Timeoutstart=0, which is the same as infinity,
but works on older systemd versions as well.
* Rewrite architecture.html as README.md.
* t/006_next_free_port.t: Drop -q argument from netcat, nmap-ncat.rpm
doesn't have it.
* t/032_ssl_key_permissions.t: Adjust for 9.4 in oldstable which still has
the old permissions check.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 08 Feb 2018 13:26:44 +0100
postgresql-common (189) unstable; urgency=medium
[ Chris Lamb ]
* Update README.Debian for postgresql-10. (Closes: #876438)
[ Christoph Berg ]
* dh_make_pgxs: Use PostgreSQL license as default, fix extension name.
* Modernize README.Debian's version numbers and SSL instructions.
* postgresql@.service: Ignore startup failure, recovery might take
arbitrarily long to finish. The actual service status still correctly
reflects if the postmaster process is running.
https://www.postgresql.org/message-id/20171111205316.u56lkmkakdmcx6zm%40msg.df7cb.de
* supported-versions: Version 10 on Ubuntu 18.04 (bionic). (Closes: #881501)
* debian/maintscripts-functions: bump update-alternatives priority of
version 1x to 1x0.
* Unsupport 9.2 on apt.postgresql.org.
* t/140_pg_config.t: Also test /usr/bin/pg_config.libpq-dev, and check
MKDIR_P and abs_top_build/srcdir in Makefile.global.
-- Christoph Berg <myon@debian.org> Thu, 14 Dec 2017 21:13:24 +0100
postgresql-common (188) unstable; urgency=medium
* pg_ctlcluster, pg_createcluster, pg_upgradecluster: Use lchown instead
of chown to mitigate privilege escalation via symlinks. (CVE-2017-8806.
Related to CVE-2017-12172 in PostgreSQL; extends our earlier fix for
CVE-2016-1255.)
* dh_make_pgxs: Add options to set package name and version.
* pg_lsclusters: Raise error when called on a specific cluster that does not
exist. This was the behavior before the "accept dead postgresql.conf
symlinks" change, but not coded explicitly.
-- Christoph Berg <christoph.berg@credativ.de> Wed, 08 Nov 2017 16:03:19 +0100
postgresql-common (187) unstable; urgency=medium
* Consistently call psql -X. (Closes: #877920)
* Update pt translation, thanks Ricardo Silva! (Closes: #872430)
* pg_virtualenv: Drop "BUG" message that really just means that
pg_createcluster threw an error.
* pg_createcluster: Drop new cluster if --start was requested and starting
fails.
* pg_createcluster: If not running as postgres or root, don't attempt to
install config and data parent directories with owner postgres.
* pg_lsclusters, postgresql-generator, get_version_clusters, cluster_info,
read_conf_file: Accept dead postgresql.conf symlinks, filesystem might not
be mounted yet.
* pg_virtualenv: Fix version comparison when determining newest PG major.
* pg_updatedicts, postgresql-common.postinst: Create tsearch dictionaries on
first install and set umask for correct permissions. (Closes: #868232)
Thanks to Christian Ehrhardt for the analysis!
* Demote postgresql-common hunspell/myspell triggers to noawait.
-- Christoph Berg <myon@debian.org> Sun, 22 Oct 2017 20:44:38 +0200
postgresql-common (186) unstable; urgency=medium
* Team upload.
* Bump default apt.postgresql.org version to 10.
* t/020_create_sql_remove.t: Support 8.x xlog filenames.
* Update ca translation, thanks Innocent De Marchi! (Closes: #876472)
* PgCommon.pm: Use BSD ps syntax in check_pidfile_running.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 05 Oct 2017 16:04:18 +0200
postgresql-common (185) unstable; urgency=medium
* Team upload.
[ Christoph Berg ]
* Revert "Error out if a recovery.conf file is found in /etc/postgresql".
It caused too many false positives for setups where a recovery.conf
template is located in the etc directory. (Closes: #868367)
* Bump default PostgreSQL version to 10.
[ Marco Nenciarini ]
* supported-versions: correctly detect version 10 when using 'installed'.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 21 Sep 2017 12:07:30 +0200
postgresql-common (184) unstable; urgency=high
* debian/maintscripts-functions: Use deb-systemd-invoke instead of
invoke-rc.d to stop "postgresql@$ver-*"; jessie's invoke-rc.d does not
support service patterns.
-- Christoph Berg <myon@debian.org> Tue, 11 Jul 2017 20:19:21 +0200
postgresql-common (183) unstable; urgency=medium
* Team upload.
[ Nishanth Aravamudan ]
* debian/supported-versions: add Ubuntu 17.10. (Closes: #862420)
[ Bernd Helmle ]
* postgresql-common.spec: Fix installation path of manpages.
[ Alex Badics ]
* pg_ctlcluster: Use pg_ctl.conf during stop too.
[ Christoph Berg ]
* PgCommon.pm: Sort get_versions and get_version_clusters output.
* PgCommon.pm: Revert to old quote_conf_value behavior, the new regexp was
too liberal. The new input behavior is retained, though.
* pg_ctlcluster: Error out if a recovery.conf file is found in
/etc/postgresql to catch a common mistake. (Closes: #853868)
* pg_upgradecluster: Allow configuring the maintenance database.
(Closes: #851874)
* pg_upgradecluster: Pass config directory to pg_upgrade instead of
symlinking the config files. This breaks using "-m upgrade" for upgrades
*to* versions before 9.2; upgrades from older versions are unaffected.
* pg_upgradecluster, pg_renamecluster: Use default pg_ctl timeout when
stopping cluster.
* pg_dropcluster: Remove custom xlog directory. (Closes: #830789)
* pg_createcluster, pg_ctlcluster: cd / to prevent warnings from PostgreSQL
tools. (Closes: #834264)
* pg_wrapper: Don't fail if no local cluster exists on port 5432.
Code cleanup. (Closes: #777623)
* pg_lsclusters: --start-conf shows start.conf information.
* createcluster.conf: Add add_include_dir='conf.d' for drop-in PostgreSQL
config snippets in /etc/postgresql/version/cluster/conf.d/ and
include_dir='/etc/postgresql-common/createcluster.d' for pg_createcluster
config snippets.
* t/051_inconsistent_encoding_upgrade.t: Remove, only relevant for <= 8.2.
* logrotate config: Ship as static conffile again and remove ucf handling.
* pg_conftool: Fix operation when no cluster exists yet.
* pg_conftool: --boolean normalizes boolean variable in output; use this in
debian/maintscripts-functions.
* debian/maintscripts-functions: Unconditionally call invoke-rc.d, and drop
path names from program invocations (Standards-Version 4.0.0).
* debian/maintscripts-functions: Use 'invoke-rc.d "postgresql@$ver-*" stop'
to prevent upgrading/removing server packages from stopping other major
version clusters when running systemd. (Closes: #809811)
* debian/maintscripts-functions: Avoid update-alternatives failing if the
user removed /usr/share/man. (Closes: #866729)
* t/TestLib.pm: Vacuum tests left behind when postmaster and pg_autovacuum
were removed. Update test counts in *.t.
* B-D on debhelper (>= 10.1) | dh-systemd (>= 1.19) to pick up
dh_systemd_start.
-- Christoph Berg <christoph.berg@credativ.de> Wed, 05 Jul 2017 16:15:48 +0200
postgresql-common (182) experimental; urgency=medium
* Team upload.
* pg_buildext: Resurrect the previously deprecated "srcdir" mode to allow
building packages from a subdirectory, and make "loop" support it as well.
* t/001_packages.t: PostgreSQL 10 doesn't have a separate contrib package.
* t/020_create_sql_remove.t: Use CREATE EXTENSION, createlang is being
removed.
* t/120_pg_upgradecluster_scripts.t: Don't try to rename
pg_upgradecluster.d, fails on overlayfs.
* pg_lsclusters, t: pg_log directory name changed in 10.
* pg_lsclusters: Allow listing one version or one cluster only.
* pg_lsclusters: Support JSON output, suggest libjson-perl for that.
* pg_createcluster, createcluster.conf: Update for --waldir rename.
* pg_createcluster: Do not suppress initdb output, and use pg_lsclusters to
show created cluster info.
* pg_ctlcluster: Suppress "Redirecting to systemctl message".
* pg_upgradecluster: Deprecate min_parallel_relation_size and
sql_inheritance in 10.
* Symlink /usr/bin/pg_receivewal to pg_wrapper.
* PgCommon.pm: Include postgresql.conf in cluster_info and remove variables
directly copied from config; adjust callers.
* PgCommon.pm: Allow more characters in unquoted config values.
Spotted by Fabien Coelho, merci!
* postgresql-server-dev-all: dh_make_pgxs: Template mechanism for new
Debian packages based on PGXS Makefiles.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 11 May 2017 14:01:59 +0200
postgresql-common (181) unstable; urgency=medium
* debian/postgresql-common.config: Fix deprecation warning debconf message
to use a numerical comparison on the version number.
* pg_buildext: Fix to use a numerical comparison on the version number.
* pg_buildext.pod: Drop outdated PG_VIRTUALENV_UNSHARE=-n documentation.
* pgdg/apt.postgresql.org.sh: Add known distributions.
* Updated Danish debconf translation by Joe Dalton, thanks!
(Closes: #856787)
-- Christoph Berg <myon@debian.org> Sat, 15 Apr 2017 18:56:38 +0200
postgresql-common (180) unstable; urgency=medium
* supported-versions: Retire 9.1 on apt.postgresql.org.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 09 Feb 2017 15:30:23 +0100
postgresql-common (179) unstable; urgency=medium
* Catch all pg_ctl output by redirecting it to /var/log/postgresql.
(Closes: #830485)
* Dump locale environment variables if setlocale fails.
(Closes: #848869)
* Set default log_line_prefix to '%m [%p] %q%u@%d ' to match upstream
moving to '%m [%p] ' in PostgreSQL 10.
* Support include_dir in read_conf_file. Patch by Andreas Dewes, thanks!
* Support adding include directives to the new postgresql.conf from
createcluster.conf; harness directives with an "add_" prefix, e.g.
"add_include_dir".
* Import new apt.postgresql.org key.
* Support 9.6 for jessie-backports.
-- Christoph Berg <myon@debian.org> Tue, 24 Jan 2017 23:03:12 +0100
postgresql-common (178) unstable; urgency=medium
[ Christoph Berg ]
* pg_buildext: Don't ask pg_virtualenv for a new network namespace by
default.
* postgresql-all: New meta package depending on all server packages in all
supported versions. Intended to be used for installing test dependencies.
* pg_upgradecluster: Properly upgrade databases with non-login role owners.
(Closes: #614374, #838812)
* pg_upgradecluster, pg_renamecluster: Update cluster_name.
* Rebuild upgrades libreadline to 7 in unstable. (Closes: #845356)
* Replace most occurrences of "postmaster" by "postgres". Notable leftover
is the postmaster.1.gz leader of the manpages alternatives group.
* pg_ctlcluster, t/020_create_sql_remove.t: Protect against symlink in
/var/log/postgresql/ allowing the creation of arbitrary files elsewhere.
Discovered by Dawid Golunski, thanks! (CVE-2016-1255)
[ Martin Pitt ]
* debian/supported-versions: Add Ubuntu 17.04, drop EOLed releases.
* t/TestLib.pm, check_clean(): Quiesce stderr of netstat, which shows a "Not
all processes could be identified" warning in unprivileged containers.
-- Christoph Berg <myon@debian.org> Tue, 20 Dec 2016 17:11:15 +0100
postgresql-common (177) unstable; urgency=medium
[ Martin Pitt ]
* Replace hardcoded Recommends: libreadline6 with a build-time detection of
the current ABI.
[ Christoph Berg ]
* Team upload.
* Mark 9.6 as stable for apt.postgresql.org.
-- Christoph Berg <christoph.berg@credativ.de> Wed, 28 Sep 2016 11:55:12 +0200
postgresql-common (176) unstable; urgency=medium
* Team upload.
* Bump default PostgreSQL server version to 9.6.
* Use C.UTF-8 instead of C when the initial main cluster is created and no
locale is configured explicitly as system default. (Closes: #790507)
* Support "NN" major version numbers, next version will be PostgreSQL 10.
* debian/postgresql-common.templates: Properly mark not-to-be-translated
shell code-only chunk as such using flag:translate. Thanks to Rhonda for
the pointer! (See: #820756, #832282)
* testsuite: Run with umask 077 only by default.
* t/025_logging.t: Fix tests when grep thinks syslog is a binary file.
* t/031_errors_disk_full.t: Raise tmpfs size to account for larger cluster
footprint observed on ppc64el.
* t/032_ssl_key_permissions.t: Skip tests on 9.0 and earlier.
* pg_createcluster, t/025_logging.t: Skip logging_collector for 8.2.
* Ship /etc/postgresql-common/supported_versions even in non-backport
packages. (Closes: #808353)
* pg_createcluster: Error out if provided log file is a directory.
(Closes: #791556)
* pg_upgradecluster: Set dynamic_shared_memory_type from the new
postgresql.conf instead of defaulting to mmap. (Closes: #823209)
* pg_upgradecluster: Use data checksums in the new cluster if the old uses
them. (Closes: #830228)
-- Christoph Berg <christoph.berg@credativ.de> Fri, 23 Sep 2016 12:32:16 +0200
postgresql-common (175) unstable; urgency=medium
* pg_createcluster, createcluster.conf: Set cluster_name on 9.5+.
* pg_buildext: Don't set any CFLAGS by default.
* start.conf: Update documentation/comments to recommend running
systemctl daemon-reload.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 23 Jun 2016 12:26:27 +0200
postgresql-common (174) unstable; urgency=medium
[ Christoph Berg ]
* postgresql-common: Enforce strict version dependency on
postgresql-client-common to avoid API mismatch bugs in PgCommon.pm.
* maintscripts-functions: Save pg_dump on catversion bumps as well.
* Updated ja translation by Takuma Yamada, thanks! (Closes: #820756)
* Remove not-to-be-translated shell code-only chunk from
debian/po/templates.pot. (debconf-updatepo --skip-pot to the rescue!)
(Closes: #821445)
[ Martin Pitt ]
* debian/supported-versions: Add Ubuntu 16.10.
-- Christoph Berg <christoph.berg@credativ.de> Wed, 11 May 2016 15:04:25 +0200
postgresql-common (173) unstable; urgency=medium
[ Christoph Berg ]
* README.Debian: Fix a typo.
* Updated nl translation, thanks Frans Spiesschaert! (Closes: #812353)
* Updated ru translation, thanks Sergey Alyoshin! (Closes: #815596)
* Updated ja translation, thanks Takuma Yamada! (Closes: #816069)
* preinst_check_catversion: Handle missing catalog version file.
* pg_renamecluster: Don't try to rename a non-existing stats directory.
* pg_conftool: Refuse operation on non-existing clusters.
* maintscript-functions, templates: Remove '#' characters from upgrade
instructions on catalog version change for easier cut-and-paste.
* t/032_ssl_key_permissions.t: Validate server snakeoil key checks.
* pgdg/apt.postgresql.org.sh: Add xenial and trusty.
[ Adam Conrad ]
* pgcommon.sh: Adjust for >= xenial using Debian-style locale generation
methods, and allow fallback to the old Ubuntu method for old releases.
-- Christoph Berg <myon@debian.org> Wed, 30 Mar 2016 15:08:06 +0200
postgresql-common (172) unstable; urgency=medium
[ Christoph Berg ]
* pg_buildext: Mute diff warning about missing debian/tests/control.in.
* pg_ctlcluster: Skip systemctl redirect with --bindir.
* pg_createcluster: Drop warning if /tmp is used as socket directory.
Instead, just print the socket directory on cluster creation.
* Update French debconf translations, thanks Julien Patriarca!
(Closes: #809800)
* 9.5 released! Setting as default.
[ Martin Pitt ]
* debian/supported-versions: Switch Ubuntu 16.04 to 9.5.
* debian/supported-versions: Drop obsolete Ubuntu versions.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 07 Jan 2016 15:13:06 +0100
postgresql-common (171) unstable; urgency=medium
[ Christoph Berg ]
* pgdg: Deprecate 8.4 and 9.0.
* Enable 9.4 for wheezy-backports.
* pg_createcluster: Fix stats_temp_directory handling on 8.3, thanks to
Marco Nenciarini for the inital patch.
* pg_createcluster: Mute verbose chattr output.
* pg_conftool: Don't quote output in '-s'hort mode.
* debian/maintscripts-functions: If the catalog version changes in
devel/alpha versions, save a minimal copy of the old version binaries in
the preinst to enable using pg_upgrade. Use debconf in the postinst to
instruct the user how to proceed with the upgrade.
* pg_buildext: Replace multiple occurrences of PGVERSION on the same line,
and implement replacing for debian/tests/control.in.
* t/015_start_stop.t: Validate pg_ctlcluster/systemctl exit codes.
* pg_ctlcluster: Redirect requests to systemd when invoked as root and no
extra pg_ctl or postgres options are given.
Trying to start already running clusters clusters will return 0 now
(was 2 in the native implementation). (Closes: #784878)
* pg_createcluster, pg_renamecluster: Warn on cluster names with dashes.
* pg_upgradecluster: Deprecate ssl_renegotiation_limit in 9.5.
[ Martin Pitt ]
* pg_upgradecluster: Fix "ANALZYE" typo.
* debian/supported-versions: Add Ubuntu 16.04.
* Update Turkish debconf translations, thanks Atila KOÇ!
(Closes: #799274)
* t/020_create_sql_remove.t: Skip postmaster OOM killer adjustment when
running in a container, as these often have restricted privileges.
-- Christoph Berg <christoph.berg@credativ.de> Fri, 18 Dec 2015 16:22:37 +0100
postgresql-common (170) unstable; urgency=medium
[ Christoph Berg ]
* pg_createcluster, pg_dropcluster: When an auto-started cluster is created/
dropped by root, notify systemd to update the dependencies of
postgresql.service.wants.
* pg_dropcluster, pg_renamecluster: Handle stats_temp_directory.
* testsuite, pg_virtualenv: Remove the unshare hack, too much trouble.
* pg_buildext, pg_virtualenv: Add PG_VIRTUALENV_NEWPID and
PG_VIRTUALENV_UNSHARE variables; pg_buildext selects unshare -n by default.
* t/025_logging.t: Improve syslog detection in the test environment.
* pg_upgradecluster, t/030_errors.t: Unbreak after we changed the old=new
error message.
* PgCommon.pm: make read_cluster_conf_file read postgresql.auto.conf as well
(Closes: #787154)
* pg_upgradecluster: Support upgrading tablespaces. (Closes: #772202)
* t/TestLib.pm: New function program_ok().
* t/040_upgrade.t: Skip testing pg_upgrade with datallowconn = f, it does
not support that anymore as of May 2015.
* t/170_extensions.t: Catch warning with chkpass >= 9.5.
* debian/maintscripts-functions: Unset all locale-specific environment
variables when creating the initial database cluster. (Closes: #791526)
* Add /var/log/postgresql to /usr/lib/tmpfiles.d/postgresql.conf.
* Also set OOMScoreAdjust in postgresql@.service.
* pg_ctlcluster: OOM-protect 9.0 as well.
* pg_lsclusters: Color online/down clusters green/red.
* supported-versions: Accept DEB_PG_SUPPORTED_VERSIONS as well.
* Ship /etc/postgresql/ in postgresql-common. (Closes: #801140)
[ Martin Pitt ]
* pg_createcluster: Show the locale selected with --locale instead of the
current one. (LP: #1467061)
-- Christoph Berg <christoph.berg@credativ.de> Thu, 08 Oct 2015 13:48:26 +0200
postgresql-common (169) unstable; urgency=medium
* t/022_recovery.t: New recovery tests to catch regression in 9.4.2 and
9.1.16.
* pg_upgradecluster: Set default dynamic_shared_memory_type = mmap.
(Closes: #784005)
* pg_upgradecluster: Complain if --link is used without --method=upgrade.
* pg_upgradecluster: Better error message when old and new version are
equal.
-- Christoph Berg <myon@debian.org> Thu, 04 Jun 2015 12:09:53 +0200
postgresql-common (168) unstable; urgency=medium
[ Martin Pitt ]
* Drop obsolete debian/backport-ppa script.
* debian/tests/default-psql: Skip test if default cluster creation is
disabled in createcluster.conf.
[ Christoph Berg ]
* t/170_extensions.t: Refactor dependency handling and add new extensions
shipped with 9.5.
-- Christoph Berg <christoph.berg@credativ.de> Thu, 21 May 2015 11:28:45 +0200
postgresql-common (167) unstable; urgency=medium
[ Christoph Berg ]
* pg_conftool: Fix 'remove' operation. Spotted by François Henry, merci!
(Closes: #778243)
* t/007_pg_conftool.t: Add pg_conftool tests.
[ Martin Pitt ]
* debian/maintscripts-functions: Avoid package installation failure of -9.1
due to the pg_basebackup.1 alternative on systems which have both -9.1 and
a later version installed in parallel. On those, pg_basebackup.1 will
already be in the psql.1.gz group, thus -9.1 must not try to put it back
into the postmaster.1.gz group. (LP: #1357682)
* Add "default-psql" autopkgtest: Smoketest to verify that installing the
"postgresql" metapackage results in a running and working cluster.
* debian/maintscripts-functions, configure_cluster(): When running under
systemd, do a daemon-reload to re-run the generator and thus create a unit
for the newly created cluster.
* Move package maintenance to git, update Vcs-* tags accordingly.
* Bump Standards-Version to 3.9.6 (no changes necessary).
* supported-versions: Add Ubuntu 15.10.
-- Martin Pitt <mpitt@debian.org> Wed, 06 May 2015 11:28:26 +0200
postgresql-common (166) unstable; urgency=medium
* postgresql-common: Breaks: systemd (<< 204). postgresql@.service uses
reload-related config options that are incompatible with the systemd
version in wheezy. (Consider upgrading to the wheezy-backports version.)
* pg_renamecluster: New tool to rename clusters.
* pg_upgradecluster: --rename allows renaming the upgraded cluster.
* pg_conftool: Allow to "edit" files.
* PgCommon.pm, pg_lsclusters: Fix thinko which broke logging to
/var/log/postgresql when log_destination was "syslog,stderr". The default
logfile is now always used even if logging_collector is enabled; it
receives the log messages produced before logging_collector is started.
* t/020_create_sql_remove.t: Versions >= 9.0 are OOM-protected.
-- Christoph Berg <myon@debian.org> Thu, 05 Feb 2015 22:19:07 +0100
postgresql-common (165) unstable; urgency=medium
* Debconf translation updates, thanks!
+ es by Manuel Venturi Porras Peralta. (Closes: #773598)
-- Christoph Berg <myon@debian.org> Sun, 04 Jan 2015 18:51:31 +0100
postgresql-common (164) unstable; urgency=medium
* Init script: Always create /var/run/postgresql on start.
(Closes: #772824)
* Debconf translation updates, thanks!
+ pt by Ricardo Silva. (Closes: #767399)
* t/100_upgrade_scripts.t: Incompatible with eatmydata, remove from
LD_PRELOAD when detected.
* t/170_extensions.t: Catch warning with chkpass on 9.5.
* debian/supported-versions: Support jessie in backports and
apt.postgresql.org, with 9.4 as default.
* pgdg/apt.postgresql.org.sh: Support jessie.
-- Christoph Berg <myon@debian.org> Wed, 17 Dec 2014 20:00:04 +0100
postgresql-common (163) unstable; urgency=medium
[ Martin Pitt ]
* pg_createcluster: Disable copy-on-write semantics for data directory on
btrfs and similar file systems. It eats a lot of performance and isn't
necessary for data integrity.
* debian/supported-versions: Welcome Ubuntu 15.04!
[ Christoph Berg ]
* Update VCS URLs.
-- Martin Pitt <mpitt@debian.org> Sun, 26 Oct 2014 07:04:48 -0400
postgresql-common (162) unstable; urgency=medium
[ Christoph Berg ]
* Move PgCommon.pm to /usr/share/perl5.
* t/020_create_sql_remove.t: Test psql -tx alignment to catch a bug in
9.4beta2.
* supported-versions: Set 9.4 as pgdg default on Ubuntu 14.10.
* Debconf translation updates, thanks!
+ nl by Frans Spiesschaert. (Closes: #762632)
[ Peter Michael Green ]
* Use ID_LIKE to identify deriviatives of Debian and Ubuntu.
(Closes: #761020)
[ Richard Hughes ]
* Use Type=forking in postgresql@.service and start before postgresql.
(Closes: #759725)
-- Christoph Berg <myon@debian.org> Tue, 07 Oct 2014 21:25:25 +0200
postgresql-common (161) unstable; urgency=medium
* pg_ctlcluster: Refuse root operation when config owner does not match
data owner, and config owner is not root.
* Stop automatically updating debian/control from debian/control.in in
pgxs_debian_control.mk. Instead, implement "checkcontrol" and
"updatecontrol" actions in pg_buildext. checkcontrol is run from
pgxs_debian_control.mk and will warn if an update is required.
Backport and pgdg builds will still automatically update.
(Closes: #758570)
* pg_virtualenv, testsuite: Use "ip" to start lo when available.
* Add iproute2 | net-tools to postgresql-server-dev-all dependencies.
* Debconf translation updates, thanks!
+ it by Luca Monducci. (Closes: #759808)
-- Christoph Berg <myon@debian.org> Fri, 15 Aug 2014 10:13:51 +0200
postgresql-common (160) unstable; urgency=medium
[ Martin Pitt ]
* supported-versions: Set 9.4 as default for Ubuntu 14.10.
* debian/maintscripts-functions: Call update-alternatives under C locale to
fix parsing for non-English locales. (LP: #1293596)
* pg_createcluster: Fix test if specified owner/group ID is numeric. Thanks
Sven Berkvens-Matthijsse! (LP: #1329227)
[ Christoph Berg ]
* Use dh-systemd to enable postgresql.service on install. (Closes: #757612)
* Set Multi-Arch: foreign in postgresql-common, postgresql-client-common,
postgresql-client, and postgresql-doc, and document this in
doc/dependencies.{dia,png}. (Closes: #757520)
* Update examples in README.Debian for 9.4. (Closes: #756007)
* Install README.systemd.
-- Christoph Berg <christoph.berg@credativ.de> Mon, 11 Aug 2014 15:39:39 +0200
postgresql-common (159) unstable; urgency=low
* supported-versions: Set 9.4 as default for jessie and unstable.
* systemd unit files are now installed to their proper locations.
* Install /usr/lib/tmpfiles.d/postgresql.conf.
* pgcommon.sh: New shell function module containing get_release and
locale_gen. Used by supported-versions and testsuite; also usable by other
packages.
* pg_ctlcluster, PgCommon.pm: Fix warning on corrupt empty pid files.
* pg_ctlcluster: New --stdlog option to be used with --foreground that
redirects stderr to our standard log files. Used in postgresql@.service.
* pg_ctlcluster: Ignore errors when stat'ing the logfile.
* pg_ctlcluster: use strict.
* Debconf translation updates, thanks!
+ da by Joe Dalton. (Closes: #753952)
-- Christoph Berg <christoph.berg@credativ.de> Thu, 24 Jul 2014 11:52:57 +0200
postgresql-common (158) experimental; urgency=medium
* supported-versions: Add 9.4 on Debian/unstable and pgapt (9.3 is still
default).
* Set default log_line_prefix = '%t [%p-%l] %q%u@%d '.
* Put stats_temp_directory aka pg_stat_tmp into /var/run/postgresql by
default. (Closes: #739276)
* pg_lsclusters: Print logfile from postgresql.conf when logging_collector
in use instead of "custom".
* Move pg_{create,ctl,upgrade,drop}cluster.8 to section 1, they are in
/usr/bin anyway.
* maintscripts-functions: Configure manpage alternatives in -doc packages
using SPI_connect.3.gz as master.
* pg_upgradecluster: Deprecate krb_srvname in 9.4. Failing upgrade hook
scripts will fail the upgrade.
* pg_ctlcluster: Configure OOM killer using PG_OOM_ADJUST_FILE in 9.5.
* pg_wrapper: Also accept --cluster=ver/name in a single argument.
* testsuite: Also mount /dev/shm; with -s, open shell on failure; -f nnn
starts tests at this sequence number.
* run-upgrade-scripts, t/100_upgrade_scripts.t: Fork and set uid for running
the upgrade scripts; use su -c for testing.
* Start porting the postgresql-common framework to RedHat, backed by the
PGDG PostgreSQL rpm packages.
* Debconf translation updates, thanks!
+ fr by Julien Patriarca. (Closes: #751101)
+ ja by victory. (Closes: #751131)
* debian/copyright: Update copyright holders.
-- Christoph Berg <myon@debian.org> Sat, 05 Jul 2014 16:40:16 +0200
postgresql-common (157) unstable; urgency=medium
* Remove createcluster.conf on purge.
* Fix testsuite -i to install packages before invoking unshare so apt still
has network access.
-- Christoph Berg <myon@debian.org> Fri, 30 May 2014 21:31:36 +0200
postgresql-common (156) unstable; urgency=medium
[ Christoph Berg ]
* pg_upgradecluster: Add missing psql -p argument when determining the
number of tablespaces in the old cluster.
* Link pg_archivecleanup from /usr/bin. (Closes: #740593)
* pg_virtualenv: Use fsync = off for speed.
* pg_buildext: Pass -cios options to pg_virtualenv.
* t/140_pg_config.t: Versions >= 9.3 have multiarch-enabled libpq et al.
* Bump to dh 9.
[ Martin Pitt ]
* Fix typo in German debconf translations. Thanks Rhonda for pointing out!
-- Christoph Berg <myon@debian.org> Fri, 30 May 2014 00:00:44 +0200
postgresql-common (155) unstable; urgency=medium
[ Christoph Berg ]
* postgresql-common: Maintain createcluster.conf using ucf, and add a
debconf question about the default use of ssl (default true, priority
medium). (Closes: #743918)
* Use "mount --make-rprivate /" inside our "unshare -m" calls.
(See #739593.)
* pg_ctlcluster: Add status action, add --foreground option, accept dash
(and slash) between version and cluster.
* Add systemd unit files as examples (testers welcome!).
* postgresql-client: Wrap pg_recvlogical, introduced in 9.4.
* t/050_encodings.t: 9.4 emits COPY command tags, suppress with psql -q.
* postgresql: Add Suggests: postgresql-doc. (Closes: #743755)
* pg_conftool: New script to read and edit PostgreSQL configuration files,
based on the existing read/edit functions in PgCommon.pm.
* pg_upgradecluster: Don't abort the upgrade if the config file symlinks are
already there.
* testsuite: Fix testsuite where -v does not include the latest version.
* testsuite -v -i will install packages needed for these versions.
[ Martin Pitt ]
* supported-versions: Welcome, Ubuntu 14.10!
-- Christoph Berg <christoph.berg@credativ.de> Wed, 21 May 2014 17:34:09 +0200
postgresql-common (154) unstable; urgency=medium
[ Martin Pitt ]
* debian/postgresql-common.preinst: Drop obsolete upgrade migration.
* debian/maintscripts-functions, _link_manpages(): The move of pg_basebackup
from server to client still affects upgrades from -9.1 to -9.3. Place the
upgrade fix here instead of postgresql-9.1.preinst (which does not exist
any more now). (LP: #1270597)
* Update Vcs-Bzr:, bzr.d.o. does not work any more.
[ Christoph Berg ]
* t/031_errors_disk_full.t: Drop cluster after tests.
* testsuite: Always umount the tmpfs overlays.
-- Christoph Berg <myon@debian.org> Fri, 21 Feb 2014 08:18:46 +0100
postgresql-common (153) unstable; urgency=medium
[ Christoph Berg ]
* Replace the static logrotate configuration by generating the file
dynamically using ucf, triggered by watching /usr/sbin/logrotate.
This eases dist-upgrades that upgrade logrotate to >= 3.8 from an older
version (squeeze->wheezy, precise->trusty).
* postgresql-common.postinst: Stop debconf later so ucf can use it.
* postgresql-common.postinst: Call su without - to avoid a warning.
* t/003_package_checks.t: Add test case for logrotate.
* pg_createcluster, t/001_packages.t: Refactor the ssl cert test, and add
matching testcases in the testsuite.
* t/020_create_sql_remove.t: Make pipe writes unbuffered.
* pg_buildext: Document the loop action (present since version 141).
* pg_buildext: Add "installcheck" action for use with autopkgtest.
* pg_buildext: Support $action-$version when the loop is contained in the
calling script. (Mostly useful for installcheck-x.y.)
* postgresql-server-dev-all: Add "make" to depends because pg_buildext is
mostly useless without it; extensions using autopkgtest would otherwise
need to include it in their debian/tests/control files.
* pgxs_debian_control.mk: Add "clean: debian/control" and
".PHONY: debian/control".
* pg_virtualenv: Fix exit code shown with -s.
* pg_createcluster, pg_virtualenv: -o will set postgresql.conf parameters.
* postgresql-common: In /usr/share/postgresql-common/pgdg/,
install apt.postgresql.org.sh to enable activating the pgdg repository.
[ Martin Pitt ]
* testsuite, pg_virtualenv: Don't fail if ifconfig is not installed. We
don't require it as a dependency, and this breaks e. g. autopkgtests in
minimal environments.
* t/150_tsearch_stemming.t: Add tests for stemming/searching with non-ASCII
characters. (See #689997)
* debian/postgresql-common.triggers: Also trigger on
/usr/share/postgresql/, so that installation of new server versions builds
the corresponding dictionaries.
* init.d-functions, start(): Update SELinux label of /run/postgresql if
restorecon is installed. Thanks Martin Lang! (Closes: #737661)
-- Christoph Berg <christoph.berg@credativ.de> Thu, 06 Feb 2014 15:21:00 +0100
postgresql-common (152) unstable; urgency=low
[ Martin Pitt ]
* debian/backport-ppa: Drop oneiric/quantal for -9.2, only keep
lucid/precise.
* Drop support for obsolete oom_adj, all kernels in all supported
Debian/Ubuntu releases support oom_score_adj. (See #646245)
* debian/README.Debian: Fix commands to get a postgres user shell.
* Change all "su" invocations to system user to specify an explicit shell,
to fix breakage after latest base-passwd 3.5.30 (which changed system
users to have no shell).
* Bump Standards-Version to 3.9.5 (no changes necessary).
[ Christoph Berg ]
* pg_virtualenv: Fix program name in manpage.
* pg_createcluster: --start-conf should override the value from
createcluster.conf.
* testsuite: Also mount a tmpfs on /etc/postgresql-common.
-- Martin Pitt <mpitt@debian.org> Thu, 09 Jan 2014 10:56:12 +0100
postgresql-common (151) unstable; urgency=low
* pg_createcluster: Create /var/run/postgresql when missing.
* pg_virtualenv: Set PG_CONFIG in single version mode.
* pg_wrapper: Always use the latest available version of "pg_isready"
instead of the target cluster's. pg_isready appeared only in 9.3, but is
usable with older versions as well. Suggested by Peter Eisentraut.
(Closes: #728599)
-- Christoph Berg <myon@debian.org> Thu, 05 Dec 2013 16:32:51 +0100
postgresql-common (150) unstable; urgency=low
[ Christoph Berg ]
* Create the postgres group when missing, and add the postgres user to it.
Could happen when the postgres user was created manually.
[ Martin Pitt ]
* debian/supported-versions: Welcome, Ubuntu 14.04! Support 9.3 there.
-- Martin Pitt <mpitt@debian.org> Mon, 21 Oct 2013 22:08:20 +0200
postgresql-common (149) unstable; urgency=low
* debian/supported-versions: Set default version to 9.3. Drop 9.2 from
wheezy-backports.
* /etc/apt/apt.conf.d/01autoremove-postgresql: Mark ^postgresql- as
NeverAutoRemove, so upgrading the "postgresql" meta package doesn't
automatically remove access to the old clusters. (Closes: #714725)
* pg_wrapper: Print a more informative error message when program to execute
was not found in /usr/lib/postgresql.
* debian/postgresql-client-common.links: Wrap pg_isready and pg_receivexlog.
-- Christoph Berg <myon@debian.org> Mon, 09 Sep 2013 14:15:18 +0200
postgresql-common (148) unstable; urgency=low
[ Christoph Berg ]
* debian/supported-versions:
+ Interface change: The *last* version returned here is the "default" one.
+ Wheezy uses "7" in /etc/os-release.
+ Add 9.3 for pgdg (default on testing/unstable).
* debian/rules:
+ Set FLAVOR variable for the type of build we are doing. Set
PG_SUPPORTED_VERSIONS=$FLAVOR for debian/supported-versions so we don't
pick up configuration from the build environment.
+ Pick the default version from the last line of
`debian/supported-versions` instead of sorting the output.
* debian/postgresql-common.config: Sort versions to determine the latest.
* pg_buildext: Support "X.Y+" and "all" in debian/pgversions so packages do
not need to hardcode the versions they support, as that's usually not
necessary.
* pgxs_debian_control.mk: Drop the previously redundant grep check on
debian/pgversions which would now break "X.Y+".
* t: Move $delay to TestLib.pm and increase to 500ms.
* t/005_PgCommon.t: Use twice the delay for waiting for the first nc child.
[ Martin Pitt ]
* debian/postgresql-common.postinst: Don't restart servers in dict update
trigger. (Closes: #719282)
* debian/README.Debian: Update examples for -9.1 and -9.3.
-- Martin Pitt <mpitt@debian.org> Tue, 27 Aug 2013 11:07:48 +0200
postgresql-common (147) unstable; urgency=low
* Bump "really142" to "really146" to fix an error on apt.postgresql.org.
-- Christoph Berg <myon@debian.org> Thu, 18 Jul 2013 09:11:38 +0200
postgresql-common (146) unstable; urgency=low
[ Christoph Berg ]
* debian/supported-versions: Use "7.*" to recognize wheezy; point releases
now increment the second version number component. (Closes: #712586)
* pg_virtualenv:
+ On error, show tail of server log file.
+ When no command is given, open a shell.
* pg_createcluster: Add --createclusterconf and --environment options.
* pg_ctlcluster: Create stats_temp_directory when missing.
* pg_ctlcluster: You must run this program as the cluster owner ... or root.
* postgresql-common: Demote dependency on logrotate to recommends.
(Closes: #714982).
[ Peter Eisentraut ]
* PgCommon.pm, pg_createcluster, pg_dropcluster: Don't call external
programs with full path where not necessary.
-- Christoph Berg <myon@debian.org> Tue, 16 Jul 2013 16:11:35 +0200
postgresql-common (145) unstable; urgency=low
[ Christoph Berg ]
* pg_ctlcluster: Use "install" instead of File::Path to create
unix_socket_directory. (Introduced in 141, Closes: #710093)
[ Martin Pitt ]
* debian/maintscripts-functions, configure_cluster(): Do not trust the
locale from the environment, as programs like ssh and sudo propagate
remote and user locale by default. Instead, only use the locale settings
from /etc/environment and /etc/default/locale, to prevent trying to
configure the default cluster with a nonexisting or hard to predict
locale. (LP: #969462, also see Debian #700271)
-- Christoph Berg <myon@debian.org> Mon, 10 Jun 2013 17:01:01 +0200
postgresql-common (144) unstable; urgency=low
* testsuite: Allow overriding the list of versions to test (-v).
* 040_upgrade: Add a test case for #688960 ("OLD used in query that is not
in a rule").
* pg_upgradecluster: Add --quote-all-identifiers to the pg_dump(all)
invocations so pg_dump-style upgrades do not fail when keywords get
un-reserved. (Closes: #688960; the pg_upgrade part of this will be fixed
in PostgreSQL upstream.)
* pg_ctlcluster: Add --mode shutdown option.
* pg_virtualenv: Allow running as non-root user.
-- Christoph Berg <myon@debian.org> Fri, 31 May 2013 21:37:47 -0700
postgresql-common (143) unstable; urgency=low
* debian/supported-versions: Don't explicitly support 9.3 for
testing/unstable yet, it is still in experimental. (Closes: #707675)
* debian/rules: Hack the version number of the metapackages to be
9.3+142really9.1-..., so that they are bigger than the previous botched
versions. This needs to stay until 9.3 actually goes into unstable.
-- Martin Pitt <mpitt@debian.org> Fri, 10 May 2013 17:53:49 +0200
postgresql-common (142) unstable; urgency=low
[ Christoph Berg ]
* Make all scripts honor PGSYSCONFDIR (defaulting to
/etc/postgresql-common).
* The default behavior of pg_createcluster can be configured in
/etc/postgresql-common/createcluster.conf. This also allows to disable the
creation of "main" clusters when postgresql server packages are installed,
and to set parameters in the new postgresql.conf.
* pg_createcluster: Move setting of log_line_prefix to createcluster.conf.
* debian/postgresql-common.postgresql.init: Do not die of one cluster fails
to start. (Closes: #699911)
* pg_checksystem: Suppress error message for unavailable filesystems.
(Closes: #705219)
* pg_upgradecluster: Use a distinct name (pg_hba.conf.pg_upgradecluster) for
the pg_hba.conf backup, and handle the case where this file already exists
gracefully.
* pg_upgradecluster: On upgrades to 9.3, rename unix_socket_directory to
unix_socket_directories.
* pg_upgradecluster, t/043_upgrade_ssl_cert.t: Copy server.crt and friends
in the data directory on upgrade. (Closes: #698958)
* pg_ctlcluster: Set LANG so non-ascii chars in the server log are not
replaced by '?'. Thanks to Adrian Vondendriesch for help debugging this.
(Closes: #671915)
[ Martin Pitt ]
* debian/supported-versions: Add 9.3 for testing/unstable.
* debian/supported-versions: Add Ubuntu 13.10.
* Bump Standards-Versio to 3.9.4 (no changes necessary).
* pg_upgradecluster: For upgrades to 9.3, migrate "replication_timeout" to
"wal_sender_timeout".
* t/060_obsolete_confparams.t: Add full 9.2 configuration, to test 9.2 → 9.3
upgrades.
-- Martin Pitt <mpitt@debian.org> Tue, 07 May 2013 11:11:58 +0200
postgresql-common (141) experimental; urgency=low
[ Christoph Berg ]
* debian/maintscripts-functions: Fix configure_client_version to call
_link_manpages correctly, spotted by Kris Shannon. (Closes: #701602)
* debian/postgresql-common.sysctl: Note that the file is Linux-specifc and
do some rewording of the comments.
* debian/supported-versions:
+ Deprecate 8.3 for pgdg builds.
+ Handle missing os-release and lsb_release gracefully, just print a
warning. (Affects squeeze systems, Introduced by the fix for #697182).
* pg_buildext: Deprecate <srcdir> parameter. The docs do not mention it
anymore, but the script will still accept it.
* pg_createcluster, pg_upgradecluster: For 9.2 and higher, use the new
ssl_ca_file option instead of creating a root.crt symlink in the data
directory. (Related to the fix for #680162 below.)
* pg_createcluster: If /etc/postgresql-common/root.crl is present, symlink
it (<= 9.1), or set ssl_crl_file (>= 9.2).
* pg_ctlcluster: Create (first) unix_socket_directory if missing.
* pg_ctlcluster: Document start.conf by pointing at pg_createcluster(8).
* pg_lsclusters: Make output column widths dynamically adjust to contents;
shorten "Version" in header to "Ver".
* pg_upgradecluster: Get cluster encoding before shutting down the cluster
so we don't need to restart it in pg_upgrade mode; temporarily start the
cluster if needed.
* postgresql-client-common: For apt.postgresql.org builds (with "pgdg" in
the version number), depend on pgdg-keyring.
* Add a "apt.postgresql.org.sh" script to add that archive to sources.list.
[ Martin Pitt ]
* debian/backport-ppa: Stop building raring packages. The PPA is declared
deprecated now, moving to apt.postgresql.org.
* pg_createcluster: Drop "Moving configuration file.." message as it's not
all that interesting and we are going to add more status output.
* pg_createcluster: Print configuration and data directory on separate
lines, and also show the current locale that the cluster will use.
(Closes: #700271)
* pg_updatedicts: Cleanup tsearch data files which do not have a
corresponding hunspell or myspell dictionary installed any more.
(Closes: #689996)
* Adjust upgrade tests according to the changed pg_lscluster formatting.
[ Peter Eisentraut ]
* Add support for pg_upgrade: (Closes: #682938)
- pg_upgradecluster: Add options to select pg_upgrade instead of
dump/restore, and call pg_upgrade when selected.
- t/040_upgrade.t: Test all upgrade methods.
-- Christoph Berg <myon@debian.org> Wed, 10 Apr 2013 16:25:06 +0200
postgresql-common (140) experimental; urgency=low
[ Martin Pitt ]
* t/001_packages.t: Also check that -contrib is installed.
* debian/backport-ppa: Backport -common for Ubuntu 12.10.
* PgCommon.pm: Recognize "include_if_exists" directive. (LP: #1098986)
* pg_ctlcluster: Recreate a missing /var/log/postgresql/ if needed.
(LP: #1009989)
* debian/postgresql-client-common.links: Wrap pgbench with pg_wrapper.
(LP: #1068194)
[ Christoph Berg ]
* testsuite: The default list of umasks to test (022 077) can be overridden
by setting the environment variable PG_UMASKS.
* t/003_package_checks.t: Ensure psql is linked against libedit.
* t/005_PgCommon.t: Increase sleep time after netcat launch to 200ms.
* t/020_create_sql_remove.t: Test process title update.
* pg_createcluster: Allow passing of initdb arguments on the command line.
If --auth parameters are passed, skip updating the generated pg_hba.conf
file.
* pg_virtualenv: Allow passing initdb arguments to pg_createcluster.
* pg_upgradecluster: Print a helpful message when invoked on the target
version. Problem seen on #postgresql.
* t/030_errors.t: Adjust testsuite for this.
* debian/supported-versions: Handle unset variables from /etc/os-release
gracefully. Spotted by x4rlos on #postgresql.
* pg_buildext: Set USE_PGXS=1, and srcdir (needed by plr).
-- Christoph Berg <myon@debian.org> Thu, 31 Jan 2013 10:36:41 +0100
postgresql-common (139) experimental; urgency=low
[ Christoph Berg ]
* pg_virtualenv: New program to create throw-away clusters for running
regression tests.
* testsuite: unshare needs "--" or else it eats our options.
* testsuite: Require netcat-openbsd to be installed.
* testsuite: Move locale generation here from debian/tests/system, also
generate en_US.utf8 locale; unset LC_ALL.
* Drop debian/tests, moved to the postgresql-* server packages.
* testsute 005_PgCommon: Do the ipv4 tests before the ipv6 ones; skip
the ipv6 for perl <= 5.10 (i.e. on squeeze and lucid).
* PgCommon.pm, pg_ctlcluster, pg_createcluster, t/030_errors.t: 9.3 renames
unix_socket_directory to unix_socket_directories.
* pg_wrapper: Document that PGHOST overrides PGCLUSTER. (Closes: #697291)
* pg_wrapper: Skip cluster selection if --host is given on the command line.
(Closes: #637017) While we are at it, improve --port parsing, too.
* t/010_defaultport_cluster.t: Add test cases for the above pg_wrapper
changes.
* t/040_upgrade.t: dup2 psql stderr to suppress warning 'could not change
directory to "/tmp/pgtest'.
* postgresql-client-common: Add Depends: netbase for getprotobyname() in
PgCommon.pm. (Closes: #697377)
[ Martin Pitt ]
* debian/supported-versions: Read /etc/os-release if present, and fall back
to lsb-release. Exit with a proper error message if neither is present.
This gets rid of the (currently undeclared) strict dependency on
lsb-release. (Closes: #697182)
* debian/README.Debian: Update versions to 8.4/9.1, as current for Squeeze
and Wheezy. (Closes: #697239)
-- Christoph Berg <myon@debian.org> Sun, 06 Jan 2013 10:24:49 +0100
postgresql-common (138) experimental; urgency=low
[ Christoph Berg ]
* testsuite: start localhost interface which is down after unshare -n.
[ Martin Pitt ]
* testsuite: Stop currently running clusters, just as the script has done
until 136.
* testsuite: Use a more elegant way of re-execing ourselves through unshare.
-- Martin Pitt <mpitt@debian.org> Sun, 16 Dec 2012 18:57:12 +0100
postgresql-common (137) experimental; urgency=low
[ Martin Pitt ]
* debian/backport-ppa: Disable xz compression for lucid.
* debian/backport-ppa: Disable libraries for -9.1/natty as well, built by
9.2 now.
* debian/backport-ppa: Ensure that backport PPA versions are always smaller
than the versions in -updates.
* pg_wrapper: Always use the latest available client version of "psql"
instead of the target cluster's. psql is backwards compatible to all major
versions that we support in any release. Update tests to use "createdb"
instead of "psql" for --version tests, and add a new test for the psql
special case to t/020_create_sql_remove.t. (Closes: #639108)
* debian/postgresql-common.triggers: Also watch for changes in
/usr/share/hunspell/; pg_updatedicts handles these as well.
(Closes: #689994)
* debian/tests/control: Add netcat-openbsd test dependency for the
next_free_port() tests added below.
* debian/backport-ppa: Drop natty (EOL), add raring for 9.2.
* debian/supported-versions: Add Ubuntu 13.04.
* testsuite: Run with overlaid tmpfses on the postgresql /etc/ and /var
directories in an unshared namespace. This is more robust against
protecting existing clusters, always cleans up after itself properly, and
also speeds up testing.
* t/031_errors_disk_full.t: Drop check for existence of unshare, as
./testsuite now unconditionally requires it.
* debian/postgresql-common.postinst: Only chown /var/lib/postgresql if it
does not already have the correct ownership. This avoids failures when the
directory is NFS mounted. Thanks Hugh Davenport! (Closes: #693958)
[ Christoph Berg ]
* testsuite: Move 'disk full' tests from 030_errors to new file
031_errors_disk_full.
* testsuite: Note that Test::More 0.87 is required for done_testing() in
170_extensions.
* testsuite 005_PgCommon: Add next_free_port tests (using /bin/nc).
* supported-versions: Make output configurable via $PG_SUPPORTED_VERSIONS,
~/.pg_supported_versions, and /etc/postgresql-common/supported_versions.
(Closes: #646700)
* supported-versions: Add debian-backports and pgdg sections.
(Closes: #650680)
* For bpo and pgdg builds (determined by the version number), create
/etc/postgresql-common/supported_versions with appropriate content.
* Replace version string comparisions in perl scripts to use numerical
operators, so things will continue to work when PostgreSQL 10.0 is
released.
* debian/rules: Use sort -n for sorting supported-versions output.
* debian/rules: Use apt-cache policy instead of apt-cache show to determine
the "candidate" logrotate version.
* testsuite 020_create_sql_remove: Fix plperl test to work with 8.2.
* testsuite 085_pg_ctl.conf: Skip for 8.2.
-- Martin Pitt <mpitt@debian.org> Sat, 15 Dec 2012 21:32:30 +0100
postgresql-common (136) experimental; urgency=low
[ Martin Pitt ]
* debian/backport-ppa: Do first upload with orig tarball, subsequent ones
without.
* debian/backport-ppa: Do not run lintian.
* debian/backport-ppa: When building postgresql-9.1 for lucid, drop the
library packages as they collide with the ones built from postgresql-9.2.
* debian/backport-ppa: Build 9.2 for Quantal and Natty.
* debian/supported-versions: Add Ubuntu 12.10.
* t/030_errors.t: For the "fails on insufficient disk space test", move from
setting up a loop device to a tmpfs in unshare -m. This is more robust for
cleaning up after itself, and faster as well.
* pg_ctlcluster: Fix log output to stderr if the log file started out being
empty. Add test case to t/030_errors.t.
* debian/maintscripts-functions: Only try to remove the tsearch_data
directory if it already exists. Thanks Peter Palfrader. (Closes: #688105)
[ Christoph Berg ]
* pg_buildext: Fix supported-versions not to die when the last version is
not supported.
* testsuite: Add getopt handling, and make the list of umasks to loop
through configurable (-u).
* t/001_packages.t: Print list of installed versions for information.
* As debian/supported-versions is also used at build-time, add a
build-dependency on lsb-release for lsb_release to be available. Also,
print supported versions from debian/rules for easier debugging.
-- Martin Pitt <mpitt@debian.org> Thu, 20 Sep 2012 09:04:26 +0200
postgresql-common (135) experimental; urgency=low
[ Martin Pitt ]
* pg_createcluster: For 9.2 and higher, use the new ssl_{cert,key}_file
options instead of creating symlinks in the data directory.
(Closes: #680162)
* pg_upgradecluster: Set above options to the old cluster's SSL cert/key
symlink destinations, if they exist.
* debian/maintscripts-functions: Configure alternatives for manpages in
-contrib. This will only take effect after (re)installing
postgresql-contrib-9.2. (Closes: #680571)
* debian/postgresql-common.postgresql.init: Fix "status" output to be more
useful and legible, and exit with code 3 if any cluster is down.
(Closes: #656363)
* debian/postgresql-common.postgresql.init: Show a warning message if no
clusters exist. (Closes: #677604)
* t/041_upgrade_custompaths.t: Run test with a cluster that is down, to
verify that pg_upgradecluster works for non-running clusters, too.
* pg_upgradecluster: Move encoding detection after restarting the cluster
with restricted connections, and drop the check that the cluster is
running. With this, pg_upgradecluster also works for clusters which are
not running. (Closes: #681344)
[ Peter Eisentraut ]
* pg_createcluster: For PostgreSQL >= 9.2, use initdb options to set the
default authentication methods, instead of modifying the configuration
file directly. (Closes: #685043)
-- Martin Pitt <mpitt@debian.org> Fri, 17 Aug 2012 15:28:35 +0200
postgresql-common (134) unstable; urgency=low
* debian/backport-ppa: Fix syntax error.
* PgCommon.pm: Drop unconditional import of Socket::IN6ADDR_ANY and only do
the IPv6 check if it is available. This keeps this version backwards
compatible with Debian/Ubuntu releases with older Perl versions.
-- Martin Pitt <mpitt@debian.org> Thu, 26 Jul 2012 21:29:48 +0200
postgresql-common (133) unstable; urgency=low
[ Christoph Berg ]
* Add .bzrignore file.
* PgCommon.pm: Check IPv4 and IPv6 in next_free_port(). (Closes: #678858)
[ Peter Eisentraut ]
* debian/control: Add myself to Uploaders.
* debian/postgresql-common.lintian-overrides: Remove unused
binary-without-manpage overrides (files were moved to
postgresql-client-common package).
* debian/rules: Catch errors in for loops.
* pg_wrapper: Avoid Perl warnings if psql is linked against libreadline
instead of libedit, even though that is not standard anymore.
* testsuite: Reset core limit for pg_ctl tests.
* testsuite: Allow running individual tests by passing them on the
command line.
[ Martin Pitt ]
* pg_ctlcluster: Do not remove the PID file after SIGKILLing the
postmaster in the "last-ditch effort to shut down" in --force mode. This
is a potentially dangerous thing to do when trying to start a second
postmaster in parallel while the first one is still being shut down.
(see http://archives.postgresql.org/pgsql-general/2012-07/msg00475.php)
-- Martin Pitt <mpitt@debian.org> Thu, 26 Jul 2012 13:20:10 +0200
postgresql-common (132) unstable; urgency=low
[ Martin Pitt ]
* debian/control: Add XS-Testsuite: header, as per current DEP-8.
* debian/tests/control: Drop undefined "no-build-needed" feature.
[ Christoph Berg ]
* Recognize "online,recovery" clusters in init script. (Closes: #678936)
Spotted by Gilbert Roulot.
-- Christoph Berg <myon@debian.org> Sat, 30 Jun 2012 21:31:49 +0200
postgresql-common (131) unstable; urgency=low
[ Martin Pitt ]
* debian/backport-ppa: Adjust for lucid, build -9.2 for oneiric as well.
* debian/control: Move bzr branches to alioth, so that other members of
pkg-postgresql can commit. Update Vcs-* tags.
* debian/control: Set Maintainer: to pkg-postgresql group, and move myself
to Uploaders:.
* debian/README.Devel: Update for moved packaging branches.
* debian/backport-ppa: Disable dpkg 1.16.2 build dependency for natty as
well.
* debian/tests/control: Drop "breaks-computer" restriction. While DEP-8
mentions it, autopkgtest does not understand it yet and skips the test.
* debian/tests/system: Run testsuite under en_US.UTF-8, as autopkgtests sets
it to C by default.
* t/180_ecpg.t: Ensure that test.pgc is readable for nobody.
* debian/tests/system: Run the packaged tests instead of the ones in the
local build tree.
* debian/tests/system: Unset $TMPDIR so that 'postgres' and 'nobody' do not
fall over the autopkgtest provided $TMPDIR which is not world writable.
* t/030_errors.t: Fix nonzero exit code which caused stderr output.
[ Christoph Berg ]
* pg_buildext: Also set DESTDIR and VPATH for the configure, build and clean
targets.
* Add myself to Uploaders.
-- Martin Pitt <mpitt@debian.org> Tue, 19 Jun 2012 19:26:12 +0200
postgresql-common (130) unstable; urgency=low
[ Christoph Berg ]
* pg_ctlcluster: Add 'promote' action.
* pg_updatedicts: Fix a typo.
* pg_lsclusters, PgCommon.pm: Show "recovery" in status column.
* pg_createcluster: Fix a doc typo.
[ Martin Pitt ]
* Add support for 9.2:
- pg_createcluster: Add 9.2 configuration method.
- t/060_obsolete_confparams.t: Add full configuration for 9.1 to test the
configuration update to 9.2.
- pg_upgradecluster: On upgrades to 9.2, deprecate the 'wal_sender_delay',
'silent_mode', and 'custom_variable_classes' postgresql.conf options, as
they do not exist any more.
- pg_upgradecluster: In the tablespace test, don't query the "spclocation"
column, which does not exist any more in 9.2. Just check whether we have
any table space other than the two default ones.
- t/050_encodings.t: Adjust expected "invalid UTF-8" error to also match
the 9.2 format.
- t/170_extensions.t: Adjust the "hstore" exfail to only apply to 9.1.
9.2's version works without a warning.
* debian/backport-ppa: Update Ubuntu releases.
-- Martin Pitt <mpitt@debian.org> Tue, 15 May 2012 13:44:17 +0200
postgresql-common (129) unstable; urgency=low
* pg_ctlcluster: Fix wrong configuration file name in documentation, thanks
Peter Eisentraut. (Closes: #653098)
* t/050_encodings.t: Add alternative Russian translation for expected error
message, to match against what 9.1.3 has.
* debian/copyright: Update to official 1.0 format.
* debian/control: Bump Standards-Version to 3.9.3.
-- Martin Pitt <mpitt@debian.org> Tue, 06 Mar 2012 12:00:12 +0100
postgresql-common (128) unstable; urgency=low
* debian/backport-ppa: Make this work for postgresql-X.Y packages, too.
* debian/postgresql-client-common.links: Wrap pg_basebackup.
(Closes: #647224)
* pg_buildext: Fix wrong exit code if "pgversions" does not exist.
(Closes: #646698)
* pgxs_debian_control.mk: Some robustifications: Write to temporary control
file first and rename only after everything succeeds, otherwise delete it.
Catch errors from pg_buildext and abort the build. (Closes: #646702)
* pg_buildext, pg_buildext.pod: If second parameter (srcdir) is not
specified, assume the current directory. (Closes: #646712, part 1)
* pgxs_debian_control.mk: Drop $(SRCDIR) requirement so that this doesn't
need to be set separately. Just use $(CURDIR). (Closes: #646712, part 2)
-- Martin Pitt <mpitt@debian.org> Wed, 21 Dec 2011 12:04:01 +0100
postgresql-common (127) unstable; urgency=low
* debian/backport-ppa: Add oneiric.
* logrotate 3.8 landed in unstable, rebuild against this to get a proper
logrotate config snippet and adjust the depends/breaks. (See Debian
#640493)
* debian/rules: Fix logrotate dependency generation logic to only consider
the most recent logrotate version.
-- Martin Pitt <mpitt@debian.org> Tue, 06 Dec 2011 06:18:32 +0100
postgresql-common (126) unstable; urgency=low
* pg_ctlcluster: Prefer setting oom_score_adj over oom_adj, as the latter is
deprecated. (Closes: #646096)
* Add debian/tests/{control,system}: DEP-8/autopkgtest control files for
running the integration tests.
* t/020_create_sql_remove.t: Set stdin for forked psql process, so that the
test suite run does not need a defined stdin.
* debian/control: Clean up metapackage descriptions. (Closes: #649400)
-- Martin Pitt <mpitt@debian.org> Fri, 25 Nov 2011 11:20:29 +0100
postgresql-common (125) unstable; urgency=low
* Add debian/backport-ppa: Script to generate and upload backport packages
to my Ubuntu PPA. Only for personal use.
* Add t/160_alternate_confroot.t: Test creation, operation, upgrading, and
removal of clusters as user nobody using $PG_CLUSTER_CONF_ROOT. This
reproduces LP#835630 and other bugs.
* PgCommon.pm: If $PG_CLUSTER_CONF_ROOT is set, untaint it.
* pg_upgradecluster: Don't hardcode /etc/postgresql/, use
$PgCommon::confroot to respect $PG_CLUSTER_CONF_ROOT. (LP: #835630)
* pg_upgradecluster: Add --logfile option to specify a custom log file for
the upgraded cluster. Necessary if you want to run this on
per-user clusters and can't write into /var/log/postgresql/.
* pg_ctlcluster: When starting as root for >= 9.1, adjust the OOM killer
protection to -16, so that the postmaster does not get OOM-killed so
easily (as it appears to claim all the shared memory). 9.1.1-3 and later
resets oomadj of child processes to 0, so that the client backends can
still get OOM-killed. Add tests to t/020_create_sql_remove.t.
(LP: #854590)
* debian/control: Add Breaks: to postgresql-9.1 versios before 9.1.1-3, as
they do not reset oomadj for child processes. This is a precaution to
avoid running all the client backends with -16 as well.
* Add t/170_extensions.t: Check that all shipped extensions install and
remove.
* Add t/180_ecpg.t: Check that ecpg works. In t/001_packages.t, check that
libecpg-dev is installed.
-- Martin Pitt <mpitt@debian.org> Thu, 20 Oct 2011 12:17:30 +0200
postgresql-common (124) unstable; urgency=medium
* Keeping urgency medium, as 123 did not make it into testing yet.
* PgCommon.pm, cluster_info(): Use /bin/ps instead of reading /proc/*/comm,
the latter was reported to not work on some systems.
* pg_ctlcluster: Use PgCommon::check_pidfile_running and drop duplicated
code.
* pg_wrapper: The previous multiarch globbing was wrong, as it looked for
the architecture in uname() (which doesn't work on i386, where uname says
i686). Now get the multiarch library path from whereever psql expects
libedit.so to be, so that this even works if you install postgresql-client
for a foreign architecture.
-- Martin Pitt <mpitt@debian.org> Sat, 08 Oct 2011 11:48:46 +0200
postgresql-common (123) unstable; urgency=medium
* Urgency medium, as bug 644078 slipped into testing, and is quite a nasty
regression for people that it affects.
* t/001_packages.t: Check that the -plpython3 package is installed for
>= 9.1.
* t/020_create_sql_remove.t: Check that the "plpython3u" language works.
* t/020_create_sql_remove.t: More thoroughly check PL/Perl and PL/PerlU.
* PgCommon.pm, cluster_info(): If we have a PID file and can read it (i. e.
as root), prefer doing this over probing the port. This delivers the
correct result with e. g. "pg_ctlcluster restart" when the port got
changed in the configuration file. (Closes: #643850)
* pg_wrapper: Drop dpkg-architecture call; we don't want to introduce a
dependency to dpkg-dev, and DEB_HOST_MULTIARCH also isn't available in
backports. Just extend the libreadline.so globbing to cover multiarch
paths as well. (Closes: #644078)
* t/070_non_postgres_clusters.t: Test pg_upgradecluster. This reproduces
#644477.
* pg_upgradecluster: Supply socket argument for the tablespace test. Thanks
to Piotr Szydełko for the patch! (Closes: #644477)
-- Martin Pitt <mpitt@debian.org> Fri, 07 Oct 2011 14:10:27 +0200
postgresql-common (122) unstable; urgency=low
* debian/control: Fix duplicate package description. (Closes: #639562)
* debian/control: Add lsb-release dependency to -server-dev-all, as the
pg_buildext tool needs it.
* pg_wrapper: Find libreadline in multiarch directory, too.
(Closes: #640520)
* debian/rules: logrotate 3.8.0 requires specifying the "su" option, which
is not backportable. Dynamically check the available logrotate version,
and add it if it is >= 3.8. Also dynamically generate a dependency or
breaks to logrorate 3.8+. (Closes: #640493)
* PgCommon.pm: Allow '@' characters in LC_CTYPE/LC_COLLATE values. Thanks to
Willi Mann for the patch. (Closes: #640031)
* pg_upgradecluster: Print message for running the upgrade.d scripts, thanks
Karsten Hilbert.
* t/040_upgrade.t: Add test case for a database with read only default
transactions. Reproduces #599085.
* pg_upgradecluster: Set superuser configuration value of
'default_transaction_read_only' to 'off' during the upgrade, so that
upgrading databases with read only default transactions actually works.
Thanks Karsten Hilbert for the suggestion. (Closes: #599085)
* t/040_upgrade.t, pg_upgradecluster: Consistently use upper case for SQL
keywords.
* Correct wrong bug reference in previous changelog.
-- Martin Pitt <mpitt@debian.org> Sun, 25 Sep 2011 21:38:20 +0200
postgresql-common (121) unstable; urgency=low
[ Martin Pitt ]
* debian/supported-versions: Switch Ubuntu 11.10 to 9.1 (LP: #833684) and
also preemtively add Ubuntu 12.04 (which will ship with 9.1, too).
* debian/control: Bump Standards-Version to 3.9.2, no changes necessary.
* debian/rules: Call dh_installinit with -r to avoid restarting on upgrade.
(Closes: #639140)
* debian/control: Wrap dependencies.
* debian/control, debian/rules: Convert from cdbs to dh, and bump
Standards-Version to 7.
* debian/control, debian/rules: Build the versionless metapackages from this
source instead of the current postgresql-X.Y source. This behaves better
with backports. Thanks to Christoph Berg for the suggestion.
* debian/postgresql-common.lintian-overrides: Don't complain about missing
manpage for pg_config, it's shipped by libpq-dev.
* debian/control: Update description of the metapackages to actually say
"metapackage" to quiesce lintian.
* Split POD of pg_buildext into pg_buildext.pod, and update debian/rules to
build the manpage from there. Fixes lintian "shell syntax failure"
error.
[ Peter Eisentraut ]
* pg_createcluster:
- Use "peer" instead of "ident" on local socket connections from 9.1 on.
- Apply pg_hba.conf adjustments to replication connections as well.
- (Closes: #639016)
-- Martin Pitt <mpitt@debian.org> Sat, 27 Aug 2011 14:01:11 +0200
postgresql-common (120) unstable; urgency=low
* PgCommon.pm, cluster_info(): Do not consider external_pid_file
configuration as valid if it is '(none)'. Fixes test suite regression in
version 119.
* debian/supported-versions: Switch to 9.1 as default and testing/unstable
supported version. This will also cause -server-dev-all to only pull in
-9.1.
* PgCommon.pm: Partially revert changes for #606336: postmaster does not
clean up the PID file when it stops, and it is not world readable, so only
its absence is a definitive result. If the PID file is present, do the
port probe to check if it is really running.
-- Martin Pitt <mpitt@debian.org> Tue, 23 Aug 2011 14:05:09 +0200
postgresql-common (119) unstable; urgency=low
[ Martin Pitt ]
* PgCommon.pm, set_conf_value(): Fix the case where a key exists first as a
commented value, and then uncommented. Add appropriate test cases to
t/005_PgCommon.t. (Closes: #539651)
* debian/postgresql-common.postgresql.init: Fix "status" command when some
clusters are down. (Closes: #635594)
* pg_upgradecluster: Only call pg_ctl with the -t option with old clusters
>= 8.4, as earlier versions do not yet support it. (Closes: #633801)
* debian/postgresql-common.postinst: Remove some obsolete transition
logic.
* architecture.html, cleanpg, debian/init.d-functions, pg_createcluster:
Remove obsolete references to per-version init scripts. (Closes: #636957)
* debian/maintscripts-functions: Remove our tsearch data symlinks on
removal. (Closes: #539611)
* PgCommon.pm: Make {read,set,disable,replace}_conf_value() case
independent for *.conf files, as per upstream specification. Add
appropriate test cases to t/005_PgCommon.t. (Closes: #618577)
* PgCommon.pm: Make {read,set,disable,replace}_conf_value() accept "key
value" lines without '=', as this is optional as per upstream
specification. Add appropriate test cases to t/005_PgCommon.t. Thanks
to Frederic Junod for the original patch suggestion. (Closes: #618583)
* PgCommon.pm, cluster_info(): If postgresql.conf defines an external PID
file, check its existence for determining if a cluster is running, instead
of poking the port. This is more efficient, and also gives correct results
for overlapping port numbers. Based on a patch from Jens Wilke, thanks!
(Closes: #606336)
* pg_buildext: Apply various improvements from Christoph Berg, thanks!
[ Peter Eisentraut ]
* pg_createcluster: Update comment alignment to match existing file better.
(Closes: #632702)
-- Martin Pitt <mpitt@debian.org> Mon, 08 Aug 2011 15:31:17 +0200
postgresql-common (118) unstable; urgency=low
* Update Catalan debconf translations, thanks Innocent De Marchi.
(Closes: #628370)
* t/050_encodings.t: Update \' escaping test case for 9.1, as this
finally has been deprecated.
* debian/control: Add p-server-dev-all dependency to p-common, so that
packages that build-dep on it get the pg_config wrapper.
-- Martin Pitt <mpitt@debian.org> Tue, 14 Jun 2011 14:52:08 +0200
postgresql-common (117) unstable; urgency=low
* Update Dutch debconf translations, thanks Vincent Zweije.
(Closes: #627520)
* Add Catalan debconf translations, thanks Innocent De Marchi.
(Closes: #628370)
* debian/control, debian/rules: Let -server-dev-all depend on all supported
-server-dev-X.Y packages. (Closes: #624749)
* Add pg_config wrapper: If postgresql-server-dev-* is installed, this calls
pg_config from the latest available one. Otherwise this falls back to
libpq-dev's version. This should fix a common confusion for people who
want to build e. g. 9.0 server-side extensions with a newer (like 9.1
beta) libpq-dev installed. In debian/postgresql-common.{preinst,postrm}:
Divert libpq-dev's /usr/bin/pg_config to pg_config.libpq-dev.
-- Martin Pitt <mpitt@debian.org> Sun, 29 May 2011 19:22:27 +0200
postgresql-common (116) unstable; urgency=low
* debian/supported-versions: Move Debian testing/unstable and Ubuntu 11.10
to 9.0.
* pg_upgradecluster: Revert to the previous encode()/decode() wrapping in
the "probin" fixup for cluster upgrades from versions < 9.0. Earlier
versions' replace() function indeed does work on bytea types, not strings,
so this broke upgrades to 8.4. (Closes: #627227)
* pg_upgradecluster: Drop all unversioned configuration option transitions,
which were still from the 7.4 → 8.0 days. These are obsolete, and
versions >= 96 only support clusters >= 8.1 anyway. In some cases they
actively break stuff, like inadvertently setting log_statement=all.
(Closes: #617493)
* t/060_obsolete_confparams.t: Fix remaining "{,log_}timezone=unknown"
example configuration files, to also fix upgrade tests for 8.4 → 9.1.
-- Martin Pitt <mpitt@debian.org> Thu, 19 May 2011 11:30:16 +0200
postgresql-common (115) unstable; urgency=low
* Add Danish debconf translations, thanks Joe Dalton. (Closes: #619057)
* debian/README.Devel: Modernize a bit.
* pg_upgradecluster: In the "probin" fixup, drop the wrapping in
encode()/decode(). This has been wrong all the time, as the "probin"
column already is of "text" datatype, and now breaks with 9.1.
* Add support for 9.1:
- Add 9.1 configuration method to pg_createcluster.
- cleanpg: Stop 9.1 clusters.
- t/040_upgrade.t: Don't call createlang for upgrades from 9.0 on, as
PL/pgsql is enabled there by default.
- t/050_encodings.t: Update for changed error message for invalid usage of
\' in 9.1.
- t/060_obsolete_confparams.t: Add full configuration for 9.0 to test the
configuration update to 9.1.
-- Martin Pitt <mpitt@debian.org> Wed, 11 May 2011 09:40:00 +0200
postgresql-common (114) unstable; urgency=low
* debian/supported-versions: Add Ubuntu 11.04. Drop versions which are newer
than the ones supported in the released versions, as backports are now
generally accepted by our .config scripts, but having those newer versions
confuses pg_buildext.
* debian/postgresql-common.config: Silence warning from --compare-versions
when being called through a trigger and $2 is not a version number.
This works around the underlying dpkg problem. (Closes: #608522)
* Add debian/postgresql-common.sysctl: sysctl.d/ template for changing
kernel.shmmax and kernel.shmall, which is very common with PostgreSQL.
Install it in debian/rules. Thanks to Peter Eisentraut for the suggestion!
(Closes: #607946)
* testsuite: Take new unified init script into account when stopping
existing clusters. Thanks Steve Beattie! (LP: #712200)
* pg_wrapper: If libreadline is installed, LD_PRELOAD this for "psql", to
avoid using the rather broken libedit. We need to build the postgresql-X.Y
packages against libedit for license reasons (#603599), but as libreadline
has a drop-in compatible ABI, this works around the licensing
restrictions. Thanks to Andreas Barth for working this out! Add a
recommends to libreadline6. (Closes: #608442, #607907, #607109, #611918)
-- Martin Pitt <mpitt@debian.org> Sun, 13 Feb 2011 22:28:33 +0100
postgresql-common (113) unstable; urgency=medium
* Urgency medium, as this is a straightforward bug fix for an important
upgrade bug.
* debian/supported-versions: Split testing/squeeze and unstable cases. 9.0
is not officially supported in Squeeze and testing, it's only available as
a backport. This will make the "obsolete version installed" debconf note
point to 8.4 in squeeze, not 9.0. (Closes: #604423)
-- Martin Pitt <mpitt@debian.org> Sat, 04 Dec 2010 15:04:40 +0100
postgresql-common (112) unstable; urgency=medium
* Urgency medium since this fixes an RC bug.
* debian/changelog: Fix changelog entry in version 111 for #597654: init
script priority was fixed to S19, not S29.
* pg_ctlcluster: Also pass additional pg_ctl arguments in "stop" and
"reload" mode.
* pg_ctlcluster: Pass correct exit code from pg_ctl in case of errors.
* PgCommon.pm, get_db_encoding(): Fix uninitialized variable if psql fails.
* t/040_upgrade.t: Check that pg_upgradecluster exits early and gracefully
if the old cluster does not stop (usually because there are still active
connections to it). This reproduces #509050.
* pg_upgradecluster: Move stopping of old cluster and disabling connections
to it much ealier, and properly fail without starting the upgrade.
(Closes: #509050)
* debian/postgresql-common.preinst: Remove obsolete init script from
postgresql-8.3 for upgrades from Lenny. It provides "postgresql" which is
also provided by our common init script, and insserv chokes on this. Our
common init script handles 8.3 as well and will just take over. Note that
this is a policy violation, but we can't clean up in -8.3 since that does
not exist any more in Squeeze. (Closes: #591924)
-- Martin Pitt <mpitt@debian.org> Sun, 21 Nov 2010 13:52:25 +0100
postgresql-common (111) unstable; urgency=high
* Urgency high since this fixes two RC bugs.
* t/030_errors.t: Check that pg_createcluster leaves the original one intact
if the cluster already exists, also when the original one is not running.
This reproduces #597097.
* pg_createcluster: Be more careful with cleaning up the created cluster if
an error occurs: Do not start the cleanup until we actually passed our
sanity checks and created files for the new cluster. Before, it would
erroneously remove an already existing cluster on a sanity check fail, if
that cluster happened to not be running at the time. (Closes: #597097)
* debian/supported-versions: Be more robust against lsb_release failing, e.
g. in the case where it is not fully configured yet. (Closes: #597561)
* debian/supported-versions: Drop check for /etc/debian_version if
lsb_release is not working/existing. Derivatives have debian_version as
well, and we don't actually evaluate it, so just print a meaningful error
message and go with the default versions.
* debian/rules: Put init script priority back to S19/K21 to match the
previous postgresql-8.4 init script. Fix the priorities on upgrade in
debian/postgresql-common.preinst. (Closes: #597654)
-- Martin Pitt <mpitt@debian.org> Wed, 22 Sep 2010 12:04:00 +0200
postgresql-common (110) unstable; urgency=low
[ Martin Pitt ]
* t/080_start.conf.t: Update for common init.d script.
* debian/rules: Drop installation of lintian overrides and let dh_lintian do
it for us. Adapt override file accordingly.
* debian/control: Drop unnecessary debconf dependency from -client-common.
* Bump Standards-Version to 3.9.1, no changes necessary.
* debian/postgresql-common.postgresql.init: Fix force-reload, thanks Pascal
Volk. (Closes: #591185)
* debian/rules: Stop man page build/clean being package dependent.
* pg_buildext: Remove bashishms and convert to plain /bin/sh.
[ Dimitri Fontaine ]
* Add new package postgresql-server-dev-all:
- "pg_buildext" tool for easy building of extension packages for multiple
server versions.
- pgxs_debian_control.mk debian/rules include for generating
debian/control.
-- Martin Pitt <mpitt@debian.org> Sun, 01 Aug 2010 16:50:41 +0200
postgresql-common (109) unstable; urgency=low
* pg_lsclusters: Fix "uninitialized value" warning when a cluster's data
directory is not set. This is a rather fatal problem anyway, but we can
present it in a nicer way. Thanks Christoph Berg! (Closes: #589014)
* Migrate to a common init script for all server versions, to avoid
providing the "postgresql" service in multiple packages (which causes
insserv to complain bitterly):
- debian/init.d-functions: Add function get_versions() which returns all
installed versions, but filters out the ones which have their own init
script. With that, we can run newer common versions with older server
packages.
- debian/maintscripts-functions: Add function stop_version() (to be called
from "prerm upgrade"), and start cluster in configure_version() if there
is no version specific init script.
- Add debian/postgresql-common.postgresql.init: Common init script for all
installed server versions.
- debian/rules: Install common init script.
- (Closes: #589524)
* Add debian/source/format: 3.0 (native).
* debian/control: Bump Standards-Version to 3.9.0 (no changes necessary).
-- Martin Pitt <mpitt@debian.org> Mon, 19 Jul 2010 23:20:13 +0200
postgresql-common (108) unstable; urgency=low
* debian/supported-versions: Drop 8.3 from squeeze/unstable. Add 9.0 to all
Debian/Ubuntu versions to support backports.
* debian/README.Debian: Talk about 8.3 and 8.4, since those are the versions
relevant to squeeze installs and upgrades.
* pg_upgradecluster POD: Describe allowed characters in upgrade script file
names.
* debian/supported-versions: Add Ubuntu 10.10. Welcome, Maverick Meerkat!
-- Martin Pitt <mpitt@debian.org> Wed, 02 Jun 2010 10:42:17 +0200
postgresql-common (107) unstable; urgency=low
[ Peter Eisentraut ]
* Add initial support for 9.0 (pre-release snapshots for now):
- cleanpg: Remove 9.0 clusters.
- pg_createcluster: Clone configure_8_4() as configure_9_0().
- pg_upgradecluster: Migrate obsolete/changed configuration parameters.
* pg_wrapper: Fix spelling.
* In maintainer scripts, instead of "#!/bin/sh -e" use a separate "set -e",
per lintian.
* debian/control: Bump Standards-Version to 3.8.4; no changes necessary.
[ Martin Pitt ]
* cleanpg: Do not remove the /var/log/postgresql/ directory itself, only its
contents, to avoid logcheck falling over.
* t/020_create_sql_remove.t: Do not consider $PG_GRANDPARENT_PID an unsafe
environment, it's set by 9.0 servers.
* t/060_obsolete_confparams.t: Add a full configuration for 8.4, so that
upgrades to 9.0 can be tested.
* t/052_upgrade_encodings.t: Specify 'C' locale when creating the ASCII
encoded test database for versions >= 8.4, otherwise we have a
locale/encoding mismatch.
* t/TestLib.pm: Abort tests on FAILURE=shell and the shell exits with
nonzero. This avoids endless followup error shells once it's clear that
the following ones are doomed anyway.
* PgCommon.pm: Add new function get_db_locales() which reads lc_ctype and
lc_locales for a particular database. This replaces the
get_cluster_locales() function for >= 8.4 server versions (which moved
from global to per-database locales).
* pg_upgradecluster: Use get_db_locales() instead of get_cluster_locales()
for upgrades from >= 8.4.
* pg_ctlcluster: Drop check for valid locales. We can only determine them
(using pg_controldata through get_cluster_locales()) for <= 8.3 clusters,
which are obsolete in sid/lenny. For >= 8.4 clusters, we need to start the
server to find out the locales, at which point the check is pointless.
* pg_upgradecluster: Run pg_restore with --disable-triggers when running in
--data-only mode. (Closes: #579768)
* t/020_create_sql_remove.t: We now assume that /var/log/postgresql/ always
exists, and is writable by the "postgres" user. Thus if we delete the log,
running "pg_ctlcluster start" should be able to recreate it. This fixes
the 020_create_sql_remove.t test failure in "umask 077" mode, and uncovers
some more inconsistencies wrt. log directory permissions.
* pg_createcluster, testsuite: Fix permissions of /var/log/postgresql/ if
this script creates it.
-- Martin Pitt <mpitt@debian.org> Mon, 03 May 2010 17:40:09 +0200
postgresql-common (106) unstable; urgency=low
* t/001_packages.t: Check for ".utf8" locale instead of ".UTF-8". This
seems to be the new canonical spelling now.
* t/TestLib.pm, check_clean(): Require that /var/log/postgresql/ still
exists. If we remove it entirely, current versions of logcheck complain
loudly. This was already fixed a while ago in squeeze, this will ensure it
stays so. (Closes: #576180)
* t/040_upgrade.t: Check upgrade of database and table ACL, an ALTER
DATABASE option, and correct upgrading of a custom pg_hba.conf. This
reproduces #543506.
* pg_upgradecluster: Rework logic to use "pg_dumpall -s" instead of
"pg_dumpall -g", to also catch ACLs, global settings, and the like. Drop
manual database creation and encoding special-cases, since those are being
taken care of by the -s commands already. (Closes: #543506, #562676)
* pg_upgradecluster: Re-enable connections after the upgrade is done, not in
between.
* t/120_pg_upgradecluster_scripts.t: Upgrade scripts should not create
tables in the "init" phase, since they will be overwritten during
dump/restore. Change the test case to move table changes into the "finish"
phase, and update documentation in pg_upgradecluster to point out this
potential problem.
* debian/init.d-functions, status(): More appropriate output formatting for
"status" init script commands. (Closes: #522679)
-- Martin Pitt <mpitt@debian.org> Mon, 05 Apr 2010 17:58:25 +0200
postgresql-common (105) unstable; urgency=low
* debian/postgresql-common.postinst: Fix upgrade failure if no tsearch
dictionaries exist. (Closes: #565966)
-- Martin Pitt <mpitt@debian.org> Wed, 20 Jan 2010 12:33:10 +0100
postgresql-common (104) unstable; urgency=low
* pg_updatedicts: Process dictionaries from /usr/share/hunspell, too.
* debian/control: Add Vcs-* fields.
* Add standard license headers to all programs, and update copyright.
* debian/copyright: Update to DEP-5 (Machine-readable debian/copyright), and
drop Oliver's copyright, since there is nothing left that was written by
him.
* pg_updatedicts: Do not create system_<locale>.{affix,dict} symlinks any
more, but use the actual names that upstream PostgreSQL looks for (without
system_ prefix). This allows us to drop the system_ lookup patch from
PostgreSQL. Update t/150_tsearch_stemming.t accordingly and remove the old
system_* symlinks on upgrade in debian/postgresql-common.postinst.
-- Martin Pitt <mpitt@debian.org> Tue, 19 Jan 2010 23:16:21 +0100
postgresql-common (103) unstable; urgency=low
* Move the lsb-release dependency of p-common to a recommends of
p-client-common. (Closes: #562642)
* Drop Oliver from Uploaders:, he has not been active any more for years.
* t/005_PgCommon.t: Add '.' to library search path, so that this prefers
testing PgCommon.pm from the source tree.
* t/005_PgCommon.t: Add test cases for {set,disable,replace}_conf_value().
* PgCommon.pm, replace_conf_value(): Do not append the new parameter if the
old is not found.
* PgCommon.pm, {set,disable,replace}_conf_value(): Intercept errors on
writing data (which could happen when running out of disk space). Write
into a new file and rename it in the end, instead of directly writing into
the original file. Thanks to Yann Dirson for the original patch.
(Closes: #549206)
* pg_createcluster: Change effective gid as well when setting the socket
directory, to avoid moving postgresql.conf's group to root (which would
happen with the previous change).
* Add t/042_upgrade_tablespaces.t: Test upgrading a cluster with
tablespaces. Since this is not currently supported (and hard to do in an
automated fashion due to the nature of tablespaces), just check that this
errors out with a sane message and does not do any damage.
* pg_upgradecluster: Add an early check for tablespaces. (Closes: #523574)
* pg_lsclusters: Fix undefined value if owneruid cannot be determined (which
can happen in special setups). Thanks to Daniel Pittman! (Closes: #541434)
* t/020_create_sql_remove.t: Verify permissions of the data and
configuration directories.
* pg_createcluster: Make /etc/postgresql/<version> and
/var/lib/postgresql/<version> owned by 'postgres', so that they can be
administrated with 'postgres' privileges. Update t/030_errors.t
accordingly. (LP: #236704, Closes: #525294)
* t/020_create_sql_remove.t: Check that a missing log file is recreated by
pg_ctlcluster (if it has enough permissions).
* pg_ctlcluster: Make re-creation of log file actually work. (LP: #391119,
#372476)
-- Martin Pitt <mpitt@debian.org> Wed, 30 Dec 2009 23:06:10 +0100
postgresql-common (102) unstable; urgency=low
* debian/postgresql-common.postinst: Create /var/log/postgresql/ if it does
not exist, before trying to chown/chmod it.
* t/001_packages.t: Check that -server-dev-* is installed (for
t/140_pg_config.t)
* t/001_packages.t: Check that the system default locale is an UTF-8 one.
* debian/supported-versions: Add Ubuntu 10.04.
* t/050_encodings.t: Disable Russian error message encoding test for now,
since Russian translations were dropped upstream (too incomplete).
-- Martin Pitt <mpitt@debian.org> Mon, 14 Dec 2009 19:05:19 +0100
postgresql-common (101) unstable; urgency=low
* debian/supported-versions: Only support 8.4 in Ubuntu 9.10. (LP: #403381)
* PgCommon.pm, change_ugid(): Fix taint error. (LP: #403693)
* Update Swedish debconf translations, thanks Martin Bagge!
(Closes: #539216)
* t/090_multicluster.t: Run psql error tests under LC_MESSAGES=C to not fail
under non-English locales.
* pg_upgradecluster: Do not try to migrate "stats_*" settings to
"track_counts" again if track_counts is already set. This led to disabling
autovacuum on a 8.3 → 8.4 migration. (Closes: #540351)
* pg_upgradecluster: Fix owner of pg_hba.conf after upgrade, to also work in
tight umask settings.
* debian/control: Bump Standards-Version to 3.8.3; no changes necessary.
* debian/control: Re-promote ssl-cert to Depends:. Dropping to recommends
does not buy anything and causes regressions. (Closes: #540982)
-- Martin Pitt <mpitt@debian.org> Sun, 06 Sep 2009 21:30:40 +0200
postgresql-common (100) unstable; urgency=low
* t/005_PgCommon.t: Add test case for read_conf_file() for configuration
files with an include directive. This reproduces #535428.
* PgCommon.pm, read_conf_file(): Correctly handle includes.
(Closes: #535428)
* PgCommon.pm: Check environment variable $PG_CLUSTER_CONF_ROOT for an
alternative configuration root (default: /etc/postgresql/). For
testing/development purposes you can change this to point to e. g. your
home directory, so that you can use the postgresql-common tools without
root privileges. Thanks to Aidan Van Dyk for the suggestion and patch!
* pg_createcluster: If calling as non-root user, default to effective user
id for owneruid instead of root. This makes using $PG_CLUSTER_CONF_ROOT
more convenient.
* pg_wrapper: Document PG_CLUSTER_CONF_ROOT in the POD.
* debian/control: Add missing ${misc:Depends}.
* debian/control: Bump Standards-Version to 3.8.2; no changes necessary.
-- Martin Pitt <mpitt@debian.org> Sun, 05 Jul 2009 22:57:11 +0200
postgresql-common (99) unstable; urgency=low
* Update Czech debconf translations, thanks Miroslav Kure.
(Closes: #534794)
* PgCommon.pm, cluster_info(): Do not set a default log file if the cluster
uses syslog for logging. Thanks Antti Merenluoto!
* debian/supported-versions: Add Ubuntu 9.10.
* t/030_errors.t: Fix "invalid pg_hba.conf" test for translated PostgreSQL
error message.
-- Martin Pitt <mpitt@debian.org> Sun, 28 Jun 2009 21:38:08 +0200
postgresql-common (98) unstable; urgency=low
* debian/control: Add missing lsb-release dependency (which now ships the
lsb_release program). (Closes: #520992)
* Add support for 8.4 (pre-release snapshots for now):
- debian/supported-versions: Support 8.4 everywhere (for backports).
- cleanpg: Remove 8.4 clusters.
- pg_createcluster: Clone configure_8_3() as configure_8_4().
- t/060_obsolete_confparams.t: Add complete set of 8.3 configuration
options, to test configuration migration to 8.4.
- PgCommon.pm, get_cluster_locales(): Bail out if calling on 8.4 or later
cluster (where locales are not associated to clusters any more).
PgCommon.pm, get_cluster_databases(): Ignore lines from psql -Atl which
just describe access permissions.
- pg_ctlcluster: Only do locales check for <= 8.3 for now.
- "ident sameuser" does not exist any more in 8.4, just use "ident" from
8.4 on.
- pg_createcluster: Do not symlink root.crt if
/etc/postgresql-common/root.crt does not have actual certificates (just
the help text), since 8.4 gets royally confused about the dummy one.
- pg_upgradecluster: Migrate obsolete/changed configuration parameters.
- t/020_create_sql_remove.t: Fix parsing of psql -Atl output for new 8.4
format.
- t/030_errors.t: 8.4 now fails on invalid pg_hba.conf, update
accordingly.
- t/050_encodings.t: Stop using pg_controldata for checking cluster
encoding. Just check psql -Atl.
* pg_upgradecluster: Don't call createdb/dropdb with -q; it got dropped in
8.4 and is not necessary any more with 8.3 either.
* t/010_defaultport_cluster.t: Ensure that we run the test with
LC_MESSAGES=C, so that it succeeds in non-English locales, too.
* t/051_inconsistent_encoding_upgrade.t: Disable if the oldest available
cluster is 8.3 or newer; the test is not relevant there, and will fail.
-- Martin Pitt <mpitt@debian.org> Thu, 09 Apr 2009 21:58:35 -0700
postgresql-common (97) unstable; urgency=low
* t/030_errors.t: Fix "no space left on device" test for non-English
locales.
* Add cleanpg: Script to remove all PostgreSQL related processes and files.
This isn't shipped in the package, just kept in the source as a developer
tool.
* debian/control: Update section to "database".
* debian/control: Bump Standards-Version to 3.8.1 (no changes required).
* t/TestLib.pm, deb_installed(): Properly close the dpkg file descriptor.
Thanks to Cyril Bouthors for pointing this out!
* t/001_packages.t: Check that postgres user is in the ssl-cert group.
Thanks to Cyril Bouthors for the patch!
* Added support for passing additional options to pg_ctl through a new
configuration file pg_ctl.conf, or as additional CLI arguments to
pg_ctlcluster. Add tests in t/085_pg_ctl.conf.t. Thanks to Cyril Bouthors
<cyril@bouthors.org> for the patch! (Closes: #492843)
* t/070_non_postgres_clusters.t: Update number of tests for new pg_ctl.conf
file.
* t/090_multicluster.t: Check that explicit port specification with
-p/--port/$PGPORT selects the right cluster in the case of multiple
existing clusters where none runs on the default port. This reproduces
#517527.
* pg_wrapper: Default to latest version if -p, --port, or $PGPORT is
specified, multiple clusters are available, and none is running on the
default port 5432. (Closes: #517527)
-- Martin Pitt <mpitt@debian.org> Mon, 23 Mar 2009 07:41:50 +0100
postgresql-common (96) unstable; urgency=low
* debian/supported-versions: Add "Debian 5.0" aka Lenny.
(Closes: #509144)
* debian/README.Debian: Document port handling, and point to
relevant manpages and tools. (Closes: #508977)
* debian/README.Debian: Fix "confident" typo. (Closes: #512648)
* Drop pg_autovacuum handling, which was only necessary for 7.4 (8.0
and above have internal autovacuuming). This was kept for Lenny to
allow Etch backports. This also gets rid of pg_maintenance and
/etc/cron.d/postgresql-common. (Closes: #425914, #481025)
* Add debian/postgresql-common.preinst: Remove obsolete conffiles
(cronjob and /etc/postgresql-common/autovacuum.conf) on upgrade.
* Drop support for pre-8.1 clusters, together with all hacks and
workarounds for those. Add Conflicts: to postgresql-{7.4,8.0}, to
ensure that this version isn't used with ancient servers any more.
* t/030_errors.t: Check that clusters on the same port can run side
by side if they are using different Unix socket directories and
different TCP addresses. This reproduces #514132.
* pg_ctlcluster: Replace overly harsh port conflict check (which
broke clusters on the same port, but different Unix/TCP
namespaces) with a more modest one which just checks conflict on
the same Unix socket directory. Thanks to Bernd Helmle for the
patch! (Closes: #514132, #472627)
* debian/postgresql-common.postinst: Do not call pg_updatedicts with
full path (DP 6.1).
* pg_lsclusters, pg_upgradecluster: Fix forgotten "=back" after
itemize list in the POD. Thanks lintian.
* debian/compat, debian/control: Bump compat level to 6.
* pg_updatedicts: Ensure generated tsearch dictionaries are world
readable when being generated under umask 077.
* debian/README.Debian: Point out incompatibility between using the
upstream tools (initdb) and the Debian tools (pg_createcluster)
and give some recommendations. (LP: #138793)
* debian/maintscripts-functions: Unset $GREP_OPTIONS. Thanks to
Carlo Calderoni for noticing!
-- Martin Pitt <mpitt@debian.org> Sun, 15 Feb 2009 17:37:58 +0100
postgresql-common (95) experimental; urgency=low
* Add automatic building of PostgreSQL tsearch/stem dictionaries:
- Add pg_updatedicts: Build dictionaries and affix files from installed
hunspell/myspell dictionary packages.
- Add t/150_tsearch_stemming.t: Test cases for pg_updatedicts, tsearch
functionality, and word stem handling.
- t/001_packages.t: Ensure that hunspell-en-us is installed, above new
test relies on it.
- debian/postgresql-common.install: Install pg_updatedicts.
- debian/rules: Create man page from pg_udpatedicts POD.
- Add debian/postgresql-common.triggers: Register interest on
/usr/share/myspell/dicts.
- debian/postgresql-common.postinst: Call pg_updatedicts on upgrade to
this version, fresh install, and our trigger.
- debian/postgresql-common.postrm: Remove /var/cache/postgresql on purge.
- (LP: #301770)
-- Martin Pitt <mpitt@debian.org> Sat, 06 Dec 2008 11:35:52 -0800
postgresql-common (94) unstable; urgency=low
* t/070_non_postgres_clusters.t: Test that all cluster configuration files
are owned by the cluster superuser. Reproduces #481349.
* pg_createcluster: Make the cluster configuration directory, "start.conf",
and "environment" owned by the cluster superuser instead of root.
(Closes: #481349)
* t/030_errors.t: Check behaviour of starting of clusters with colliding
ports. Reproduces #472627.
* pg_ctlcluster: Error out with a port collision message if another cluster
is already running on the port. (Closes: #472627)
* t/090_multicluster.t: Don't reconfigure cluster on conflicting port, since
that now fails with above fix.
-- Martin Pitt <mpitt@debian.org> Sat, 06 Dec 2008 11:19:54 -0800
postgresql-common (93) unstable; urgency=low
* t/060_obsolete_confparams.t: Test a direct upgrade from oldest to newest
version in addition to consecutive version-by-version upgrades. This
checks that parameters which changed several times between the versions
are correctly converted. Reproduces #502106.
* pg_upgradecluster: Re-read configuration file after doing the "syslog" ->
"redirect_stderr" migration, so that the followup "redirect_stderr" ->
"logging_collector" rename will actually be done. This fixes a direct 7.4
-> 8.3 upgrade. (Closes: #502106)
-- Martin Pitt <mpitt@debian.org> Sun, 16 Nov 2008 19:45:34 +0100
postgresql-common (92) unstable; urgency=low
* debian/supported-versions: Add Ubuntu 8.10 and 9.04.
* pg_upgradecluster: Clarify POD about manual mode of the old cluster.
Thanks to Toni Mueller for noticing.
* Demote ssl-cert Depends: to Recommends:. (Closes: #498406)
* pg_upgradecluster: Provide --locale and -lc-* options similar to
pg_createcluster, to provide easy UTF-8 migration from previous
legacy-encoded clusters. (Closes: #505785)
* t/052_upgrade_encodings.t: Test cases for pg_upgradecluster default and
explicit encoding behaviour.
* debian/init.d-functions: Use --force for forcefully stopping a running
cluster for "restart" init.d operation as well. Otherwise restart is not
guaranteed to succeed and could hang on existing connections.
(Closes: #481359)
* t/052_upgrade_encodings.t: Test upgrading of an SQL_ASCII database in a
cluter running under a proper locale. This reproduces #505449.
* pg_upgradecluster: Preserve SQL_ASCII encoded databases on upgrade.
(Closes: #505449)
-- Martin Pitt <mpitt@debian.org> Sun, 16 Nov 2008 13:42:31 +0100
postgresql-common (91) unstable; urgency=low
* Update Brazilian Portugese debconf translations, thanks Eder L. Marques!
(Closes: #493031)
* Add Romanian debconf translations, thanks Igor Stirbu!
(Closes: #491823)
* debian/control: Bump Standards-Version (no changes necessary).
-- Martin Pitt <mpitt@debian.org> Sat, 06 Sep 2008 10:44:15 +0200
postgresql-common (90) unstable; urgency=low
* Update Swedish debconf translations, thanks Martin Bagge!
(Closes: #490677)
* Add Turkish debconf translations, thanks Mert Dirik!
(Closes: #491007)
* Update Vietnamese debconf translations, thanks Clytie Siddall!
(Closes: #491048)
* Update Russian debconf translations, thanks Sergey Alyoshin!
(Closes: #491420)
* PgCommon.pm, change_ugid(): Use /usr/bin/id instead of manual parsing with
getgrent(), which is reportedly magnitudes faster for environments with
a large number of groups in remote databases. Thanks to Rodrigo Gallardo!
(Closes: #491136)
* debian/postgresql-common.postinst: Update root.crt header comment for
PostgreSQL 8.3. (Closes: #491276)
* pg_ctlcluster: Fix typo in pg_ctl error messages. Thanks to Aaron Schrab!
(Closes: #488280)
* pg_createcluster, pg_ctlcluster: Set the log file group to "adm" if
the cluster is owned by a system user (like "postgres"). In the "owned by
human user" case, keep it as that user's primary group. Check both cases in
the test suite. (Closes: #483017)
* t/TestLib.pm: Return "1" at the end, to avoid "TestLib.pm did not return a
true value" error on import.
* PgCommon.pm, read_conf_file(): Fix parsing of escaped quotes in string
values. Add tests to t/005_PgCommon.t. (Closes: #481055)
-- Martin Pitt <mpitt@debian.org> Mon, 21 Jul 2008 12:01:08 +0200
postgresql-common (89) unstable; urgency=low
* Update Italian debconf translations, thanks Luca Monducci!
(Closes: #479360)
* Update Galician debconf translations, thanks Jacobo Tarrio!
(Closes: #480971)
* Update Euskara debconf translations, thanks Piarres Beobide!
(Closes: #483239)
* t/051_inconsistent_encoding_upgrade.t: Don't error out if there is just
one major version installed.
* Update Portugese debconf translations, thanks Luis Matos
(Closes: #488570) and Ricardo Silva! (Closes: #489820)
-- Martin Pitt <mpitt@debian.org> Tue, 08 Jul 2008 08:44:59 +0200
postgresql-common (88) unstable; urgency=low
* t/030_errors.t: Add various test cases for stopping stopped clusters with
stale or corrupt PID files, with and without --force. This reproduces
#473879.
* pg_ctlcluster: On stop, clean up stale/corrupt PID files if the server is
not running. Also fix a taint error and simplify the code a bit.
(Closes: #473879)
* t/030_errors.t: Test graceful handling of absent /var/lib/postgresql.
(Reproduces LP #210322). Adapt 020_create_sql_remove.t accordingly.
* pg_ctlcluster: Check early whether the data directory exists and is
accessible, to avoid lots of Perl warning clutter. (LP: #210322)
* pg_createcluster POD: Clarify what "integrating existing cluster data
directory" means: configuration files must already be present, we cannot
create them out of thin air. (Closes: #475954)
* pg_maintenance: Sort versions for predictable output (looks nicer and
unbreaks the test suite).
-- Martin Pitt <mpitt@debian.org> Wed, 23 Apr 2008 19:35:30 +0200
postgresql-common (87) unstable; urgency=medium
* Urgency medium since #472930 is an important bug fix.
* debian/init.d-functions: If there are no clusters, exit with 4 (LSB-code
for "unknown status") instead of 0 (which means "service is running", but
it is debatable and confusing whether all clusters are running if there
are none at all). (LP: #203966)
* Update Spanish debconf translations, thanks Javier Fernández-Sanguino
Peña. (Closes: #473405)
* t/060_obsolete_confparams.t: Run upgrades under
default_transaction_read_only=on. t/040_upgrade.t still uses the default
"off", so both cases get tested. This replicates the problem report from
Karsten Hilbert.
* pg_upgradecluster: Work with default_transaction_read_only=on.
* debian/autovacuum.conf, architecture.html: Point out that this file is
only relevant for PostgreSQL versions earlier than 8.1. Thanks to Ross
Boylan for pointing this out.
* Add t/051_inconsistent_encoding_upgrade.t: Check that upgrades from
pre-8.3 to 8.3 succeed and have correct encodings if the old DB had a
database whose encoding did not match the server locale. This reproduces
#472930.
* pg_upgradecluster: Fix handling of database encodings on upgrade, since
8.3 now forces DB encodings and server locale to match:
- With C locale, keep encoding of DBs on upgrade, just as in previous
versions. (C is compatible with all encodings, and causes lots of string
functions not to work correctly, but people still use it deliberately.)
- With other locales, create the target DB manually with a compatible
encoding, and call pg_restore in a way to not create the target DB and
automatically convert encoding.
- Closes: #472930, LP: #207779
-- Martin Pitt <mpitt@debian.org> Mon, 31 Mar 2008 11:32:39 +0200
postgresql-common (86) unstable; urgency=low
* Update Japanese debconf translations, thanks Hideki Yamane!
(Closes: #464769)
* Update French debconf translations, thanks Guilhelm Panaget!
(Closes: #467660)
* Update Finish debconf translations, thanks Esko Arajärvi!
(Closes: #468548)
* pg_upgradecluster: Document 'datadir' argument. (Closes: #466258)
-- Martin Pitt <mpitt@debian.org> Sat, 01 Mar 2008 16:47:05 +0100
postgresql-common (85) unstable; urgency=low
* debian/README.Debian: Fix fatal typo that suggested dropping the wrong
cluster on upgrade. (Closes: #464064)
* pg_upgradecluster: Fix some typos in the POD, thanks to Brendan Jurd!
-- Martin Pitt <mpitt@debian.org> Wed, 06 Feb 2008 15:22:03 +0100
postgresql-common (84) unstable; urgency=low
* Add t/140_pg_config.t: Check correct output of pg_config, to avoid bugs
like #455509 and #462037 in the future.
* t/040_upgrade.t: Create and cd into an inaccessible test directory.
* pg_upgradecluster: Chdir to / before the upgrade to avoid confusing error
messages about inaccessible cwd.
* debian/README.Debian: Update for 8.3 being the default version. Drop
description of 7.4 autovacuum daemon magic, since it is obsolete now.
* debian/postgresql-common.templates: Point to README.Debian.
* debian/postgresql-common.cron.d: Update for 8.3, and add warnings and doc
pointer about enabling regular VACUUM FULL. (LP: #186831)
* PgCommon.pm, get_cluster_locales(): Print proper error message when server
package is removed, but not purged, and a cluster still exists.
(Closes: #463070)
* t/030_errors.t, t/130_nonroot_admin.t: Check pg_dropcluster/
pg_createcluster error message when being called with insufficient
privileges.
* pg_createcluster, pg_dropcluster: Point out that program needs to be run
as root when creating/removing config or data directory fails.
(Closes: #460576)
* t/090_multicluster.t: Remove test case for nonexisting PGSERVICE value,
since this is not reliably reported in psql.
* t/140_pg_config.t: Skip pg_config test for 8.1. It's known broken in Etch
(pg_config was only shipped in libpq-def) and irrelevant in Lenny.
-- Martin Pitt <mpitt@debian.org> Sun, 03 Feb 2008 17:50:29 +0100
postgresql-common (83) unstable; urgency=low
* Drop the "If you have openssl installed..." from the package description,
since ssl-cert depends on it.
* t/050_encodings.t: Add alternative unicode representation 0xc827 for the
CVE-2006-2313 test, so that the testsuite runs cleanly in Ubuntu 6.06.
* debian/supported-versions: Drop 8.1 from fallback set of supported
versions.
* debian/postgresql-common.config: Add check for forcing the obsoletion
notifications when upgrading over a particular version. This provides the
notification when upgrading from Etch to Lenny, and when obsoleting a
major version within unstable.
* debian/supported-versions: Drop support for 8.2 in unstable, 8.3 is the
version du jour.
* debian/supported-versions: Drop Ubuntu 5.10, fix a typo in the versions
for Ubuntu 6.06.
* t/090_multicluster.t: Test correct behaviour of pg_service.conf. (See
#439026)
* debian/supported-versions: Only support 8.3 in Ubuntu 8.04.
-- Martin Pitt <mpitt@debian.org> Sun, 20 Jan 2008 11:08:04 +0100
postgresql-common (82) unstable; urgency=low
* debian/control: Fix 'commmon' typo. (Closes: #449532)
* t/030_errors.t: Check that an /etc/postgresql/postgresql.conf leftover is
not regarded as a cluster directory. This reproduces #450565.
* PgCommon.pm, get_versions()/get_version_clusters(): Filter out '.' and
'..' from readdir() output. (Closes: #450565)
* pg_ctlcluster: Use "smart" mode shutdown by default, and add option
-f/--force to use "fast" -> "immediate" -> kill -9 approach. (LP: #154012)
* debian/init.d-functions: Use --force when stopping all clusters, since
default smart mode can potentially block forever and thus fail to shut
down a machine.
* debian/README.Devel: Update for current bzr versions and hosting on
code.launchpad.net.
* Update Japanese debconf translations (Closes: #450902)
-- Martin Pitt <mpitt@debian.org> Sun, 30 Dec 2007 22:27:08 +0100
postgresql-common (81) unstable; urgency=low
* debian/supported_versions: Welcome, Ubuntu Hardy (8.04)!
* debian/postgresql-common.templates, debian/control: Language and grammar
improvements, thanks a lot to Christian Perrier and the l10n teams!
(Closes: #446457)
* Update debconf translations, thanks to all translators!
- French (Christian Perrier) (Closes: #446978)
- Vietnamese (Clytie Siddall) (Closes: #447009)
- Finnish (Esko Arajärvi) (Closes: #447045)
- Italian (Luca Monducci) (Closes: #447052)
- Galician (Jacobo Tarrio) (Closes: #447054)
- Basque (Piarres Beobide) (Closes: #447131)
- Spanish (Javier Fernández-Sanguino Peña) (Closes: #447417)
- Czech (Miroslav Kure) (Closes: 447436)
- Portugese (Miguel Figueiredo) (Closes: #447642)
- Brazilian Portugese (Eder L. Marques) (Closes: #447881)
- Russian (Sergey Alyoshin) (Closes: #448768)
- German (Martin Pitt)
-- Martin Pitt <mpitt@debian.org> Sat, 03 Nov 2007 10:13:46 -0400
postgresql-common (80) unstable; urgency=low
* pg_upgradecluster: Fix locale error checking.
* pg_upgradecluster: Use cluster_exists() instead of
cluster_data_directory().
* PgCommon.pm: Fix cluster_data_directory() to consider the data_directory
setting in postgresql.conf, which should trump the /pgdata symbolic link.
* debian/init.d-functions: Check for 'postgresql.conf' instead of 'pgdata'
in the test for a valid cluster configuration directory, since 'pgdata' is
optional now.
* pg_createcluster: Do not create pgdata symlinks to the data directory in
/etc any more when configuring a >= 8.0 cluster. Use the data_directory
configuration option instead. (Part of #444689)
* t/020_create_sql_remove.t: Check that clusters still work when replacing
the data_directory setting with a pgdata symbolic link, and that
the data_directory setting trumps the symlink.
* pg_upgradecluster: Set correct data_directory config option after copying
over the old configuration files.
* t/060_obsolete_confparams.t: Restore data_directory setting after
scribbling over the configuration file with our template.
* PgCommon.pm, cluster_info(): Only return a value for 'logfile' when it is
not explicitly configured with log_directory and/or log_filename. The
previous guessing was wrong anyway, since PostgreSQL always appends a
pretty unpredictable timestamp.
* pg_ctlcluster: Only do log file checks and pass pg_ctl -l option when the
log file default is used. Otherwise let PostgreSQL do its logfile handling
and waive log file checks, since we don't know which file is used.
* pg_ctlcluster: Redirect pg_ctl's stdout and stderr to /dev/null, otherwise
it will hang forever when using a custom log file (and thus not passing
-l).
* pg_lsclusters: Print "custom" as log file location if a custom one was set
in postgresql.conf.
* pg_upgradecluster: Enable 'redirect_stderr' in the 7.4 -> 8.x migration of
'syslog' -> 'log_destination', so that the log output is actually
complete.
* t/060_obsolete_confparams.t: Enable 'redirect_stderr' in the template
postgresql.conf's, so that we actually capture log output.
* t/020_create_sql_remove.t: Check proper handling of logs when configuring
log file in postgresql.conf, using the log symlink, or having neither.
* PgCommon.pm, cluster_info(): Return default log file in 'logfile' if
neither postgresql.conf nor a 'log' symlink explicitly specify a log file.
* pg_createcluster: Do not create log symlink if using the default log file
(i. e. when not using -l). (Closes: #444689)
* t/020_create_sql_remove.t: Verify that log symlink is not created by
default.
* architecture.html: Update to current reality.
* debian/postgresql-common.config: Do not consider versions as obsolete if
they are newer than the latest officially supported version. This avoids
confusion when testing new betas in experimental or using backports.
(Closes: #446635)
* t/TestLib.pm: Make exec_as() work with user name 'root' (not just uid 0).
* Add t/130_nonroot_admin.t: Check that administrative pg_ tools work as
non-root, too, if the invoker has sufficient permissions on the
directories (test case for LP #90036).
* pg_{create,drop,upgrade}cluster: Small tweaks to make the scripts work for
non-root users with sufficient write permissions to
/etc/postgresql/<version>, /var/lib/postgresql/<version>, and
/var/log/postgresql. (LP: #90036)
-- Martin Pitt <mpitt@debian.org> Sun, 21 Oct 2007 16:01:08 +0200
postgresql-common (79) unstable; urgency=low
* debian/supported-versions: Welcome, version 8.3!
* pg_createcluster: Add configure_8_3().
* PgCommon.pm, cluster_info(): 8.3 defaults to 'autovacuum = On' when not
given, reflect that in the avac_enable return value.
* t/050_encodings.t: 8.3 onwards refuses to create a cluster with an
inconsistent locale/encoding combination. Just drop the test case, it does
not make too much sense anyway.
* t/090_multicluster.t: Do not rely on output of createdb, call it with -q.
8.3 behaves differently here.
* t/060_obsolete_confparams.t: Add full set of 8.2 postgresql.conf options
for testing upgrades to 8.3.
* pg_upgradecluster: When upgrading to 8.3, transition changed configuration
options:
- bgwriter_lru_percent, bgwriter_all_percent, bgwriter_all_maxpages,
stats_start_collector, and stats_reset_on_server_start: deprecated.
- redirect_stderr -> logging_collector
- stats_command_string -> track_activities
- stats_block_level || stats_row_level -> track_counts
- Explicitly enable archive_mode when archive_command is set.
-- Martin Pitt <mpitt@debian.org> Wed, 10 Oct 2007 00:27:41 +0200
postgresql-common (78) unstable; urgency=low
* debian/postgresql-common.postinst: Only clean up
/usr/lib/postgresql/dumpall/ on upgrades if it is actually a directory.
(Closes: #440596)
-- Martin Pitt <mpitt@debian.org> Sun, 16 Sep 2007 20:59:30 +0200
postgresql-common (77) unstable; urgency=low
* debian/control: Fix obsolete ${Source-Version}.
* t/020_create_sql_remove.t: Create fake rotated log files to check that
they are cleaned up properly.
* pg_dropcluster: Remove rotated logs, too. (part of #431643)
* debian/postgresql-common.postinst: Clean up /usr/lib/postgresql/dumpall/
junk from the Sarge->Etch postgresql transition. This needs to be kept
until after Lenny's release. (part of #431643)
* Add debian/postgresql-client-common.postrm: Clean up
/var/lib/postgresql/.psql_history on purge. Closes: #431643
* debian/postgresql-common.postinst: Create /var/lib/postgresql/ if it does
not exist. This should not usually happen, but apparently did anyway.
(Closes: #438698)
-- Martin Pitt <mpitt@debian.org> Mon, 20 Aug 2007 15:45:28 +0200
postgresql-common (76) unstable; urgency=medium
* Priority medium since this unbreaks client programs like psql in testing.
* pg_wrapper: Revert changes of version 74 to make this work with taint
mode. It breaks too many custom setups, and Perl just doesn't allow to
untaint $PATH bluntly. If you run pg_wrapper from a perl script with taint
checks enabled, you have to clean $PATH yourself. Closes: #427894
* t/020_create_sql_remove.t: Check that PL/TCL and PL/TCLu work, so that we
now have complete test coverage of all four PLs that are shipped with the
core package.
* t/001_packages.t: Check that postgresql-pltcl-<version> is installed.
* PgCommon.pm, get_cluster_socketdir(): Improve error message if data
directory parent is not readable. Closes: #428698
-- Martin Pitt <mpitt@debian.org> Sat, 23 Jun 2007 21:52:58 +0200
postgresql-common (75) unstable; urgency=low
The "Never run the test suite without 7.4 just because it is deprecated and
about to be removed" release. Sorry for the trouble.
* pg_ctlcluster: Partially revert PATH cleansing to make pg_ctl work on 7.4
again. This can be dropped again once 7.4 is actually removed from the
archive. Closes: #425594
-- Martin Pitt <mpitt@debian.org> Thu, 24 May 2007 09:26:45 +0200
postgresql-common (74) unstable; urgency=low
* debian/supported_versions:
- Match any 4.0* as Debian Etch to get the correct set of supported
versions. Closes: #420915
- Add Lenny/unstable: only support 8.2.
- Add Ubuntu 7.10.
- Don't fail if the distribution cannot be determined at all, only print
out a warning.
* pg_createcluster, pg_ctlcluster, pg_dropcluster, pg_maintenance,
pg_upgradecluster: Strip down PATH untainting to the absolute minimum, to
not fall over if e. g. /usr/local/bin is misconfigured to be world
writable. Closes: #420565
* pg_wrapper: Make this script work with taint checks enabled. This happens
in a pretty blunt way, since it does not actually make sense to enforce
environment variables, etc. It should just not fail when being called from
a -T perl script. Closes: #422129
* debian/postgresql-common.postinst: Do not hide failures of the init
script on restart.
* debian/postgresql-common.config, debian/postgresql-common.templates:
Remove the check for an untransitioned postgresql, since it was only
necessary for the Sarge->Etch upgrade. Update debian/po/*.po.
* Remove debian/postgresql-common.preinst, we only needed it for the
"untransitioned" test.
* debian/control: Move cdbs and debhelper from B-D-I to B-D, since we need
them for 'clean'.
* Add debian/postgresql-client-common.lintian: Lintian overrides for 'binary
without manpage'. The stuff in /usr/bin is just a symlink to pg_wrapper,
postgresql-client-* ships the actual manpages for those.
-- Martin Pitt <mpitt@debian.org> Sun, 20 May 2007 15:30:19 +0200
postgresql-common (73) unstable; urgency=low
* debian/postgresql-common.dirs: Ship /var/lib/postgresql again, creating it
dynamically causes various upgrade failures. Closes: #416146, #416228
* debian/postgresql-common.postinst: Call adduser with --no-create-home.
This avoids the 'wrong owner' warning as well.
-- Martin Pitt <mpitt@debian.org> Mon, 26 Mar 2007 18:51:27 +0200
postgresql-common (72) unstable; urgency=low
* debian/postgresql-common.postinst: Set default /var/log/postgresql
permissions to root:postgres 1775. Closes: #410852
* Update Russian debconf translations. Thanks to Yuriy Talakan'!
Closes: #414067
* postgresql-common/debian/postgresql-common.dirs: Remove
/var/lib/postgresql, so that adduser does not complain about a preexisting
directory with the wrong owner any more. This also avoids removing the
home directory of postgres when removing the package. Closes: #415444
-- Martin Pitt <mpitt@debian.org> Sat, 24 Mar 2007 16:06:47 +0100
postgresql-common (71) unstable; urgency=low
* Add Swedish debconf translations. Thanks to Andreas Henriksson!
Closes: #407865
* Add Galician debconf translations. Thanks to Jacobo Tarrio!
Closes: #408121
* debian/supported-versions: Only 8.2 is supported in Ubuntu 7.04.
* pg_ctlcluster: Check that $version and $cluster are still defined after
untainting to avoid confusing (but harmless) error message.
Closes: #406117
-- Martin Pitt <mpitt@debian.org> Mon, 29 Jan 2007 16:22:55 +0100
postgresql-common (70) unstable; urgency=low
* t/050_encodings: Check that $LC_ALL dominates $LANG on pg_createcluster.
This reproduces bug #403239.
* pg_createcluster: If $LC_ALL is defined, fix $LANG to $LC_ALL. Servers
prior to 8.2 get this wrong and fail over an invalid $LANG even if that is
dominated by a valid $LC_ALL. Closes: #403239
* Add Brazilian Portugese debconf translations. Thanks to André LuÃs Lopes!
Closes: #403563
* t/040_upgrade.t: Check that pg_upgradecluster does not have any stderr
output (such as error messages from pg_restore, the server, or Perl
warnings). This uncovers #403529.
* pg_upgradecluster: Do not mangle {hba,ident,external_pid}_file values from
old postgresql.conf if they do not exist at all. This removes the Perl
warnings during upgrades from 7.4. Closes: #403529
* debian/README.Debian: Describe default cluster setup and give an example
for upgrading a cluster if a newer version with the same name already
exists.
-- Martin Pitt <mpitt@debian.org> Tue, 19 Dec 2006 17:00:27 +0100
postgresql-common (69) unstable; urgency=medium
* Urgency medium, only safe fixes and this needs to go into Etch due to
first bug fix.
* debian/supported_versions: Gracefully fall back on an unknown
distribution, instead of failing package installation completely.
Closes: #400628
* debian/supported_versions: Some minor factorization.
* Add Spanish debconf translations, thanks to Javier Fernández-Sanguino
Peña! Closes: #402198
* pg_createcluster: Add --locale and the various --lc_* options that initdb
supports, and mention in POD that directly setting --encoding is not
recommended. Closes: #395083
* t/050_encodings.t: Use pg_createcluster's new --locale option in some test
cases.
* Make testsuite work with just one installed major version (mainly boils
down to disabling upgrade tests).
-- Martin Pitt <mpitt@debian.org> Sat, 9 Dec 2006 14:37:42 +0100
postgresql-common (68) unstable; urgency=low
* debian/supported-versions: Add Debian 4.0. Closes: #399978
* debian/postgresql-common.postinst: Use adduser option --quiet for adding
postgres to ssl-cert. Closes: #399979
* pg_createcluster: Enable timestamps in log files by default. Other system
log files have timestamps, too, and they are useful. Closes: #395554
* t/040_upgrade.t: Fix number of tests if oldest installed PostgreSQL
version is < 8.0.
-- Martin Pitt <mpitt@debian.org> Fri, 24 Nov 2006 21:01:30 +0100
postgresql-common (67) unstable; urgency=low
*t/040_upgrade.t: Skip the user/group name clash test when there are only
servers >= 8.1 installed, since it does not apply to them and breaks the
test suite.
* t/040_upgrade.t: Check that the upgraded cluster still works after
removing the old one, to check for stale paths of configuration files.
* pg_upgradecluster: Adapt path to configuration files in the target
cluster, so that they do not refer to the files of the old cluster. (This
fixes an upgrade regression introduced in version 62).
* debian/supported-versions: Add Ubuntu 7.04.
* Add Italian debconf translations. Thanks to Luca Monducci
<luca.mo@tiscali.it>! Closes: #396947
-- Martin Pitt <mpitt@debian.org> Thu, 16 Nov 2006 00:11:58 -0800
postgresql-common (66) unstable; urgency=low
* Add Japanese debconf translations. Thanks to Hideki Yamane!
Closes: #393055
* pg_upgradecluster: Use -X no-data-for-failed-tables only for 8.1. In
8.2beta2 this got renamed to --no-data-for-failed-tables.
-- Martin Pitt <mpitt@debian.org> Fri, 27 Oct 2006 11:38:50 +0200
postgresql-common (65) unstable; urgency=low
* pg_upgradecluster: Quiesce dropdb for already existing 'postgres'
database.
* pg_upgradecluster: Avoid harmless, but confusing error messages about role
creation:
- Do not use -c for pg_dumpall, since the target roles should not yet
exist anyway.
- Filter out the 'CREATE (ROLE|USER)' command for the db superuser, since
it will already exist.
- Testsuite: Check that pg_upgradecluster output contains no server error
messages.
- Closes: #389930
-- Martin Pitt <mpitt@debian.org> Sat, 7 Oct 2006 13:54:34 +0200
postgresql-common (64) unstable; urgency=low
* Fix pg_ctlcluster regression from 63: 'database system is starting up'
fatal error message caused immediate abortion of startup checks. Make the
check easier and more robust, adapt test cases accordingly.
* t/020_create_sql_remove.t: Add check that PL/Perl works. Check that
-plperl-X.Y. is installed in t/001_packages.t.
* t/{040_upgrade.t,041_upgrade_custompaths.t}: Check for pg_restore error
messages during upgrade.
* pg_upgradecluster: Avoid pg_restore errors during upgrade (they were
nonfatal, but look ugly:)
- Drop 'postgres' db in 8.1+ target cluster if the source cluster already
has it.
- Do not use pg_restore's --create for template1.
- Fix hardcoded library paths before dumping/restoring the cluster, not
after, to avoid error messages about failed library loads.
-- Martin Pitt <mpitt@debian.org> Fri, 6 Oct 2006 18:35:46 +0200
postgresql-common (63) unstable; urgency=low
* t/090_multicluster.t, t/100_upgrade_scripts.t: Replace hardcoded '8.1'
versions in test data with appropriate $MAJORS values.
* pg_createcluster: Add configure_8_2().
* pg_ctlcluster, check_running_postmaster(): Check for both 'postmaster' and
'postgres' processes to also work for 8.2.
* t/TestLib.pm, check_clean(): Also check for running 'postgres' processes
(since that's how the server is called in 8.2+). Update number of tests
everywhere.
* t/TestLib.pm, check_clean(): Fix regexp for netstat port grepping so that
ports like '54321' do not match.
* t/TestLib.pm, pidof(): Make pidof() strict enough to not catch the stats
collector and writer subprocesses.
* t/*.t: Various small adaptions to work with 8.2, too.
* t/060_obsolete_confparams.t: Add full configuration for 8.1, to test
8.1->8.2 upgrade.
* pg_upgradecluster: When upgrading to 8.2, transition changed configuration
options:
- preload_libraries -> shared_preload_libraries
- australian_timezones -> timezone_abbreviations
* pg_ctlcluster: Instead of parsing pg_hba.conf, just try to connect with
setting PGPASSWORD to a bogus value, and check for authentication errors.
This is more robust and more elegant, and also covers nonstandard
authentication schemes correctly. Closes: #388419
* debian/supported-versions: Recklessly consider 8.2 as supported to avoid
whining if 8.2 package gets backported.
-- Martin Pitt <mpitt@debian.org> Sat, 30 Sep 2006 12:44:08 +0200
postgresql-common (62) unstable; urgency=low
* t/080_start.conf.t: Check that stop'ing a cluster works even if the
cluster is disabled (test for bug #386996).
* pg_ctlcluster: Allow 'stop' and 'autovac-stop' for disabled clustes.
Closes: #386996
* Reduce options passed to postmaster at runtime to shorten command line and
make the configuration more obvious and explicit:
- pg_ctlcluster: Do not pass unix_socket_dir/hba_file/ident_file if it is
already defined in postgresql.conf.
- pg_createcluster: If we create a cluster >= 8.0, set hba_file,
ident_file, and external_pid_file in postgresql.conf.
- 070_non_postgres_clusters.t: Fix expected output accordingly and
use 'ls' for socket check instead of looking at the command line.
- Closes: #384999
-- Martin Pitt <mpitt@debian.org> Mon, 18 Sep 2006 09:12:20 +0200
postgresql-common (61) unstable; urgency=low
* pg_lsclusters: Remove trailing spaces from output, adapt test suite
accordingly.
* pg_upgradecluster: Correctly pass custom datadir to pg_createcluster.
Closes: #385034
* Add t/041_upgrade_custompaths.t: Test upgrading with a custom data
directory and log file path (this also covers bug #385034).
-- Martin Pitt <mpitt@debian.org> Mon, 11 Sep 2006 13:08:58 +0200
postgresql-common (60) unstable; urgency=low
* Update Czech debconf translations, thanks to Miroslav Kure.
Closes: #384757
* t/090_multicluster.t: Check that $PGHOST and $PGDATABASE environment
variables are respected and have the correct precedence. (This reproduces
#385971). Now this test has full coverage of all libpq environment
variables but $PGUSER (which is not used at all anywhere).
* pg_wrapper: Do not override $PGDATABASE and $PGHOST with user_clusters
map. Closes: #385971
* Update Dutch debconf translations, thanks to Vincent Zweije.
Closes: #386704
* pg_createcluster: Fix POD to have consistent long-option syntax. Thanks to
Bastian Kleineidam! (Part of bug #386148)
* Improve handling of custom socket directories:
- pg_createcluster: Create a nonexisting directory.
- pg_dropcluster: Remove empty socket directory unless it's /tmp or
/var/run/postgresql.
- Thanks to Bastian Kleineidam for the suggestions.
- t/030_errors.t: Do not create our custom socket dir ourselves any more,
since pg_createcluster is now supposed to handle that (thus providing a
test case).
- Closes: #386148
-- Martin Pitt <mpitt@debian.org> Sun, 10 Sep 2006 13:31:11 +0200
postgresql-common (59) unstable; urgency=low
* t/001_packages.t: Check that p-plpython-X.Y is installed.
* t/020_create_sql_remove.t: Check that PL/Python works properly.
* Update French debconf translations, thanks to Guilhelm Panaget
<guilhelm.panaget@free.fr>. Closes: #382447
* Add Portugese debconf translations, thanks to Rui Branco
<ruipb@debianpt.org>. Closes: #381946
* postgresql-common/debian/postgresql-common.config:
- Ensure that the 'untransitioned' critical debconf note is always shown,
not just once. Otherwise the preinst just fails without giving any hint
about the reason after the first failure.
- Additionally print a small hint to stderr, for the case that people do
not use the interactive frontend.
- Closes: #382134
-- Martin Pitt <mpitt@debian.org> Sat, 12 Aug 2006 18:40:21 +0200
postgresql-common (58) unstable; urgency=low
* pg_wrapper: Improve manpage POD, describe the precise rules for cluster
selection.
* t/090_multicluster.t: Check for proper error message of pg_wrapper (no
suitable default cluster) if several local clusters exist and none are on
the default port.
* pg_wrapper: Print proper error message if no cluster is suitable as
default target and point to man pg_wrapper.
* pg_upgradecluster:
- Support /etc/postgresql-common/pg_upgradecluster.d/ hook scripts. These
are called after creating the virgin new version cluster (phase 'init')
and a second time after the upgrade is complete (phase 'finish').
PostgreSQL extensions like PostGIS can use these hooks to initialize
metadata which must not be upgraded from the old cluster, but
initialized from scratch. Closes: #351571
- Document this feature in the manpage POD.
- If upgrade scripts are present, call pg_restore with the new -X
no-data-for-failed-tables option to not clutter already existing tables
in the new cluster with data from the old cluster. Abort with an error
if the installed pg_restore does not support this option.
- debian/postgresql-common.dirs: Ship
/etc/postgresql-common/pg_upgradecluster.d/.
* Add t/120_pg_upgradecluster_scripts.t: Selftest for pg_upgradecluster.d
hooks and proper pg_restore -X no-data-for-failed-tables behaviour.
* PgCommon.pm, get_cluster_locales(): Fix parsing of locales out of
pg_controldata output by calling it under the locale 'C' and being more
liberal in the regular expression. (https://launchpad.net/bugs/50755)
-- Martin Pitt <mpitt@debian.org> Tue, 25 Jul 2006 22:34:42 +0200
postgresql-common (57) unstable; urgency=low
* debian/postgresql-common.{preinst,config}: Check if there is a removed,
but not purged pre-transition postgresql-client or postgresql package.
Packages in this state subtly break operation, but are not caught by the
Conflicts: statements. Display a critical note in that case and abort
installation. Closes: #368827
-- Martin Pitt <mpitt@debian.org> Thu, 29 Jun 2006 23:07:30 +0200
postgresql-common (56) unstable; urgency=low
* debian/init.d-functions, status(): Exit with code 3 if any cluster is
down, to get a bit closer to LSB specification (which does not
sufficiently specify the case of controlling multiple processes in one
init script). Thanks to Ross Boylan <RossBoylan@stanfordalumni.org>!
Closes: #358152
* pg_ctlcluster:
- start: Create an external PID file /var/run/postgresql/
<version>-<cluster>.pid for 8.0+ versions (7.4 doesn't support this yet)
unless 'external_pid_file' is already set in postgresql.conf.
Closes: #180849, #184782
- stop: Remove this external pid file (this should be done by the
postmaster itself, but 8.1.4 does not).
* t/020_create_sql_remove.t: Check that starting a cluster creates a PID
file in /var/run/postgresql/, but doesn't if external_pid_file was set
explicitly.
* t/030_errors.t: Adapt to new PID file creation behaviour.
* t/030_errors.t: modprobe loop before setting up the test loopback device.
* debian/supported-versions: Add Ubuntu 6.10.
-- Martin Pitt <mpitt@debian.org> Mon, 26 Jun 2006 19:02:41 +0200
postgresql-common (55) unstable; urgency=low
* Add missing procps dependency to p-common. Closes: #369768
* pg_dropcluster: Clean up half-existing broken cluster configurations
(which happen when disk becomes full, etc) instead of failing. (part of
bug #368335).
* t/030_errors.t: Test that pg_dropcluster copes with broken cluster
configurations.
* debian/maintscripts-functions: Do not fail package installation if
pg_createcluster fails (/var might be full and the admin might want to use
a different directory). Merely print out an error message and point to
pg_createcluster and its manpage. (part of bug #368335)
* t/030_errors.t: Create a temporary 10 MB loop mount on /var/lib/postgresql
and check that pg_createcluster fails with an appropriate error and leaves
no cruft behind.
* pg_createcluster: Call pg_dropcluster to clean up cruft if anything fails
in the cluster creation process. This avoids an inconsistent system if e.
g. running out of disk space during installation. Closes: #368335
-- Martin Pitt <mpitt@debian.org> Fri, 2 Jun 2006 00:17:07 +0200
postgresql-common (54) unstable; urgency=low
* pg_wrapper: Support specifying remote clusters with $PGCLUSTER, --cluster,
user_clusters, and ~/.postgresqlrc with 'host:[port]' as cluster name.
Closes: #340162
* t/090_multicluster.t: Add tests for above feature.
* user_clusters.5, postgresqlrc.5: Document format for remote clusters.
* debian/supported-versions:
- Also recognize Ubuntu dapper version number '6.06LTS'.
- Fix bashism: 'type -p' -> type.
* debian/control: Have p-common always depend on the recent p-client-common,
since the latter ships PgCommon.pm. If the library is out of date, this
can break operations horribly. Closes: #369289
* Add Dutch debconf translation, thanks to Vincent Zweije
<zweije@xs4all.nl>! Closes: #369237
* t/TestLib.pm: If the test suite is called with FAILURE=shell environment,
spawn bash before continuing. This makes it easier to debug obscure
failures.
* t/TestLib.pm, check_clean(): Check that PostgreSQL TCP sockets are closed.
Adapt number of tests in all t/*.t.
* t/090_multicluster.t: Just before checking for cleanness, wait until all
TIME_WAIT sockets on the server ports went away, so that the following
tests will not stumble over them. This seems to be a 7.4 server bug which
is fixed in 8.1 at least.
* t/050_encodings.t: Add tests for recent SQL injection vulnerabilities
through invalidly encoded strings and usage of \' escaping.
-- Martin Pitt <mpitt@debian.org> Tue, 30 May 2006 00:59:57 +0200
postgresql-common (53) unstable; urgency=medium
* Urgency medium since this fixes a quite serious bug; no intrusive changes
otherwise.
* Add Russian debconf translation, thanks to Yuriy Talakan'
<yt@amur.elektra.ru>! Closes: #367152
* t/001_packages.t: Check that the locales used in the tests are installed
so that the test suite fails early if not.
* t/050_encodings.t, t/060_obsolete_confparams.t: Use ru_RU{,.UTF-8} for
tests, since they have more potential for failure.
* t/050_encodings.t:
- Add check for https://launchpad.net/bugs/39177: Correct encoding of
server error messages under various locales.
- Add check for bug #343057: Correct startup if client_encoding and
lc_messages settings do not match.
* pg_ctlcluster: Set LC_CTYPE environment variable to unbreak server error
messages. (Closes https://launchpad.net/bugs/39177). By only setting CTYPE
we also avoid reintroducing bug #343057. (Yay for postmaster being so anal
about its environment)
* t/020_create_sql_remove.t: Consider LC_CTYPE a safe environment variable.
* debian/postgresql-common.postinst: Bump version comparison for restarting
postgresql servers to this version, to ensure that above bug fix becomes
active.
-- Martin Pitt <mpitt@debian.org> Fri, 19 May 2006 18:58:25 +0200
postgresql-common (52) unstable; urgency=low
* Bump Standards-Version to 3.7.2.
* Merge support for system wide snakeoil SSL certificate from Ubuntu branch
and eliminate our custom SSL certificate juggling:
- debian/control:
+ Depend on ssl-cert which provides snakeoil cert and the ssl-cert
group.
+ Remove Recommends: openssl.
- debian/postgresql-common.postinst:
+ Remove generation of PostgreSQL specific SSL certificate.
+ Add postgres user to the ssl-cert group on upgrades to this version or
on fresh installs.
- pg_createcluster:
+ Adapt cert/key paths to snakeoil.
+ Update manpage documentation POD.
+ Enable SSL only if SSL key can be accessed with the cluster owner's
privileges.
- debian/README.Debian: Update documentation of SSL certificate handling.
-- Martin Pitt <mpitt@debian.org> Fri, 12 May 2006 22:25:49 +0200
postgresql-common (51) unstable; urgency=low
* PgCommon.pm: Add function read_pg_hba() to parse pg_hba.conf.
* Add t/005_PgCommon.t: Designated for testing PgCommon.pm library
functions; test read_pg_hba() for now.
* pg_ctlcluster: Check pg_hba.conf if the database superuser can connect
locally without a password. If not, disable startup checks to avoid asking
for the superuser password. (https://launchpad.net/bugs/37640)
* t/030_errors.t: Test above pg_ctlcluster checks.
-- Martin Pitt <mpitt@debian.org> Mon, 1 May 2006 14:38:53 +0200
postgresql-common (50) unstable; urgency=low
* t/030_errors.t: Check that pg_wrapper and administration programs give
sane error messages instead of 'Invalid symbolic link blabla' for a
nonexisting cluster.
* pg_ctlcluster, pg_dropcluster: Print meaningful error message on
nonexisting cluster. Closes: #360701
* pg_dropcluster: Rename --stop-server to --stop to be consistent with
pg_createcluster's --start, and update documentation. --stop-server still
works for backward compatibility, though. Closes: #360697
* debian/README.Debian:
- Update createuser invocation description for 8.1+. Closes: #361731
- Update autovacuum daemon description; explain integrated autovacuuming
for 8.1+.
* pg_ctlcluster: Fail autovac-* commands for 8.1+ clusters. Closes: #360888
* debian/init.d-functions: Fix handling of failing pg_ctlcluster
invocations. Closes: #362825
* pg_createcluster: Explain syntax of the environment file in more detail.
* Add t/110_integrate_cluster.t: Test various scenarios of integrating
already existing clusters.
* pg_createcluster: Determine correct owner and group when integrating an
already existing cluster.
-- Martin Pitt <mpitt@debian.org> Thu, 20 Apr 2006 23:09:36 +0200
postgresql-common (49) unstable; urgency=low
* debian/supported-versions:
- Do not fail the package installation if an unknown LSB release is
encountered; merely print a warning and assume just the latest
PostgreSQL version is supported.
- Fix Ubuntu Dapper release version (6.04 -> 6.06).
(https://launchpad.net/bugs/36921)
* pg_createcluster: Add option -p/--port to set the cluster port.
Closes: #359249
* t/030_errors.t: Check that pg_createcluster's --port option validates the
port number (invalid number, already used port).
* t/090_multicluster.t: Check that pg_createcluster's --port option works.
* t/050_encodings.t: Check correct input/output with Latin-1 and UTF-8
client encodings in all server locale/encoding combinations.
* pg_ctlcluster: Do not set LC_ALL and LANG environment variables for the
postmaster; it handles locales by itself, and explicitly setting them
breaks sometimes. Thanks to Olleg Samoylov for analyzing this.
Closes: #343057
* t/TestLib.pm: Sort list of major versions, since we rely on a sorted list.
* debian/init.d-functions, do_ctl_all(): Fix 'return' statements to
explicitlly return 0 to not break with dash.
* pg_lsclusters: Sort output by version, then by cluster name.
-- Martin Pitt <mpitt@debian.org> Mon, 3 Apr 2006 09:03:15 +0200
postgresql-common (48) unstable; urgency=low
* t/001_packages.t: Do not fail if postgresql-8.0 is not installed, so that
the complete test suite works with just 7.4 and 8.1.
* Remove manual conffile transition handling in p-client-common maintainer
scripts, since current dpkg now gets it right.
* t/090_multicluster.t: Remove test user_clusters so that the broken one
does not stay around if no user_clusters file existed before.
* testsuite: Set all variables that potentially cause Perl taint check
errors (IFS, CDPATH, ENV, BASH_ENV) to catch taint check bugs.
* PgCommon.pm: Add two functions prepare_exec() and restore_exec() which set
up a save (untainted) environment for calling external programs.
* pg_ctlcluster, pg_maintenance, pg_dropcluster, pg_upgradecluster: Clean
environment to not call external programs with potentially tainted
variables.
-- Martin Pitt <mpitt@debian.org> Wed, 22 Mar 2006 00:03:46 +0100
postgresql-common (47) unstable; urgency=low
* debian/control: Have p-client-common Replace: all versions of
postgresql-common; this is a quick workaround for a dpkg bug (orphaned
conffiles cause package conflicts). Closes: #357909, #357910
-- Martin Pitt <mpitt@debian.org> Mon, 20 Mar 2006 19:12:29 +0100
postgresql-common (46) unstable; urgency=low
* t/020_create_sql_remove.t: Make check of pg_maintenance output stricter to
catch things like taint errors.
* PgCommon.pm, get_versions() and get_version_clusters(): Check return
values to untaint them. Fixes taint error in pg_maintenance (and maybe
some more). Closes: #357237
* debian/control: Bump lsb-base dependency to >= 3.0-3 to ensure that
log_daemon_msg() and friends are available. Closes: #357108
-- Martin Pitt <mpitt@debian.org> Tue, 14 Mar 2006 22:59:03 +0100
postgresql-common (45) experimental; urgency=low
* PgCommon.pm, read_conf_file(): Allow '.' characters in configuration keys.
Closes: #352524
* debian/rules: Move pg_ctlcluster, pg_createcluster, pg_dropcluster, and
pg_upgradecluster man pages from section 1 to 8, since they are only for
administrators.
* Split off a new package postgresql-client-common. This is to avoid having
cron jobs, logrotate scripts, etc. if only the client apps are installed
on a box. (https://launchpad.net/bugs/34167)
* debian/postgresql-client-common.{pre,post}inst: Migrate user_clusters
conffile from postgresql-common to avoid dpkg questions.
-- Martin Pitt <mpitt@debian.org> Tue, 14 Mar 2006 22:43:04 +0100
postgresql-common (44) unstable; urgency=low
* PgCommon.pm, change_ugid(): Fix the order of $< and $> assignment so that
we don't trash the saved uid and can switch back later. This allows us to
make use of this function in the test suite, too.
* t/TestLib.pm: Use change_ugid() in exec_as() get auxiliary groups. This
makes the test suite work with SSL keys which are only readable by
ssl-cert group members.
* pg_ctlcluster: Untaint PID value read from autovacuum.pid.
* t/020_create_sql_remove.t: Add check that SSL is automatically enabled on
>= 8.0 clusters.
* pg_createcluster: Improve SSL key access check to be more robust.
* Enable taint checking in all programs and fix the resulting breakage.
* PgCommon.pm: Replace backticks program calling with proper |- pipe
opening to avoid intermediate shell and argument quoting problems.
* testsuite: Only execute tests ending with .t.
* Add t/100_upgrade_scripts.t: Test upgrade scripts.
* run-upgrade-scripts:
- Filter out the 'postgres' database on 8.1+ clusters.
- Temporarily enable connections to databases which disable them.
- Execute scripts in asciibetical order.
* debian/postgresql-common.postinst: Ensure that /var/lib/postgresql is
owned by postgres:postgres. (https://launchpad.net/bugs/32696)
* t/*.t: Remove hashbang lines to avoid lintian warnings.
* debian/postgresql-common.postinst: Only restart servers if upgrading from
a version with important pg_ctlcluster changes in between (currently,
prior than 40).
* t/090_multicluster.t: Add test for user_clusters behaviour.
* PgCommon.pm, user_cluster_map(): Print a meaningful error message instead
of 'invalid symbolic link' gibberish if a cluster in user_clusters or
.postgresqlrc does not exist.
* pg_ctlcluster:
- Exit with code 2 if the cluster is already (start)/not (stop) running
and fix error messages to be consistent. (See bug #355004)
- Document the exit codes in the POD.
- t/030_errors.t: Adapt test suite.
* debian/init.d-functions:
- Use log_daemon_msg/log_progress_msg to show all clusters of a particular
version on the same line, to better conform to standards.
- Call restart instead of stop/start.
- Do not fail if cluster is already (start)/not (stop) running to conform
to LSB.
- t/080_start.conf.t: Adapt test suite.
- Thanks to Peter Eisentraut for the original patch.
- Closes: #355004
-- Martin Pitt <mpitt@debian.org> Sun, 12 Mar 2006 09:57:57 +0100
postgresql-common (43) unstable; urgency=low
* debian/postgresql-common.cron.d: Update documentation for 8.1 and correct
paths in it. Closes: #351891
* pg_createcluster: Fix typos in POD. Closes: #351835
* debian/postgresql-common.dirs: Add /var/lib/postgresql to ensure that the
postgres user always has an existant home directory. Closes: #351985
* debian/supported-versions, lsb_debian(): Add 'testing'. Closes: #353754
* PgCommon.pm, change_ugid():
- Suppress warning on nonexistant user names.
- Do not split group list at comma; getgrent already converts commas in
/etc/groups to spaces, and splitting on commas breaks pam-ldap
environments. Thanks to Chmouel Boudjnah.
- Closes: #353674
* pg_wrapper: Set PGSYSCONFDIR to /etc/postgresql-common if it is unset, to
provide a sane default for the location of pg_service.conf.
Closes: #353832
* pg_dropcluster: Remove /etc/postgresql/<version> and
/var/lib/postgresql/<version> if empty.
* t/TestLib.pm: Added check_clean() method to test for empty PostgreSQL
related directories and processes, and use it in all tests.
* pg_dropcluster: Remove default log file. This avoids leaving it behind if
the log file directory was changed in postgresql.conf.
-- Martin Pitt <mpitt@debian.org> Tue, 21 Feb 2006 20:59:04 +0100
postgresql-common (42) unstable; urgency=low
* PgCommon.pm, change_ugid(): Implement initgroups() like behaviour to allow
running the postmaster in auxiliary groups. This is necessary for e. g.
reading shared SSL certificates.
* t/TestLib.pm, exec_as(): Also change group id, in order to be able to read
SSL certificates which are only group readable (which previously caused
the test suite to fail).
* debian/supported-versions: Add lsb_release output case 'unstable' to cope
with recent lsb-release change. Closes: #351475
-- Martin Pitt <mpitt@debian.org> Sun, 5 Feb 2006 12:36:53 +0000
postgresql-common (41) unstable; urgency=low
* pg_createcluster: Make the definition of 'cluster already exists' less
strict: check for files that indicate a cluster configuration instead of
requiring the directory to be completely empty.
* debian/maintscripts-functions, configure_version(): Improve check for
already existing clusters to not catch subdirectories with non-cluster
files (e. g. a single *.old and similar).
* pg_ctlcluster: Add option -o to pass parameters to the postmaster process.
* debian/postgresql-common.postinst: Avoid error message from ls if
/usr/lib/postgresql does not exist.
* PgCommon.pm, cluster_info(): Respect log_{directory,filename} settings;
only use Debian's log directory if neither is set. Thanks to Scott Chapman
for discovering this issue.
* pg_ctlcluster: Create the log file if it does not yet exist; this ensures
that we always know the file postmaster really uses and avoids the race
condition with nonexisting files if log_filename contains time macros.
* pg_createcluster: Explain possibility of overriding the log symlink with
log_* in postgresql.conf.
* architecture.html: Fix some typos, remove obsolete pg_upgradecluster
procedure.
-- Martin Pitt <mpitt@debian.org> Sun, 29 Jan 2006 11:38:01 +0000
postgresql-common (40) unstable; urgency=low
* debian/supported-versions: Add 8.1 to Ubuntu 5.10 to properly support
backport.
* PgCommon.pm: If /etc/postgresql-common/user_clusters does not exist, use
the default cluster instead of returning an invalid value. Also, do not
complain if the file does not exist (which is legitime). Closes: #348447
* debian/README.Debian: Fix 'detailled' typo. Closes: #346442
* Replace most calls to get_conf_value() with the much more efficient new
function read_cluster_conf_file().
* pg_upgradecluster: Factorized and cleaned up parameter deprecation/upgrade
code.
* Support auxiliary environment variables for postmaster:
- pg_createcluster: Create /etc/postgresql/version/cluster/environment
file (empty, just a comment).
- pg_dropcluster: Remove environment file.
- pg_ctlcluster: Clear environment and only set variables mentioned in
environment file and LANG/LC_ALL.
- Closes: #345516
* t/020_create_sql_remove.t: Check save environment and correct function of
the environment file.
* PgCommon.pm, next_free_port(): Check if the port is already in use, skip
it if so. Closes: #348875.
* t/090_multicluster.t: Create a socket bound to port 5434 and check that it
is not used by pg_createcluster.
-- Martin Pitt <mpitt@debian.org> Sat, 21 Jan 2006 17:16:32 +0100
postgresql-common (39) unstable; urgency=low
* Add t/090_multicluster.t: Test multicluster operation and environment
variable handling (PGCLUSTER, PGPORT).
* pg_upgradecluster: When upgrading from < 8.1 to >= 8.1, check for users
and groups with the same name and abort if there are any. Closes: #343622
* t/040_upgrade.t: Add self test for above bug (clashing role names on
upgrade).
* testsuite: Run the tests twice; once with umask 022, once with umask 077.
* Fix operation under umask 077:
- pg_createcluster: Create /var/log/postgresql with mode 0755.
- PgCommon.pm, set_cluster_start_conf(): Always create start.conf with
0644 mode by default, but preserve permissions when changing the file.
- pg_upgradecluster: Ensure correct permissions of the temporary
pg_hba.conf that only allows superuser connections. Closes: #345670
-- Martin Pitt <mpitt@debian.org> Tue, 3 Jan 2006 20:27:10 +0100
postgresql-common (38) unstable; urgency=low
* pg_ctlcluster: Remove --setuid option, it does not make too much sense
after all and only confuses users. Closes: #343063
* Remove pg_ctlcluster's -s option from all scripts.
* pg_wrapper: Fix 'postgreqsl' typo in POD. Closes: #343938
* pg_createcluster: Do not simply close STDOUT, but reopen it to /dev/null
to avoid initdb complaining about invalid filehandles. Closes: #344180
* debian/init.d-functions: Check if the requested version's postmaster is
available before trying to start/stop a cluster to avoid errors when a
server package is removed, but not purged. Closes: #343730
-- Martin Pitt <mpitt@debian.org> Thu, 22 Dec 2005 18:41:23 +0100
postgresql-common (37) unstable; urgency=low
* debian/postgresql-common.config: Only show the obsolete version warning
once.
* Add French debconf translations, thanks to Guilhelm Panaget.
Closes: #340200, #341267
* debian/postgresql-common.postinst: Change default permissions of the
private SSL key to root:postgres 0640 to prevent potential modification of
the certificate by the postmaster. Closes: #341141
* Add Czech debconf translations, thanks to Miroslav Kure. Closes: #341951
* debian/postgresql-common.postinst: Check that the postgres user/group is
not root; fail installation with a meaningful error message if it is.
Closes: #340459
* t/040_upgrade.t: Check upgrading of sequence and stored PL/PgSQL
procedure.
* pg_upgradecluster: Change hardcoded and obsolete library paths to
'$libdir' in the new cluster. This fixes upgrades of 7.4 clusters that
were upgraded from woody. Closes: #338031
-- Martin Pitt <mpitt@debian.org> Sat, 10 Dec 2005 23:36:41 +0100
postgresql-common (36) unstable; urgency=low
* pg_createcluster: Add --start-conf option to set start.conf value.
* t/080_start.conf.t: Test --start-conf option.
* debian/postgresql-common.config: Fix determination of latest version: Use
highest supported version, not highest installed one.
-- Martin Pitt <mpitt@debian.org> Mon, 28 Nov 2005 23:23:18 +0100
postgresql-common (35) unstable; urgency=low
* pg_ctlcluster: If the socket already responds, but connections fail
several times in a row, give the postmaster some more time (5s) to
actually accept connections.
* t/060_obsolete_confparams.t: Start with a full configuration file for
every tested version, instead of just upgrading the previously upgraded
version. This gives an exhaustive check for obsolete parameters.
* pg_upgradecluster: Handle all outstanding obsolete parameters when
upgrading to 8.1:
- bgwriter_percent -> bgwriter_{lru,all}_percent
- bgwriter_maxpages -> bgwriter_{lru,all}_maxpages
* PgCommon.pm: Add new function set_cluster_start_conf() for easier change
of start.conf.
* Rename test 030_create_errors.t to 030_errors.t since it covers more
errors than just creation failures.
* Add test t/080_start.conf.t: Check start.conf handling and upgrading.
* debian/supported-versions: Add Debian release 3.1.
Closes: #340397, #340483
* debian/postgresql-common.config: Ignore things in /usr/lib/postgresql that
are not a version-specific postgresql subdirectory. Closes: #340470
* t/001_packages.t: Check that procps is installed, the selftests need it.
-- Martin Pitt <mpitt@debian.org> Thu, 24 Nov 2005 22:27:51 +0100
postgresql-common (34) unstable; urgency=low
* debian/postgresql-common.postrm: Fix syntax error.
* Add debian/supported-versions: Script to determine the set of supported
PostgreSQL major versions for the running distro/release. Currently covers
Debian sid/testing, Ubuntu 5.10 and Ubuntu 6.04.
* debian/postgresql-common.config: Remove hardcoded versions, use
supported-versions now.
* Minor test suite variable cleanup.
* debian/README.Debian: Update for version 8.1.
-- Martin Pitt <mpitt@debian.org> Tue, 22 Nov 2005 01:17:32 +0100
postgresql-common (33) unstable; urgency=low
* pg_wrapper: Instead of checking $0 against a static list, just check
whether the program is available in postgresql's bin dir. This allows
other packages which provide stuff in pg_bin to install additional
symlinks and get pg_wrapper support for free.
* pg_checksystem, pg_createcluster, pg_dropcluster, pg_upgradecluster: Check
that effective user is root before doing anything to avoid confusing error
messages.
* pg_ctlcluster: Enhance the check if cluster is up and running to make it
more reliable. This should fix the 'Database system is starting up' errors
on autovacuum startup.
* debian/init.d-functions: Remove legacy init script output and always use
LSB functions. Add lsb-base dependency.
* debian/po/de.po: Fix cluster version in German translation.
Closes: #340096
* debian/postgresql-common.postrm: Check if /etc/postgresql-common exists
before trying to remove it. Closes: #340187
* pg_upgradecluster:
- Fix error message for nonexisting cluster.
- Use pg_dump/pg_restore with custom format to support BLOBs.
- Upgrade databases with disabled connection.
- Execute ANALYZE after upgrade instead of pg_maintenance.
- Set correct autovacuum option in postgresql.conf when
upgrading to 8.1, depending on whether autovacuuming was used for the
old cluster.
- Restrict access to the clusters to the cluster owner and to the local
Unix socket during upgrade. Closes: #338025
- Convert to 'strict' Perl mode.
-- Martin Pitt <mpitt@debian.org> Mon, 21 Nov 2005 23:30:34 +0100
postgresql-common (32) unstable; urgency=low
* debian/postgresql-common.config: Fix stderr redirection when checking for
installed packages. Closes: #339457
* pg_createcluster: Add a POD stanza about cluster names and their purpose.
* Explained why and how to delete the main cluster of the new version before
upgrading the old main cluster. Closes: #339392
* pg_ctlcluster: Call setsid() to unbind from controlling terminal before
starting the daemon. Closes: #338862
* t/020_create_sql_remove.t: Add selftest for associated terminal (bug
#338862).
* debian/control: Version dependency on debconf to (>= 0.5.00) to make
lintian happy.
-- Martin Pitt <mpitt@debian.org> Fri, 18 Nov 2005 00:42:48 +0100
postgresql-common (31) unstable; urgency=low
* Completely new test suite rewritten from scratch; the new suite now uses
perl instead of shell, can be extented more easily, handles changing of
supported major versions and does more tests.
* Fix start.conf handling of pg_upgradecluster:
- Disable automatic startup of old backup cluster in start.conf.
- Preserve the original start.conf in new cluster.
- Error out if original cluster is disabled.
* Add debconf note about upgrading from obsolete version 8.0.
* debian/control: Add debconf dependency.
* Disable automatic autovacuum invocation for -contrib-8.1:
- pg_ctlcluster: Check version before (not after) complaining about a
missing pg_autovacuum
- debian/maintscripts-functions: Check version before trying to call
autovac-{start,stop}
- Closes: #337925
* pg_maintenance: Add --cluster option to work only on selected cluster.
* pg_upgradecluster: Vacuum and analyze the target cluster after upgrade.
Closes: #338010
* pg_ctlcluster: Exit with nonzero if cluster is already running.
* pg_upgradecluster configuration parameter upgrading:
- When upgrading to 8.1+, disable obsolete 'rendezvous_name' option.
- When upgrading to 8.0+, rename sort_mem to work_mem.
-- Martin Pitt <mpitt@debian.org> Tue, 15 Nov 2005 12:38:48 +0100
postgresql-common (30) unstable; urgency=high
* Urgency high since this fixes a stupid bug introduced in 29.
* pg_lsclusters: Add -h/--no-header option to suppress header output.
* pg_createcluster: Fix the default start.conf to contain "auto" by default.
* PgCommon.pm, [sg]et_conf_value: Regard fractional and negative values as
simple values that do not need quoting. Closes: #336675
-- Martin Pitt <mpitt@debian.org> Thu, 3 Nov 2005 16:30:25 -0500
postgresql-common (29) unstable; urgency=low
* pg_wrapper: Do not override an already defined PGPORT environment
variable. Closes: #335692
* debian/postgresql-common.cron: Check if pg_maintenance is available before
calling it, to avoid errors when package is removed, but not purged.
Closes: #333803
* pg_createcluster: Do not enable SSL on 7.4 clusters since enabling it
without enabling the TCP socket breaks.
* Add support for configuring the start/stop behavior in start.conf:
- debian/init.d-functions: Only start/stop the cluster in 'auto' mode.
- pg_ctlcluster: Only operate in 'auto' and 'manual' modes, print an error
in 'disabled' mode.
- pg_createcluster: Create a default start.conf file.
- pg_dropcluster: Remove start.conf file.
- architecture.html, pg_createcluster POD: Document the file and the
possible options.
- Closes: #224047
* Fix testsuite expected output for new upstream versions (7.4.9 and 8.0.4).
-- Martin Pitt <mpitt@debian.org> Thu, 27 Oct 2005 23:09:45 -0400
postgresql-common (28) unstable; urgency=high
* Urgency high since this version only fixes a very important bug with a
safe patch.
* Moved package development to bazaar-ng, updated debian/README.Devel.
* debian/postgresql-common.postinst: Revert change of version 26: Do create
the socket directory in the postinst, otherwise clusters will default to
socket directory /tmp in some cases.
-- Martin Pitt <mpitt@debian.org> Thu, 20 Oct 2005 12:56:36 +0200
postgresql-common (27) unstable; urgency=low
* Changed my debuild alias to explicitly ignore .arch-ids directories (a
mere -i catched some, but not all arch directories). Closes: #328204
* Add lintian overrides for missing manpages; manpages are provided by
postgresql-client-X.Y packages.
* pg_ctlcluster: Have autovac-* commands error out with a meaningful message
instead of claiming success if pg_autovacuum is not available.
* pg_ctlcluster:
- Increase the timeout for the started postmaster to 30 seconds to cope
with slow startup. Closes: #320444
- Immediately fail if the postmaster produced log output and does not run
any more. This avoids unnecessary timeouts on configuration errors and
the like.
* pg_createcluster: Listen on localhost by default only since upstream
considers listening on all interfaces by default not safe enough.
Closes: #318820
* pg_dropcluster: Handle missing data directories gracefully.
Closes: #330135
-- Martin Pitt <mpitt@debian.org> Wed, 28 Sep 2005 22:59:04 +0200
postgresql-common (26) unstable; urgency=low
* Fix permissions of socket directory:
- debian/postgresql-common.postinst: Drop creation of socket directory
since we do it in the init script anyway.
- debian/init.d-functions: Create directory with permissions 2775 instead
of 755 and also correct the permissions of an already existing
directory.
- Closes: #326049
* debian/postgresql-common.postinst: Remove --no-create-home option from
adduser call to ensure that the postgres user always has a sensible home
directory that does not break "su - postgres".
* pg_wrapper: Give a meaningful error message if no client packages are
installed, instead of "Invalid PostgreSQL cluster version".
Closes: #326771
* debian/README.Devel: Explain the structure and development of Debian's
PostgreSQL packages.
-- Martin Pitt <mpitt@debian.org> Wed, 7 Sep 2005 10:50:31 +0200
postgresql-common (25) unstable; urgency=low
* PgCommon.pm, get_cluster_socketdir():
- If the socket directory is configured in postgresql.conf, use it right
away instead of doing experiments before.
- Improved sanity checking.
- Error out if the data directory cannot be stat'ed, since we cannot
determine a sensible directory in this case.
* pg_upgradecluster: Don't call cluster_info() on the yet nonexistant
new cluster, just check for the data directory for determining if the new
cluster already exists.
* debian/control: Add adduser dependency.
* testsuite: Generalize stopping of servers to work with all versions.
* Avoid whinging during log rotation if there is no log file at all:
- debian/postgresql-common.logrotate: Add "missingok".
- debian/postgresql-common.dirs: Create /var/log/postgresql/.
- Server packges have been changed to not clean away /var/log/postgresql/
on purge.
- Closes: #325330
* pg_ctlcluster: When starting the autovacuum daemon, don't just wait for 1
second, but actually test if the server is running (timeout: 5 seconds);
this should make the daemon startup much more reliable.
* Remove test upgrade script upgrade-scripts/all_test_t1.sql, it has done
its purpose now.
-- Martin Pitt <mpitt@debian.org> Wed, 31 Aug 2005 01:01:49 +0200
postgresql-common (24) unstable; urgency=low
* Add /usr/share/postgresql-common/pg_checksystem: Check system parameters
which are relevant to PostgreSQL. Right now this checks if write caching
is enabled on any disk containing PostgreSQL clusters.
* debian/postgresql-common.postinst: Call pg_checksystem. Closes: #318928
* Bump Standards-Version to 3.6.2.
* debian/postgresql-common.postinst: Setup user 'postgres' with /bin/bash as
default shell. Closes: #320810
* pg_wrapper, debian/postgresql-common.links: Wrap reindexdb, it is a
standard client program in 8.1.
* pg_createcluster: Do not create autovacuum log file for servers >= 8.1.
* PgCommon.pm: For determining avac_enable on 8.1+ servers, read
"autovacuum" setting from postgresql.conf.
* pg_maintenance: Use avac_enable flag instead of checking for the
pg_autovacuum pid file to determine whether autovacuuming is enabled. This
is a more general approach and works for all server versions.
* pg_ctlcluster: Do not attempt to start pg_autovacuum on 8.1+ servers.
* pg_createcluster: Add hook for version specific function to configure
postgresql.conf.
* pg_createcluster: Add default configuration for 7.4 clusters:
- tcpip_socket = true
- stats_row_level = true
* pg_createcluster: Add default configuration for 8.0 clusters:
- listen_addresses = '*'
- stats_row_level = true
* pg_createcluster: Add default configuration for 8.1 clusters:
- listen_addresses = '*'
- stats_row_level = on
- autovacuum = on
* PgCommon.pm, set_conf_value(): Preserve comments.
* debian/postgresql-common.postinst: Generalized restarting of all clusters
to make it automatically work for future versions.
* pg_createcluster: Adapt pg_hba.conf to the current default (md5 for host
connections, ident sameuser for local ones); this obsoletes the
default-pg_hba.conf patches in the server packages.
* user_clusters: Update comments, throw out bogus documentation.
Closes: #324749
* pg_createcluster: Only mangle configuration files (pg_hba.conf, SSL
enabling, etc.) if we create a new cluster, not if we integrate an already
existing one. Closes: #323878
* Add debian/postgresql-common.logrotate: Simple log rotation.
Closes: #316100
-- Martin Pitt <mpitt@debian.org> Tue, 23 Aug 2005 23:10:09 +0200
postgresql-common (23) unstable; urgency=low
* pg_maintenance: Change directory to / before changing uid to avoid "could
not change directory" errors. Closes: #318604.
* Drop upgrade-scripts/all_vacuum_t1.sql since it causes too much trouble
with big databases. Replace it with upgrade-scripts/all_test_t1.sql which
just counts the tables in the database. This should be unintrusive, fast,
and still appropriate for testing the upgrade scripts mechanism.
Closes: #319035
* pg_ctlcluster: Check if autovacuum log file symlink is dangling and avoid
warnings about uninitialized warnings. Instead print out a meaningful
error message. Closes: #318717
* debian/postgresql-common.postinst: Generate a dummy
/etc/postgresql-common/root.crt if not present. Closes: #319110
* debian/postgresql-common.postrm: Remove /etc/postgresql-common/root.crt on
purge.
* pg_createcluster: If /etc/postgresql-common/root.crt exists, symlink
root.crt from the data directory. Closes: #318818
* debian/README.Debian: Document root.crt handling.
-- Martin Pitt <mpitt@debian.org> Thu, 21 Jul 2005 00:44:52 +0200
postgresql-common (22) unstable; urgency=low
* pg_createcluster: Set default authentication for TCP connections to "md5"
instead of the old "ident sameuser" default since it makes a lot more
sense.
* tests/000_debs: Fix detection of whether a package is installed.
* tests/100_encodings: Fix filtering of postmaster processes.
-- Martin Pitt <mpitt@debian.org> Thu, 14 Jul 2005 12:00:16 +0300
postgresql-common (21) unstable; urgency=low
* README.Debian: Explain that a server is required, give postgresql-8.0
example. (The descriptions of the packages have been updated in
postgresql-{7.4,8.0}.) Closes: #313247
* README.Debian: Add "-s /bin/sh" to su command to also work with disabled
shells for postgres.
* README.Debian: Document autovacuum handling.
-- Martin Pitt <mpitt@debian.org> Tue, 12 Jul 2005 09:41:30 +0300
postgresql-common (20) unstable; urgency=low
* Add infrastructure for executing SQL or executable scripts on clusters and
databases on upgrade. This can be useful to apply security updates which
need to change database layouts (like for CAN-2005-1409), do checks on
upgrades, and maybe other things.
- Add run-upgrade-scripts and call it in the postinst.
- Add /usr/share/postgresql-common/upgrade-scripts/ where scripts are
stored into.
- Add /usr/share/postgresql-common/upgrade-scripts/SPECIFICATION.
- This checks for available databases, thus will not fail on a nonexisting
template0. Closes: #312707
- Tests are run right after starting all clusters. Also, the package
installation does not fail if the upgrade fails on a single cluster or
database. Closes: #308685
* pg_ctlcluster: pg_ctl's -o option is not cumulative, fix postmaster
argument passing. This ensures that "-c unix_socket_directory" is always
passed to the postmaster.
* pg_createcluster: Do not configure a cluster for SSL if the owner is not
the owner of /etc/postgresql-common/postgresql.pem. This fixes cluster
creation for non-postgres owners.
* Add test 130_nonpostgres_clusters: Check cluster creation and operation
for a cluster owned by "nobody".
* Add upgrade-scripts/all_vacuum_t1.sql: Upgrade script that will just
vacuum all available databases. This is pretty useful and harmless, and is
a good thing to test upgrade scripts at a larger scale.
* init.d-functions: Rename autovac-* to autovac_* to comply to POSIX shell
identifier rules. Closes: #315551
-- Martin Pitt <mpitt@debian.org> Sun, 26 Jun 2005 14:26:56 +0200
postgresql-common (19) unstable; urgency=low
* debian/postgresql-common.postinst: Generate an SSL certificate and key if
it doesn't exist yet and openssl is installed. Closes: #212526
* debian/control: Recommend openssl and explain its purpose.
* pg_createcluster: If SSL certificate and key exist, symlink it to the
cluster directory where the postmaster looks for them and enable SSL in
the configuration.
* debian/postgresql-common.postinst: Only restart servers when configuring.
* debian/init.d-functions: "pg_ctl restart" does not seem to re-read certain
configuration parameters like the socket directory, so replace it with
stop+start.
* debian/postgresql-common.postinst: Create /var/run/postgresql before
creating the initial cluster to ensure that the socket directory will be
present. Closes: #312899
* Added debian/postgresql-common.postrm: Clean up on purge.
* debian/postgresql-common.postinst: Check whether the user postgres exists
before calling adduser to avoid confusing warning messages.
-- Martin Pitt <mpitt@debian.org> Wed, 22 Jun 2005 17:33:50 +0200
postgresql-common (18) unstable; urgency=low
* pg_ctlcluster: Change directory to /var/lib/postgresql to avoid error
messages when doing an operation in a directory which the database owner
cannot access.
* pg_ctlcluster: Pass the default socket directory to the postmaster,
otherwise it will always be /tmp if unix_socket_directory is not specified
in postgresql.conf. Closes: #314537
* Added tests/041_server_default_socketdir: Check that the socket is created
in /var/run/postgresql if unix_socket_directory is not specified.
* pg_ctlcluster:
- On startup, check for a stale or invalid PID file and remove it if
appropriate.
- On stop, bail out on an invalid PID file. Closes: #304466.
* Added tests/021_invalid_pidfile: Corrupt the pid file in various ways
while the server is running and down. Also check double start/stop.
-- Martin Pitt <mpitt@debian.org> Sat, 18 Jun 2005 20:30:10 +0200
postgresql-common (17) unstable; urgency=low
* PgCommon.pm, cluster_port_running(): Attempt to connect() to the server
socket for probing if the server is running. The previous method of using
'psql -l' asked for a password if md5/password authentication is used
locally. Closes: #314292
* testsuite: Ignore whitespace changes in expected vs. actual output.
* tests/100_encodings: Fix race condition when showing postmaster processes:
If we catch the postmaster right at fork() time, ps shows two postmaster
instances instead of one. Filter them away to get the expected output.
-- Martin Pitt <mpitt@debian.org> Thu, 16 Jun 2005 11:44:08 +0200
postgresql-common (16) unstable; urgency=low
* pg_createcluster: Add --logfile parameter.
* pg_wrapper(1): Clarify synopsis.
* debian/rules: Deuglify manpages by building them with --quotes=none.
* debian/maintscripts-functions: Do not create a default "main" cluster when
upgrading a server package.
* pg_upgradecluster: Handle more configuration parameter transitions:
- syslog -> log_destination
- log_statement: false/true -> none/all
- log_{pid,timestamp,hostname,source_port} -> log_line_prefix
- obsolete max_expr_depth
* pg_upgradecluster: Use new replace_conf_value() function which
produces nicer configuration files with transitioned parameters.
* Add test 120_obsolete_confparams: Upgrade a 7.4 cluster with all
possible 7.4 options enabled.
* PgCommon.pm: Fix parsing of autovacuum parameters.
* pg_ctlcluster: Respect the avac_debug autovacuum configuration option.
* pg_createcluster: Since the new default socket directory is
/var/run/postgresql, explicitly set /tmp as socket directory for clusters
if /var/run/postgresql is not writable by the cluster owner.
* PgCommon.pm, get_cluster_socketdir(): If unix_socket_directory is not
specified explicitly in postgresql.conf, default to /var/run/postgresql
for postgres-owned clusters. Closes: #313651
* pg_ctlcluster: Do not sleep at all after starting the postmaster if we
don't run the autovacuum daemon; sleep for a full second if we do.
-- Martin Pitt <mpitt@debian.org> Wed, 15 Jun 2005 01:01:11 +0200
postgresql-common (15) unstable; urgency=low
* First unstable upload, welcome to the PostgreSQL future.
* Quiet maintenance:
- pg_maintenance: Supply -q to vacuumdb unless in verbose mode.
- postgresql-common.cron.d: Direct stdout to /dev/null.
- Adapted tests/060_maintenance expected output.
- Closes: #312298
-- Martin Pitt <mpitt@debian.org> Tue, 7 Jun 2005 12:11:48 +0200
postgresql-common (14) experimental; urgency=low
* pg_ctlcluster: Check whether mutually exclusive log_*_stats are enabled
to avoid the "FATAL: invalid cache id: 30" error on client invocations.
* Added test 110_invalid_conf: test checking of invalid configurations.
* Ship test suite in /usr/share/postgresql-common.
* pg_ctlcluster: Fix logging of autovacuum daemon.
* pg_ctlcluster: Check if autovacuum daemon is really running, exit with an
error and print log if not.
-- Martin Pitt <mpitt@debian.org> Sun, 5 Jun 2005 11:19:08 +0200
postgresql-common (13) experimental; urgency=low
* pg_createcluster: Add option --start to start the new cluster right after
creating it.
* tests/000_existing_clusters: Check for stale postmaster and pg_autovacuum
processes.
* testsuite:
- Temporarily stop existing servers and move away existing files before
executing the tests.
- Restore the original files after the tests.
* pg_upgradecluster: Check return value of pg_dumpall and psql and fail if
they are not successful.
* pg_createuser: Fix indentation of socket warning.
* pg_upgradecluster: Check if cluster is running, exit with an error if not.
* pg_createcluster: Added option --encoding to override detection from
locale.
* pg_createcluster: Guess default encoding from locale for clusters older
than 8.0 to get the same behaviour as for 8.0.
* debian/control: Conflict to postgresql-7.4 << 1:7.4.8-5 since earlier
versions do not support non-ASCII encodings (due to missing pg_encoding).
* pg_ctlcluster: Check that the cluster owner uid/gid really exist.
Closes: #311546
* pg_lsclusters: Ensure that there is at least one space between the colums.
* Added tests/100_encodings which checks cluster creation and updates
for different encodings and locales.
* pg_upgradecluster: Preserve socket directory, locales, and encoding.
* tests/100_encodings: Check the locale the postmaster is running under.
-- Martin Pitt <mpitt@debian.org> Sat, 4 Jun 2005 15:44:40 +0200
postgresql-common (12) experimental; urgency=low
* pg_ctlcluster: Remove "status" command, it's not documented and not
really useful.
* PgCommon: Fix cluster_info for avac_logfile to make pg_dropcluster clean
away the autovacuum log file.
* pg_maintenance: -v only influences vacuumdb output now, always show
clusters.
* Added a test suite:
- Test scripts are in tests/*.
- Expected output is in tests/*.ex.
- Test suite is run with './testsuite' as root.
* pg_createcluster:
- Converted optional third parameter to option --datadir.
- Rework POD to have a separate OPTIONS section.
- Add option description to online help.
* pg_ctlcluster: Improve POD.
* pg_upgradecluster:
- Initial framework for handling obsolete configuration parameters.
- Handle transition of {tcpip_socket, virtual_host} -> listen_addresses.
* debian/init.d-functions: If /lib/lsb/init-functions is available, use LSB
init script functions.
* pg_ctlcluster: After start, check whether the cluster is really running.
If it does not come up after 5 seconds, fail and print the recent log
portion.
-- Martin Pitt <mpitt@debian.org> Tue, 31 May 2005 12:16:26 +0200
postgresql-common (11) experimental; urgency=low
* pg_ctlcluster: Cleaned up variables.
* Factored out change_ugid() to PgCommon.pm and use it in the scripts.
* Added pg_maintenance(8) program.
* Activated formerly disabled postgresql-common.cron.d which calls
pg_maintenance.
* pg_createcluster: Default to cluster owner 'postgres' if no owner is
specified.
* pg_ctlcluster: Fix pg_controldata output parsing and call pg_controldata
under locale 'C' to work with all locales. Closes: #310716
* pg_createcluster: Added --socket-dir option.
* PgCommon.pm: Fix declaration of @lines in set_conf_value() to avoid
duplicating the lines in configuration files.
* PgCommon.pm: Converted to use strict to avoid future errors.
* pg_maintenance: Removed option '-e' from vacuumdb call (leftover from
debugging).
* PgCommon.pm, user_cluster_map(): If several clusters exist, but no
mapping is configured, return not only the default port's cluster version,
but also its name. This fixes the socket directory determination for this
case.
* debian/rules: Fix clean target to remove the manpages created from POD
again.
* pg_upgradecluster: Provide socket directory arguments to psql and
pg_dumpall to make it work for sockets which are not in /tmp.
-- Martin Pitt <mpitt@debian.org> Sat, 28 May 2005 16:02:59 +0200
postgresql-common (10) experimental; urgency=low
* pg_ctlcluster: Supply cluster socket directory to pg_autovacuum.
-- Martin Pitt <mpitt@debian.org> Tue, 24 May 2005 22:57:33 +0200
postgresql-common (9) experimental; urgency=low
* Add README.Debian with some general introduction, "first steps for the
impatient", and pointers to further documentation.
* pg_ctlcluster: Check validity of postmaster locale before setting it.
* pg_createcluster: Check validity of locale before calling initdb under it.
* pg_wrapper: Support PGCLUSTER environment variable. Closes: #305912
* pg_upgradecluster:
- Copy original configuration files.
- Configure the target cluster to use the original port, move the old
cluster to a previously unused port.
- Start the new cluster after upgrade.
* debian/init.d-functions: Create /var/run/postgresql if it does not exist.
* pg_createcluster: Set the socket directory to /var/run/postgresql for
postgres-owned clusters. Print a warning to change the directory for other
owners. Closes: #308597
* pg_wrapper: If PGHOST is not defined, set it to the cluster's socket
directory to make client programs work with non-default socket
directories.
-- Martin Pitt <mpitt@debian.org> Sun, 22 May 2005 22:22:38 +0200
postgresql-common (8) experimental; urgency=low
* pg_ctlcluster: Check whether owner is in the shadow group, and keep shadow
group privilege in this case; this is a poor workaround for Perl's lack of
an initgroups() functions. Closes: #305427
* debian/postgresql-common.postinst: Fix adduser invocation, set home
directory to /var/lib/postgresql. Closes: #308589
* Remove pg_default.1 and pg_exec.1, these programs do not exist. Closes:
#305724
* debian/postgresql-common.links: Add a symlink postgresql-common(7) to
pg_wrapper(1) to make finding the manpage a bit more obvious.
* PgCommon.pm, user_cluster_map(): If there are no clusters, use the latest
version; this makes it possible to use remote clusters with no local ones.
Closes: #306836
-- Martin Pitt <mpitt@debian.org> Fri, 13 May 2005 00:35:35 +0200
postgresql-common (7) experimental; urgency=low
* Fix warning when calling pg_wrapper with an invalid cluster.
* PgCommon.pm, user_cluster_map(): If only one cluster exists, return that
if no match is found in the map files.
* pg_ctlcluster: Start the postmaster under the locale that was used with
initdb.
* Updated documentation in architecture.html.
-- Martin Pitt <mpitt@debian.org> Wed, 20 Apr 2005 02:34:19 +0200
postgresql-common (6) experimental; urgency=low
* pg_dropcluster: Check if postmaster and autovacuum log file paths are
defined before unlinking them to avoid a warning. Closes: #303259
* pg_ctlcluster: Documented the autovacuum stuff in the POD.
* debian/init.d-functions: Add autovacuum commands.
* debian/maintscripts-functions: (Re)start/stop autovacuum daemons on
configuration/removal of p-contrib-*.
* pg_ctlcluster, autovacuum_start(): Check for already running daemon before
starting a new one.
* pg_createcluster: Add an explicit "local all" entry for the database
superuser to pg_hba.conf. Closes: #303274
-- Martin Pitt <mpitt@debian.org> Wed, 6 Apr 2005 20:59:28 +0200
postgresql-common (5) experimental; urgency=low
* PgCommon.pm: Internalize get/set_conf_value, export get/set_cluster_port
instead.
* pg_ctlcluster: Integrated pg_autovacuum startup if -contrib is installed
(based on some patches from Adam R. Skutt, thanks).
* pg_createcluster: Create autovacuum_log symlink and log file.
* pg_dropcluster: Remove autovacuum_log symlink and log file.
* PgCommon.pm: If a configuration file is not found in the cluster conf dir,
fall back to the one in /etc/postgresql-common.
* Install /etc/postgresql-common/autovacuum.conf as a fallback default
configuration file for pg_autovacuum.
-- Martin Pitt <mpitt@debian.org> Sun, 3 Apr 2005 09:10:27 +0200
postgresql-common (4) experimental; urgency=low
* pg_upgradecluster: Uncomment library search path (artifact from
debugging).
* debian/postgresql-common.postinst: Don't create postgres user with home /,
this can lead to problems sometimes.
* pg_ctlcluster: Fixed pg_ctl invocation (dangling -o argument with versions
< 8.0, caused errors when using dash as /bin/sh). Closes: #300896
-- Martin Pitt <mpitt@debian.org> Tue, 22 Mar 2005 23:32:47 +0100
postgresql-common (3) experimental; urgency=low
* Add richer set of common maintainer scripts functions (for package
removal, and also for client and contrib packages).
* Use alternatives system to link manpages from
/usr/share/postgresql/<version>/man/... to /usr/share/man.
-- Martin Pitt <mpitt@debian.org> Mon, 21 Mar 2005 00:33:22 +0100
postgresql-common (2) experimental; urgency=low
* pg_wrapper: Check that specified cluster actually exists.
* Fix some Perl warnings.
* Added initial version of pg_upgradecluster(8).
-- Martin Pitt <mpitt@debian.org> Mon, 14 Mar 2005 17:51:22 +0100
postgresql-common (1) experimental; urgency=low
* New package to provide a common infrastructure for different PostgreSQL
versions. This finally fixes all bugs concerning failed automatic
upgrades. Closes: #277700, #282803, #224047, #229240, #232553, #279184,
#241337, #247261, #157282, #167864, #305347
* pg_wrapper now has a central role for mapping clients to clusters, so it
is not "overkill" any more. Closes: #201702
-- Martin Pitt <mpitt@debian.org> Sun, 20 Feb 2005 23:54:54 +0100
|