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 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210
|
mysql-5.5 (5.5.42-1) unstable; urgency=medium
[ James Page ]
* SECURITY UPDATE: Update to 5.5.41 to fix security issues:
- http://www.oracle.com/technetwork/topics/security/cpujan2015-1972971.html
- CVE-2015-0411, CVE-2015-0382, CVE-2015-0381, CVE-2015-0432,
CVE-2014-6568, CVE-2015-0374
(Closes: #775881).
* d/p/fix-func_math-test-failure.patch: Dropped, included upstream.
[ Akhil Mohan ]
* New upstream version, resolving date driven test failures in certs.
* Example option in log_slow_queries d/additions/my.cnf is deprecated
and replaced with options slow_query_log_file and slow_query_log.
(Closes: #677222)
-- James Page <james.page@ubuntu.com> Mon, 09 Feb 2015 14:12:44 +0000
mysql-5.5 (5.5.40-1) unstable; urgency=medium
* SECURITY UPDATE: Update to 5.5.40 to fix security issues:
- http://www.oracle.com/technetwork/topics/security/cpuoct2014-1972960.html
- CVE-2012-5615, CVE-2014-4274, CVE-2014-4287, CVE-2014-6463,
CVE-2014-6464, CVE-2014-6469, CVE-2014-6478, CVE-2014-6484,
CVE-2014-6491, CVE-2014-6494, CVE-2014-6495, CVE-2014-6496,
CVE-2014-6500, CVE-2014-6505, CVE-2014-6507, CVE-2014-6520,
CVE-2014-6530, CVE-2014-6551, CVE-2014-6555, CVE-2014-6559
(Closes: #765663, #769337)
* d/p/fix-mysqlhotcopy-test-failure.patch: Add return code 255 to the list
of allowable return codes for mysqlhotcopy tests.
* d/rules: Enable parallel builds.
-- James Page <james.page@ubuntu.com> Mon, 24 Nov 2014 16:31:57 +0000
mysql-5.5 (5.5.39-1) unstable; urgency=medium
* SECURITY UPDATE: Update to 5.5.38 to fix security issues:
- http://www.oracle.com/technetwork/topics/security/cpujul2014-1972956.html
- CVE-2014-2494
- CVE-2014-4207
- CVE-2014-4258
- CVE-2014-4260
* New upstream release.
* d/p/fix-func_math-test-failure.patch: Fix for failing func_math test
(Closes: #753196, #746883).
-- James Page <james.page@ubuntu.com> Mon, 01 Sep 2014 13:20:20 +0100
mysql-5.5 (5.5.37-1) unstable; urgency=medium
* SECURITY UPDATE: Update to 5.5.37 to fix security issues (Closes: #744910)
- http://www.oracle.com/technetwork/topics/security/cpuapr2014-1972952.html
- CVE-2014-0001 (Closes: #737596).
- CVE-2014-0384
- CVE-2014-2419
- CVE-2014-2430
- CVE-2014-2431
- CVE-2014-2432
- CVE-2014-2436
- CVE-2014-2438
- CVE-2014-2440
* d/mysql-server-5.5.mysql.init: Fixup indentation on previous change
(Closes: #739846).
* d/rules: Always install apparmor profile, not just on Ubuntu
(Closes: #736087).
* d/control: Update for use of virtual-* packages for switching to/from
MySQL alternatives.
* d/watch,repack.*: Drop repackaging as upstream tarball is now DFSG
compliant.
-- James Page <jamespage@debian.org> Thu, 24 Apr 2014 18:03:59 +0100
mysql-5.5 (5.5.35+dfsg-2) unstable; urgency=low
[ Clint Byrum ]
* d/mysql-server-5.5.mysql.init: Increase timeout to 30s (Closes: #736452).
* d/mysql-server-5.5.postinst: Run mysql_install_db as mysql so tables are
not created as root (Closes: #737224).
[ Robie Basak ]
* Re-sync relevant Ubuntu changes:
- d/control: Make innotop usable without installing Suggests.
- d/rules: Build with debug symbols.
- d/{additions/my.cnf,mysql-server-5.5.mysql-server.logrotate}:
Write an error log and logrotate it.
- d/control,rules,apparmor-profile,mysql-server-5.5.files:
Add AppArmor profile (Closes: #736087).
- d/control: Move mailx from Recommends to Suggests.
- d/control,d/tests/*: Add DEP-8 tests.
- d/control: Re-add mysql-testsuite metapackage.
[ James Page ]
* d/control: Drop Nicholas from Uploaders, MIA (Closes: #739361).
-- James Page <jamespage@debian.org> Wed, 19 Feb 2014 12:37:01 +0000
mysql-5.5 (5.5.35+dfsg-1) unstable; urgency=low
[ Clint Byrum ]
* Drop creation of insecure database permissions (Closes: #732306):
- d/p/33_scripts__mysql_create_system_tables__no_test.patch,
d/p/41_scripts__mysql_install_db.sh__no_test.patch,
d/p/50_mysql-test__db_test.patch: Restored from mysql-5.1
package, inadvertently dropped in 5.5 transition. This
removes the global anonymous access to the database which
is a security concern.
[ James Page ]
* New upstream release:
- d/p/fix-racey-rpltests.patch: Dropped - no longer required.
- d/p/50_mysql-test__db_test.patch: Add extra permissions to
mysql-run-tests.pl for test_% accounts, fixing failing tests.
- d/p/*: Refreshed patches.
- SECURITY UPDATE:
http://www.oracle.com/technetwork/topics/security/cpujan2014-1972949.html
- CVE-2013-5891
- CVE-2013-5908
- CVE-2014-0386
- CVE-2014-0393
- CVE-2014-0401
- CVE-2014-0402
- CVE-2014-0412
- CVE-2014-0420
- CVE-2014-0437
* Sync changes from NMU 5.5.33+dfsg-0+wheezy1:
- d/NEWS: Add NEWS file to document changes needed to existing databases
to drop insecure database permissions.
- SECURITY UPDATE: Insecure creation of the credential file debian.cnf.
- d/mysql-server-5.5.postinst: Set umask to 066 before creating
debian.cnf file (Closes: #711600).
- CVE-2013-2162
- d/copyright: Update copyright years for upstream files.
* d/control: Update VCS field for new git location.
* d/control: Add myself to Uploaders.
* d/*: Wrap and sort.
* d/control: Bumped Standards-Version, no changes.
-- James Page <jamespage@debian.org> Sat, 18 Jan 2014 21:38:18 +0000
mysql-5.5 (5.5.33+dfsg-1) unstable; urgency=low
* d/rules, d/control: Remove gcc-4.4 dependency and disable X86
assembly in taocrypt. (Closes: #707280) (Closes: #678252)
* d/patches/fix-mips64el-ftbfs.patch: Fix FTBFS on mips64el.
(Closes: #719196) Thanks YunQuiang Su.
* New upstream release.
SECURITY UPDATE: CVE-2013-1861 CVE-2013-3783 CVE-2013-3793
CVE-2013-3804 CVE-2013-3802 CVE-2013-3809 CVE-2013-3812
(Closes: #706715) (Closes: #712730)
* d/patches/work_around_failing_rpl_deadlock.patch: Test suite
changes upstream have left some connections active. This
patch fixes that. Thanks Kristian Nielsen!
* d/patches/fix-racey-rpltests.patch: Fix from Oracle for failing
tests.
-- Clint Byrum <spamaps@debian.org> Thu, 26 Sep 2013 09:14:47 -0700
mysql-5.5 (5.5.31+dfsg-1) unstable; urgency=high
* New upstream release.
SECURITY UPDATE: CVE-2013-2375 CVE-2013-1544 CVE-2013-1532
CVE-2013-2389 CVE-2013-2392 CVE-2013-2376 CVE-2013-1511
CVE-2013-2391 CVE-2013-1502
- Patches refreshed.
- d/p/yassl.patch - dropped, applied upstream
- d/p/debian-mdev382-fixup.patch: dropped, fixed upstream.
-- Clint Byrum <clint@ubuntu.com> Mon, 06 May 2013 12:22:55 -0700
mysql-5.5 (5.5.30+dfsg-1.1) unstable; urgency=low
* Non-maintainer upload.
* d/p/yassl.patch - patch for CVE-2013-0169 (Closes: #699886)
-- Michael Stapelberg <stapelberg@debian.org> Sun, 14 Apr 2013 12:45:53 +0200
mysql-5.5 (5.5.30+dfsg-1) unstable; urgency=low
* New upstream release.
* d/p/debian-mdev382-fixup.patch - patch from MariaDB, Thanks
Kristian Nielsen. resolves CVE-2012-4414 (Closes: #698068)
-- Clint Byrum <clint@ubuntu.com> Sun, 24 Mar 2013 16:22:56 -0700
mysql-5.5 (5.5.29+dfsg-1) unstable; urgency=low
[ Clint Byrum ]
* d/mysql-server-5.5.postinst: Patch from Alex Bligh to fix privilege
regression that was introduced in the switch from 5.1 to 5.5.
(Closes: #692871)
* New upstream release. (Closes: #695001) Refreshed patches.
-- Nicholas Bamber <nicholas@periapt.co.uk> Fri, 11 Jan 2013 15:29:53 +0000
mysql-5.5 (5.5.28+dfsg-1) unstable; urgency=low
* New upstream release (resolves CVE-2012-3163, CVE-2012-3158, CVE-2012-3177,
CVE-2012-3147, CVE-2012-3166, CVE-2012-3173, CVE-2012-3144, CVE-2012-3150,
CVE-2012-3180, CVE-2012-3149, CVE-2012-3156, CVE-2012-3167, CVE-2012-3197,
CVE-2012-3160) (Closes: #690778)
* Removed debian/patches/73_mysqlcheck_tests.patch and
debian/patches/2_main_openssl_1.patch as they did not apply cleanly and did
not seem to be required any longer
* Refreshed patches and updated headers:
- debian/patches/73_mysqlcheck_tests.patch
- debian/patches/94_spelling.patch
- debian/patches/70_mysql_va_list.patch
-- Nicholas Bamber <nicholas@periapt.co.uk> Sun, 28 Oct 2012 09:22:24 +0000
mysql-5.5 (5.5.24+dfsg-9) unstable; urgency=low
* Danish debconf translation (Closes: #684566)
* Turkish debconf translation (Closes: #688294)
* Loosened versioned dependency between mysql-server-5.5 and
mysql-server-core-5.5, hopefully (Closes: #686803)
* Restored zlib1g-dev (>= 1:1.1.3-5) as a build dependency
and made the use of system libz explicit in debian/rules
-- Nicholas Bamber <nicholas@periapt.co.uk> Sat, 22 Sep 2012 15:01:11 +0100
mysql-5.5 (5.5.24+dfsg-8) unstable; urgency=low
* Updated debian/copyright after analysis from development version
of license-reconcile (Closes: #682311)
- 'Comments' field to corrected to 'Comment'
- Missing paragraphs for '*', 'debian/*' and for the mysqlreport
and innotop scripts
- Removed duplicate entries from Files listings
- Added clause for files licensed under BSD (4-clause)
- Clarified 'BSD (3 clause) GPL-2' as being 'BSD (3 clause) or GPL-2'
* Updated Slovak debconf translation (Closes: #684644)
-- Nicholas Bamber <nicholas@periapt.co.uk> Tue, 04 Sep 2012 06:56:24 +0100
mysql-5.5 (5.5.24+dfsg-7) unstable; urgency=low
* Updated Turkish debconf translation (Closes: #683733)
* Use xz compression for binary packages (Closes: #684146)
-- Nicholas Bamber <nicholas@periapt.co.uk> Sat, 11 Aug 2012 21:02:27 +0100
mysql-5.5 (5.5.24+dfsg-6) unstable; urgency=low
* Updated Czech debconf translation (Closes: #681711)
-- Nicholas Bamber <nicholas@periapt.co.uk> Sun, 29 Jul 2012 13:04:46 +0100
mysql-5.5 (5.5.24+dfsg-5) unstable; urgency=medium
* Spanish debconf translation (Closes: #679053)
-- Nicholas Bamber <nicholas@periapt.co.uk> Sat, 14 Jul 2012 13:36:13 +0100
mysql-5.5 (5.5.24+dfsg-4) unstable; urgency=low
* Made DFSG repacking mechanism independent of local installs, improved
the documentation and added debian/README.source
* Setting the gcc/g++ version to 4.4 on i386 platforms and removed
patch disabling tests (Closes: #674267) but see #678252 for follow
up from upstream
* Danish debconf translation (Closes: #599483)
-- Nicholas Bamber <nicholas@periapt.co.uk> Thu, 21 Jun 2012 13:36:40 +0100
mysql-5.5 (5.5.24+dfsg-3) unstable; urgency=high
* Added versioned dependency on initscripts and revert /var/run
to /run change (Closes: #676560)
-- Nicholas Bamber <nicholas@periapt.co.uk> Thu, 07 Jun 2012 23:29:32 +0100
mysql-5.5 (5.5.24+dfsg-2) unstable; urgency=low
* Really bumped the version in shlibs
-- Nicholas Bamber <nicholas@periapt.co.uk> Mon, 04 Jun 2012 23:03:35 +0100
mysql-5.5 (5.5.24+dfsg-1) unstable; urgency=low
* New upstream release. Fixes CVE-2012-2102 mysql DoS by authenticated user
* Updated Portuguese translation (Closes: #674953)
* Updated Swedish translation (Closes: #675108)
* Updated German translation (Closes: #675766)
* Refreshed spelling patch
* Added patch to libmysql/CMakeLists.txt to restore symbol versioning
and bumped dependency in shlibs (Closes: #660686)
* Ensured that /etc/mysql/conf.d is installed as part of mysql-common
so that client programs work without a co-located server (Closes: #672359)
* Added versioned Breaks clause against amarok (cf. #675304)
-- Nicholas Bamber <nicholas@periapt.co.uk> Mon, 04 Jun 2012 18:17:04 +0100
mysql-5.5 (5.5.23+dfsg-2) unstable; urgency=low
* Fixing regular expression in tests to guard against build path containing
the '+' symbol (Closes: #674210)
* Disabled certain SSL tests pending investigation (cf. #674267)
* Updated French translation (Closes: #674025)
* Updated Dutch translation (Closes: #674124)
* Updated Russian translation (Closes: #674189)
-- Nicholas Bamber <nicholas@periapt.co.uk> Fri, 25 May 2012 23:38:16 +0100
mysql-5.5 (5.5.23+dfsg-1) unstable; urgency=low
* Revert having libssl-dev as a build dependency and changed
WITH_SSL option to 'bundled' from 'yes' (Closes: #590905)
and (Closes: #673865)
* Standardized debian/watch and get-orig-source and made DFSG exclusion
of Docs/mysql.info explicit (Closes: #673528)
* Located and installed upstream changelog
-- Nicholas Bamber <nicholas@periapt.co.uk> Tue, 22 May 2012 21:42:39 +0100
mysql-5.5 (5.5.23-2) unstable; urgency=low
* Stopped overriding the -j build parameter (Closes: #512964)
* Stopped testing for /proc filesystem. It is no longer used
for determining the number of CPUs.
* Removed unnecessary build dependencies:
- procps as it is required by cmake, cf. #96768
- zlib1g newer version required by cmake
- libtool obsoleted by cmake
- file required by debhelper
* Migrated libmysqld-dev, libmysqld-pic, libmysqlclient18 to using
dh_install rather than dh_movefiles
* Changed /var/run to /run as required by Debian Policy 3.9.3 (9.1.1)
* Raised standards version to 3.9.3
* Moved '-e' from shebang line to explicit 'set -e' as requested by lintian
* Restored ha_example.so to mysql-server-5.5 but added Breaks/Replaces
clauses (cf. LP: #912487) and (Closes: #666721)
* Added additional Breaks/Replaces clauses for other clashes:
- mysql-server-5.5 overwrites perror from mysql-client-5.1
- mysql-server-core-5.5 overwrites my_print_defaults from mysql-client-5.1
-- Nicholas Bamber <nicholas@periapt.co.uk> Tue, 08 May 2012 05:59:09 +0100
mysql-5.5 (5.5.23-1) experimental; urgency=low
* Added patch to test suite to accept socket paths less than 40
characters long (Closes: #540153)
* Disabled some more tests including some reported by Olaf van der Speck
* Removed ha_example.so from mysql-server-5.5 install (Closes: #666721)
* New upstream release: unspecified security issues CVE-2012-1697,
CVE-2012-1696
* Added patch to correct spelling mistakes: preceeding -> preceding
-- Nicholas Bamber <nicholas@periapt.co.uk> Thu, 03 May 2012 18:03:34 +0100
mysql-5.5 (5.5.20-1) experimental; urgency=low
[ Guillaume Plessis ]
* d/rules: Enabling ARCHIVE, BLACKHOLE, and FEDERATED engines.
(Closes: #649484)
* d/rules: Turn off embedded libedit/readline.(Closes: #659566)
[ Clint Byrum ]
* New Upstream Release
* d/copyright: rearranging to have standalone license paragraphs
silencing lintian complaints about missing paragraphs.
* d/mysql-client-5.5.files: add mysql_plugin
* d/rules, d/control: 5.5.20 Fixes segfault on tests with gcc 4.6,
change compiler back to system default.
* Sync changes back from Ubuntu:
* d/control: need to also break mysql-client-core-5.1 and
mysql-server-core-5.1 as well so that apt knows not to
remove mysql-server/mysql-client.
* d/control: convert mysql-server back to a meta-package
* d/control: convert mysql-client back to a meta-package as well.
* d/patches/72_fix_standalone_tests.patch: fix testsuite so it
will run all tests when run from system /usr/lib/mysql-testsuite
directory.
5.1 is removed from the archive.
* d/control: mysql-common includes configuration items that only
work on mysql 5.5, so adding Breaks: for client and server 5.1.
This will make mysql-server-5.1 and mysql-client-5.1
uninstallable which is actually desired.
* d/patches/71_disable_rpl_tests.patch: disables this test until
Ubuntu bug #894146 can be triaged.
* d/mysql-client-5.5.files: add missing mysql_plugin
* d/libmysqlcient18.files,libmysqlclient-dev.files,d/rules: re-add
libmysqlclient_r. In hindsight, removing it was not a productive
change.
* d/libmysqlclient-dev.files: ship entire contents of include dir,
some of these files are included internally by others in the
main dir.
* d/patches/70_mysql_va_list.patch: cherry pick patch from
upstream bug tracker to fix ARM build failure. (LP: #700982)
[ Nicholas Bamber ]
* Added myself to Uploaders
* Added libssl-dev as a build dependency and patched main.openssl_1 test
so that it works with that library (Closes: #660799)
* Added patch to provide cmake options for GNU/Hurd (Closes: #651002)
and tweaked debian/rules so that only 'make test' is run on Hurd.
* Tweaked debian/rules to make build logs verbose (Closes: #651003)
* Refreshed patches - and added a new patch to disable a further flurry
of failing tests
* Switched on native AIO in linux builds (Closes: #659565)
* Numerous minor changes to improve lintian cleanliness (Closes: #663354)
- Added dh_lintian lines to debian/rules to ensure that lintian
overrides take effect and removed old commented out lines
- Clarified Hurd procps dependency in debian/control
- Rewrote short description of the libmysqld-pic package to be more accurate
- Depersonalised long description of mysql-client
- Removed dependencies relating to mysql-common-4.1
- Tightened Breaks clauses for mysql-common
- Removed duplicate entry from Replaces clauses for mysql-server-core-5.5
- Rexpressed Conflicts clause as versioned dependency
for mysql-testsuite-5.5
- Added DEP-5 header fields to two patches
- Refreshed and commented all lintian overrides and added override
concerning lack of upstream changelog to all packages
- Cleaned up debian/copyright
* upgraded to latest version of DEP-5
* encoding issues
* out of date FSF address
* Updated License short name from "PD" to "public-domain"
* Converted to short form debhelper rules
- Renamed stamp files to end in '-stamp' so that they are cleaned up
automatically by dh_clean
- Removed commented out lines
- Removed obsolete -DINSTALL_LIBDIR clause from pic build
- Overrode dh_auto_install so that the rules only run once
- Migrated mysql-source, mysql-testsuite, mysql-common from
dh_movefiles to dh_install
-- Nicholas Bamber <nicholas@periapt.co.uk> Sat, 28 Apr 2012 15:02:16 +0100
mysql-5.5 (5.5.17-4) experimental; urgency=low
* d/control: Pre-Depend on multiarch-support and misc:Pre-Depends.
also bump debhelper Build-Dep for multiarch.
d/compat: raise to 9 for multiarch support.
-- Clint Byrum <clint@ubuntu.com> Thu, 17 Nov 2011 17:38:19 -0800
mysql-5.5 (5.5.17-3) experimental; urgency=low
[Clint Byrum]
* d/control: setting Multi-Arch fields where appropriate.
[Norbert Tretkowski]
* Add Clint Byrum to Uploaders.
-- Clint Byrum <clint@ubuntu.com> Thu, 17 Nov 2011 14:36:50 -0800
mysql-5.5 (5.5.17-2) experimental; urgency=low
* d/rules, d/control: Build with gcc 4.5 to avoid
gcc 4.6 compile problems (see Debian bug number 630471)
* d/rules, d/libmysqlclient*.files: changes to support
multiarch.
* d/libmysqlclient18.files, d/libmysqlclient-dev.files: install
symlinks to dev libraries properly and remove libmysqlclient_r
since it is no longer needed. libmysqlclient is now perfectly
thread safe. This will cause FTBFS but can be corrected by simply
removing _r, and avoids uncomfortable problem of trying to properly
mangle libmysqlclient_r symlinks to libmysqlclient.so.
-- Clint Byrum <clint@ubuntu.com> Wed, 09 Nov 2011 23:27:36 -0800
mysql-5.5 (5.5.17-1) experimental; urgency=low
[Norbert Tretkowski]
* New upstream release.
* Fix empty libmysqld-pic package.
* Run dh_apparmor on Ubuntu only.
[Clint Byrum]
* Rewrote debian/copyright file from scratch.
-- Clint Byrum <clint@ubuntu.com> Tue, 08 Nov 2011 11:31:13 -0800
mysql-5.5 (5.5.13-1) experimental; urgency=low
[Clint Byrum]
* New upstream major release. Changing source name to mysql-5.5.
(closes: #609592, #637274)
* Dropping usr/lib/libmysqlclient*.la as they are no longer built
by the cmake build, and are not necessary for linking properly.
* Removing obsolete automake and dpatch build deps.
* Converted source format to 3.0 (quilt).
* debian/patches: Converted to quilt, and removed all except disable
long filename check to allow building on sbuild/chroots.
* Renamed packages with -5.1 suffix to -5.5.
* Renaming mysql-testsuite to mysql-testsuite-5.5.
* Dropping unneeded docs files.
* Dropping libmysqlclient16-dev as transition is complete.
* Bumping libmysqlclient to v18 for new SONAME.
[Norbert Tretkowski]
* Update my.cnf to use --lc-messages-dir instead --language.
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 23 Jun 2011 10:25:33 +0200
mysql-5.1 (5.1.58-1) unstable; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 17 Jul 2011 17:26:27 +0200
mysql-5.1 (5.1.57-3) unstable; urgency=low
* Really fix syntax warning in preinst. (closes: #630672)
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 21 Jun 2011 10:33:25 +0200
mysql-5.1 (5.1.57-2) unstable; urgency=low
* Acknowledge NMUs. (closes: #614044)
* Fix syntax warning in preinst. (closes: #630672)
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 18 Jun 2011 19:28:35 +0200
mysql-5.1 (5.1.57-1.3) unstable; urgency=high
* Non-maintainer upload.
* Use correct DEB_HOST_GNU_TYPE and not DEB_HOST_BUILD_TYPE.
-- Ondřej Surý <ondrej@debian.org> Mon, 13 Jun 2011 17:02:50 +0200
mysql-5.1 (5.1.57-1.2) unstable; urgency=high
* Non-maintainer upload.
* Prefix gcc-4.5 and g++-4.5 with DEB_BUILD_GNU_TYPE to fix FTBFS on
ia64, s390 and maybe more.
-- Ondřej Surý <ondrej@debian.org> Mon, 13 Jun 2011 13:20:37 +0200
mysql-5.1 (5.1.57-1.1) unstable; urgency=high
* Non-maintainer upload (with permission of maintainer).
* Build with gcc-4.5 (Closes: #614044)
* Revert: "Build with -O2 instead -O3, MySQL seems not yet ready for -
O3 when using gcc-4.6." since we are building with gcc-4.5.
-- Ondřej Surý <ondrej@debian.org> Mon, 13 Jun 2011 08:51:51 +0200
mysql-5.1 (5.1.57-1) unstable; urgency=medium
* Bump libmysqlclient16 shlibs to 5.1.50-1 as it introduced a new symbol.
(closes: #617240)
* Build with -O2 instead -O3, MySQL seems not yet ready for -O3 when using
gcc-4.6. (closes: #614044)
* Ignore errors in testsuite run on ia64.
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 14 May 2011 14:56:13 +0200
mysql-5.1 (5.1.56-1) unstable; urgency=low
* New upstream release.
* Replace doxygen and texlive-latex-base build-deps with doxygen-latex.
(closes: #616270)
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 08 Mar 2011 20:59:41 +0100
mysql-5.1 (5.1.55-1) unstable; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 08 Feb 2011 12:56:42 +0100
mysql-5.1 (5.1.54-2) unstable; urgency=low
* Upload to unstable.
* Add mysql-source-5.1 package, patch from Clint Byrum. (closes: #611965)
* Update debconf translations:
- Dutch, from Eric Spreen. (closes: #605590)
- Slovak, from Slavko. (closes: #608885)
* Fix minor grammar infelicity in debian-start script. (closes: #582955)
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 04 Feb 2011 16:28:08 +0100
mysql-5.1 (5.1.54-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 17 Dec 2010 06:06:18 +0100
mysql-5.1 (5.1.53-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 01 Dec 2010 12:41:28 +0100
mysql-5.1 (5.1.51-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 02 Oct 2010 16:18:30 +0200
mysql-5.1 (5.1.50-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 12 Sep 2010 20:13:25 +0200
mysql-5.1 (5.1.49-3) unstable; urgency=high
* SECURITY UPDATE: denial of service via incorrect propagation of type
errors.
- debian/patches/61_CVE-2010-3833.dpatch: properly check for execution
errors in sql/item_func.cc. Add tests to mysql-test/*.
- CVE-2010-3833
* SECURITY UPDATE: denial of service via derived table materializing.
- debian/patches/61_CVE-2010-3834.dpatch: handle temporary tables in
sql/field.cc, sql/sql_select.*. Add tests to mysql-test/*.
- CVE-2010-3834
* SECURITY UPDATE: denial of service via user-variable assignment
expression.
- debian/patches/61_CVE-2010-3835.dpatch: fix logic in sql/item_func.*,
Add tests to mysql-test/*.
- CVE-2010-3835
* SECURITY UPDATE: denial of service via pre-evaluation of LIKE
predicates during view preparation.
- debian/patches/61_CVE-2010-3836.dpatch: make sure we're not in view
preparation mode in sql/item_cmpfunc.cc. Add tests to mysql-test/*.
- CVE-2010-3836
* SECURITY UPDATE: denial of service via use of GROUP_CONCAT() and
WITH ROLLUP together.
- debian/patches/61_CVE-2010-3837.dpatch: create a copy of the order
structures in sql/item_sum.cc, sql/table.h. Add tests to
mysql-test/*.
- CVE-2010-3837
* SECURITY UPDATE: denial of service via longblob and union or update
with subquery.
- debian/patches/61_CVE-2010-3838.dpatch: handle REAL_RESULT in
sql/item_func.cc. Add tests to mysql-test/*.
- CVE-2010-3838
* SECURITY UPDATE: denial of service via certain queries with nested
joins.
- debian/patches/61_CVE-2010-3839.dpatch: fix nesting in
sql/sql_select.cc. Add tests to mysql-test/*.
- CVE-2010-3839
* SECURITY UPDATE: denial of service via PolyFromWKB() function and
improper data.
- debian/patches/61_CVE-2010-3840.dpatch: improve data handling in
sql/spatial.cc. Add tests to mysql-test/*.
- CVE-2010-3840
* Patches and changelog entries taken from Ubuntu. (closes: #599937)
* Import and ACK NMU 5.1.49-2.1. (closes: #595120, #601152)
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 30 Nov 2010 09:20:33 +0100
mysql-5.1 (5.1.49-2.1) unstable; urgency=high
* Non-maintainer upload.
* debian/mysql-server-5.1.mysql.init: Remove $named from
Should-Start/Should-Stop (closes: #595120).
Thanks for Clint Byrum <clint@ubuntu.com> patch.
* Update Portuguese translation (closes: #601152).
Thanks for Miguel Figueiredo <elmig@debianpt.org> patch.
-- Xavier Oswald <xoswald@debian.org> Sat, 27 Nov 2010 17:43:13 +0100
mysql-5.1 (5.1.49-2) unstable; urgency=low
* Check for server binary before executing any script. (closes: #583611)
* Move my_print_defaults and perror from mysql-server-5.1 to mysql-client-5.1
package. (closes: #591373)
* Update debconf translations:
- Spanish, from Javier Fernández-Sanguino. (closes: #592171)
- Galician, from Jorge Barreiro. (closes: #592813)
- Arabic, from Ossama Khayat. (closes: #596169, #600884)
- Czech, from Miroslav Kure. (closes: #598339)
- Danish, from Joe Dalton. (closes: #599483)
- Portuguese, from Rui Branco. (closes: #599759)
- Catalan, from Jordi Mallach. (closes: #601098)
* Add patch 99_fix_testsuite_for_installed_env.dpatch from Ubuntu to fix
mysql-testsuite to work with the installation location.
* Add README.source file to make lintian happy.
* Update Standards-Version to 3.9.1, no changes required.
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 27 Oct 2010 14:41:19 +0200
mysql-5.1 (5.1.49-1) unstable; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 31 Jul 2010 12:34:43 +0200
mysql-5.1 (5.1.48-1) unstable; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 17 Jun 2010 22:38:56 +0200
mysql-5.1 (5.1.47-1) unstable; urgency=low
* New upstream release. (closes: #582526)
* Add patch to fix compile issue with embedded enabled.
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 22 May 2010 08:59:41 +0200
mysql-5.1 (5.1.46-1) unstable; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 11 May 2010 18:47:32 +0200
mysql-5.1 (5.1.45-3) unstable; urgency=low
* Upload to unstable.
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 10 Apr 2010 19:22:55 +0200
mysql-5.1 (5.1.45-2) experimental; urgency=low
* Add mysql-server-core-5.1 package, containing the package and its manpage,
to let packages like akonadi use the mysqld binary without using system
databases. Thanks to Didier Raboud for the patch! (closes: #548419)
* Add libterm-readkey-perl suggestion to mysql-client-5.1 package.
(closes: #574505, #575769)
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 31 Mar 2010 11:36:25 +0200
mysql-5.1 (5.1.45-1) unstable; urgency=low
* New upstream release.
* Drop patch 10_readline_build_fix.dpatch.
* Rename source package to mysql-5.1.
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 17 Mar 2010 14:56:02 +0100
mysql-dfsg-5.1 (5.1.44-3) unstable; urgency=low
* Add patch that reinstates the reloading of character set data when a
mysql_library_init() is done after a mysql_library_end().
(closes: #569549, #569595)
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 01 Mar 2010 18:22:35 +0100
mysql-dfsg-5.1 (5.1.44-2) unstable; urgency=low
* Disable innodb.innodb_information_schema test in testsuite run, it fails
randomly on at least i386. (closes: #570693)
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 21 Feb 2010 20:45:59 +0100
mysql-dfsg-5.1 (5.1.44-1) unstable; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 18 Feb 2010 21:38:09 +0100
mysql-dfsg-5.1 (5.1.43-1) unstable; urgency=low
* New upstream release.
* Drop patches:
+ 11_binlog_wrong_offset.dpatch
+ 96_SECURITY_CVE-2009-4484.dpatch
* Disable SSL related test in the testsuite until MySQL gets shipped with an
updated SSL certificate.
* Include symlinks for mysqlcheck manpages. (closes: #558760)
* Fix some lintian warnings:
+ debian-news-entry-has-unknown-version
+ postinst-has-useless-call-to-ldconfig
+ postrm-has-useless-call-to-ldconfig
* Bump Standards-Version to 3.8.4, no changes required.
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 01 Feb 2010 22:03:42 +0100
mysql-dfsg-5.1 (5.1.41-4) unstable; urgency=high
* SECURITY:
Fix for CVE-2009-4484: Copying name tags into an internal buffer from
incoming stream we didn't check the buffer overflow. That may lead to
memory overrun, crash etc.
* Add -fno-strict-aliasing to $CFLAGS to get around testsuite errors when
building with gcc 4.4.x. (closes: #554207)
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 18 Jan 2010 19:03:25 +0100
mysql-dfsg-5.1 (5.1.41-3) unstable; urgency=low
* Let mysql-server-5.1 replace libmysqlclient-dev (>= 5.1.41-1) because of
moved InnoDB plugin. (closes: #557806)
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 24 Nov 2009 19:20:36 +0100
mysql-dfsg-5.1 (5.1.41-2) unstable; urgency=low
* Move InnoDB plugin into -server package.
* Fix some lintian errors and warnings:
+ weak-library-dev-dependency
+ dir-or-file-in-var-run
+ command-with-path-in-maintainer-script
* Ignore errors in testsuite run on s390.
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 21 Nov 2009 13:37:17 +0100
mysql-dfsg-5.1 (5.1.41-1) unstable; urgency=medium
* New upstream release.
* Drop patch 60_zlib_innodb_workaround.dpatch, merged upstream.
* Make $DATADIR readable/writeable only for user mysql. (closes: #555626)
* Build with --without-readline to use system readline instead of bundled
copy. (closes: #552003)
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 20 Nov 2009 17:35:42 +0100
mysql-dfsg-5.1 (5.1.40-1) unstable; urgency=low
* New upstream release.
* Set thread_stack size to 192K rather than 128K.
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 23 Oct 2009 19:12:45 +0200
mysql-dfsg-5.1 (5.1.39-1) unstable; urgency=low
* New upstream release.
* New patch 60_zlib_innodb_workaround.dpatch to fix an incompatibility
between zlib and innodb during testsuite run.
* Wait in the SIGHUP trap to avoid killing an existing mysqld process when a
HUP signal is sent to mysqld_safe, patch based based on Mathias Gug's fix
from 5.0 series. (closes: #545044)
* Update debconf translations:
- Japanese, from Hideki Yamane. (closes: #545329)
- Swedish, from Martin Bagge. (closes: #545731)
* Fix some options in my.cnf about log_file have their named changed, patch
from Mathias Gug. (closes: #545761)
* Do not upgrade if there is an ndb management node configured, patch from
Mathias Gug. (closes: #545760)
* Switch build-dependency from libreadline5-dev to libreadline-dev.
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 28 Sep 2009 17:41:51 +0200
mysql-dfsg-5.1 (5.1.37-2) unstable; urgency=low
* Update debconf translations:
- Swedish, from Martin Bagge. (closes: #539207)
- Russian, from Yuri Kozlov. (closes: #540216)
- French, from Christian Perrier. (closes: #540508)
- Italian, from Luca Monducci. (closes: #541465)
- German, from Thomas Mueller. (closes: #544477)
* Handle DEB_BUILD_OPTIONS correctly, patch from Stephen Depooter.
(closes: #523928)
* Support ANSI mode in debian-start.inc.sh, patch from Mathias Gug.
(closes: #534606)
* Enable hardening. (closes: #542746)
* Drop old_passwords option. (closes: #540366)
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 02 Sep 2009 20:26:59 +0200
mysql-dfsg-5.1 (5.1.37-1) unstable; urgency=low
* New upstream release.
* Drop empty transitional package libmysqlclient15-dev, and provide/replace
it with libmysqlclient-dev. (closes: #538659)
* Ignore errors in testsuite on all archs but amd64, i386, ia64 and s390.
(closes: #539679)
* Update debconf translations:
- French, from Christian Perrier. (closes: #539703)
* Fixed typo regarding log_type in my.cnf.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 04 Aug 2009 19:25:45 +0200
mysql-dfsg-5.1 (5.1.36-5) unstable; urgency=low
[ Christian Hammers ]
* Applied debconf template patch from debian-l10n-english (thanks to
Justin B Rye).
* Added a missing misc:Depends to debian/control for lintian.
* Fixes typo in initscript (thanks to Gaspar Lajos).
[ Norbert Tretkowski ]
* Ignore errors in testsuite run on mips. (closes: #539095)
* Update debconf translations:
- Basque, from Piarres Beobide. (closes: #539130)
- Russian, from Yuri Kozlov. (closes: #539459)
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 01 Aug 2009 11:13:55 +0200
mysql-dfsg-5.1 (5.1.36-4) unstable; urgency=low
* dpkg-gensymbols caused a lot of FTBFS because the C++ libraries have
slightly different symbol names on other archs (long vs. int somebody
told me on IRC). We now limit the ABI compatibility check to amd64.
-- Christian Hammers <ch@debian.org> Sun, 26 Jul 2009 11:46:20 +0200
mysql-dfsg-5.1 (5.1.36-3) unstable; urgency=low
* Moving from experimental to unstable!
-- Christian Hammers <ch@debian.org> Sat, 25 Jul 2009 20:42:39 +0200
mysql-dfsg-5.1 (5.1.36-2) experimental; urgency=low
* Build both -fPIC (libmysql_pic.a) and non -fPIC (libmysqld.a) as
some packages seem to need the -fPIC variant for their own build
process. Documented in README.Debian. Thanks to Modestas Vainius
for the patch. Closes: #508406
* Switch to out-of-source true build mode was a side effect of this change.
* Added libmysqlclient16.symbols file (thanks to Raphael Hertzog).
* Raised debian/compat from 4 to 7.
* Updated innotop to 1.7.1.
* Minor cleanups that lintian suggested.
-- Christian Hammers <ch@debian.org> Sun, 19 Jul 2009 18:48:53 +0200
mysql-dfsg-5.1 (5.1.36-1) experimental; urgency=low
* Ex-maintainer upload :)
* New upstream release.
* SECURITY: Upstream fix for "mysql client does not escape strings in
--html mode." (CVE-2008-4456) Closes: #526254
* Upstream fixes REPEAT() function. Closes: #447028
* Upstream fixes problems when mixing ORDER and GROUP BY. Closes: #470854
* There were many innodb fixes in the last two years, probably
also for this unreproducible crash. CLoses: #447713
* Removed amd64 specific -fPIC compiler option that was introduced
especially for building the NDB cluster module which is no longer
part of this package (thanks to Modestas Vainius). Closes: #508406
* Put /etc/mysql/conf.d to mysql-server-5.1.dirs (thanks to Alexander
Gerasiov). Closes: #515145
* Fixed mysql-test suite by adding 50_mysql-test__db_test.dpatch.
It now passes 100% of the tests again. Also Closes: #533999
* Preinst now prevents Installation if NDB configuration is detected.
* Applied Ubuntu patch that fixes privilege bootstrapping in postinst
(thanks to Mathias Gug). Closes: #535492
* Applied Ubuntu patch that sets the debconf prio for the root password
question to high and prevents it from being asked on 5.0 -> 5.1 upgrades
(thanks to Mathias Gug). Closes: #535500
* Removed the check for ISAM tables as the only supported upgrade path is
from lenny's MySQL-5.0.
* Added /etc/mysql/conf.d/mysqld_safe_syslog.cnf which enables mysqld_safe
to pipe all mysqld output into the syslog. The reason for not letting dpkg
handle it via a normal config file change was that my.cnf is usually
heavily tuned by the admin so the setting would go lost too easily.
* Updated mysqlreport to version 3.5 (including two minor patches by me).
-- Christian Hammers <ch@debian.org> Wed, 01 Jul 2009 20:54:58 +0200
mysql-dfsg-5.1 (5.1.34-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 20 Apr 2009 20:23:10 +0200
mysql-dfsg-5.1 (5.1.33-2) experimental; urgency=low
* Remove no longer active developers from uploaders field.
* Drop workaround for upgrades from MySQL 3.23, not necessary any more.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 07 Apr 2009 11:23:25 +0200
mysql-dfsg-5.1 (5.1.33-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 02 Apr 2009 21:12:23 +0200
mysql-dfsg-5.1 (5.1.32-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 06 Mar 2009 18:48:23 +0100
mysql-dfsg-5.1 (5.1.31-2) experimental; urgency=low
* Update SSL certificates, and re-enable SSL related tests when running
the testsuite.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 10 Feb 2009 16:08:42 +0100
mysql-dfsg-5.1 (5.1.31-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 08 Feb 2009 17:07:11 +0100
mysql-dfsg-5.1 (5.1.30-2) experimental; urgency=low
* Drop MySQL Cluster support, it's deprecated since 5.1.24-RC.
* Fix FTBFS if build twice in a row. (closes: #487091)
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 05 Dec 2008 21:04:55 +0100
mysql-dfsg-5.1 (5.1.30-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 27 Nov 2008 09:09:55 +0100
mysql-dfsg-5.1 (5.1.29rc-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 27 Oct 2008 20:00:43 +0100
mysql-dfsg-5.1 (5.1.26rc-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 14 Jul 2008 21:46:59 +0200
mysql-dfsg-5.1 (5.1.25rc-1) experimental; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 21 Jun 2008 13:55:02 +0200
mysql-dfsg-5.1 (5.1.24rc-1) experimental; urgency=low
* New upstream release.
* Ignore errors in testsuite on ia64 and s390.
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 16 Apr 2008 22:03:44 +0200
mysql-dfsg-5.1 (5.1.23rc-1) experimental; urgency=low
* New upstream release.
[ Christian Hammers ]
* Add PIC support for NDB libraries on amd64 (thanks to Monty Taylor).
* Add extra information when aborting due to a detected downgrade (thanks to
Raphael Pinson).
* Move libndbclient.so.3 to its own package as it now has a version != 0
(thanks to Raphael Pinson for reminding me).
[ Monty Taylor ]
* Remove 85_ndb__staticlib.dpatch since we have a libndbclient package now.
* Add myself to the uploaders so that I don't get complaints about package
signing.
* Add libndbclient-dev package to go with libndbclient3.
[ Norbert Tretkowski ]
* Update patches:
+ 41_scripts__mysql_install_db.sh__no_test.dpatch
* Drop patches:
+ 70_upstream_debian__configure.dpatch
+ 71_upstream_debian__Makefile.in.dpatch
+ 99_TEMP_minmax.dpatch
* Remove Adam Conrad from uploaders on his request. Thanks for your work in
the past!
* Ignore errors in testsuite on amd64 and i386.
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 29 Feb 2008 10:38:27 +0100
mysql-dfsg-5.1 (5.1.22rc-1) experimental; urgency=low
* New upstream version.
* Let mysql-server-5.1 pre-depend on debconf as it uses it in the preinst.
* Fixed mysql-client-5.1 menu entry for upcoming menu policy 1.4.
-- Christian Hammers <ch@debian.org> Tue, 02 Oct 2007 22:45:37 +0200
mysql-dfsg-5.1 (5.1.21beta-1) experimental; urgency=low
* My "Greetings from FrOSCon!" release.
* New upstream version.
* libmysqlclient.so.15 has been superseded by libmysqlclient.so.16.
* Renamed libmysqlclient15-dev to libmysqlclient-dev but added an empty
package libmysqlclient15-dev to ease the transition for packages with
a versioned build-dep to libmysqlclient15-dev which is something that
currently does not work with "Provides:".
* Synced with 5.0 branch up to subversion release r909.
* Commented out most of the compile conditionals in the hope that
all architectures can be build the same way.
* Added a lot of new binaries and manpages.
* Switched to plugin based engines.
-- Christian Hammers <ch@debian.org> Sat, 25 Aug 2007 14:24:40 +0200
mysql-dfsg-5.1 (5.1.19beta-1) experimental; urgency=low
* New upstream release.
-- Christian Hammers <ch@debian.org> Mon, 11 Jun 2007 23:18:35 +0200
mysql-dfsg-5.1 (5.1.16beta-4) experimental; urgency=high
* Merged with 5.0 r850:
* SECURITY:
In some previous versions mysql_install_db was not idempotent and did
always create passwordless root accounts although it should only on
initial installs (thanks to Olaf van der Spek). Closes: #418672
* Added check for passwordless root accounts to debian-start.
* As MySQL-5.0 is, at least currently, incompatible with Kernel 2.4 the
installation is aborted for such old kernels. Debian Etch does not
support them anyway according to the release notes but this might be
unexpected and many production servers still have self build ones
installed (thanks to Marc-Christian Petersen). See: #416841
* Adjusted TeX build-deps to texlive.
* Added innotop.
* Changed maintainer email address to
pkg-mysql-commits@lists.alioth.debian.org
-- Christian Hammers <ch@debian.org> Thu, 19 Apr 2007 19:29:29 +0200
mysql-dfsg-5.1 (5.1.16beta-3) experimental; urgency=low
* Merged with 5.0 r837:
* Activated the blackhole engine as it's needed for replicating partition
designs (thanks to Cyril SCETBON).
* Fixed segfault on i486 systems without cpuid instruction (thanks to
Lennart Sorensen). Closes: #410474
* Only use of the non-essential debconf package in postrm if it is
still installed (thanks to Michael Ablassmeier). Closes: #416838
-- Christian Hammers <ch@debian.org> Sun, 18 Mar 2007 21:48:11 +0100
mysql-dfsg-5.1 (5.1.16beta-2) experimental; urgency=low
* Merged with 5.0 r818:
* Fixed FTBFS on Sparc introduced with the "make -j" trick in
5.0.32-8 (thanks to Frank Lichtenheld). Closes: #415026
-- Christian Hammers <ch@debian.org> Sun, 18 Mar 2007 21:20:11 +0100
mysql-dfsg-5.1 (5.1.16beta-1) experimental; urgency=low
* New upstream release.
* SECURITY: Using an INFORMATION_SCHEMA table with ORDER BY in a subquery
could cause a server crash (CVE-2007-1420).
* Added temporary patch 90_TEMP_sqlparse-ifdef to avoid build problems.
* Merged with 5.0 r809:
* Updated mysqlreport to latest upstream (and patched --help usage
message and "return if qcache_size==0").
* Merged with 5.0 r798:
* Adapt MAKE_J to use the -j option with the number of available
processors. (thanks to Raphael Pinson).
* Merged with 5.0 r758:
* Changed minimum required version in dh_makeshlibs to 5.0.27-1 as
5.0.26 had an ABI breakage in it!
This is the cause for Perl programs crashing with the following error:
Transactions not supported by database at /usr/lib/perl5/DBI.pm line 672
* Added some more comments to the default my.cnf.
* Added support for /etc/mysql/conf.d/.
* The debian-start script that runs on every server start now first upgrades
the system tables (if neccessary) and then check them as it sometimes did
not work the other way around (e.g. for MediaWiki). The script now uses
mysql_update instead of mysql_update_script as recommended. See: 409780
-- Christian Hammers <ch@debian.org> Fri, 2 Mar 2007 01:00:55 +0100
mysql-dfsg-5.1 (5.1.15beta-1) experimental; urgency=low
* New upstream release.
[Monty Taylor]
* Removed patches/25_mysys__default.c - fixed upstream.
* Removed patches/26_client__mysql_upgrade.c - fixed upstream.
* Removed patches/29_scripts__mysqlbug.sh - fixed upstream.
* Removed patches/39_scripts__mysqld_safe.sh__port_dir - fixed upstream.
* Removed patches/42_scripts__mysqldumpslow__slowdir - fixed upstream.
* Removed patches/45_warn-CLI-passwords - fixed upstream.
* Removed patches/89_ndb__records.dpatch - fixed upstream.
* Removed patches/86_ndbapi_tc_selection.dpatch - fixed upstream.
[Christian Hammers]
* Synced with 5.0.32-4.
* mysql-server-5.0 pre-depends on adduser now and has --disabled-login
explicitly added to be on the safe side (thanks to the puiparts team).
Closes: #408362
* Corrections the terminology regarding NDB in the comments of all config
files and init scripts (thanks to Geert Vanderkelen of MySQL).
-- Christian Hammers <ch@debian.org> Wed, 7 Feb 2007 11:34:52 -0200
mysql-dfsg-5.1 (5.1.14beta-2) experimental; urgency=low
[Christian Hammers]
* Readded 85_ndb__staticlib.dpatch with slight modifications.
* Backported debian-start scripts from 5.0.
[Monty Taylor]
* Now build-depends on bison.
* Updated to standards 3.7.2.
* Removed references to comp_err.
* build-depend on automake1.9 to match upstream
* Merged runlevel changes from 5.0.
* Added 26_client__mysql_upgrade.c.dpatch to fix a segfault in mysql_upgrade
when using a password. It's been fixed upstream in 5.1.15.
* Moved BDB check to sanity_checks() and added a note about deprecation.
* Use my_print_defaults instead of mysqld --print-defaults
* Changed NDB Data and Management node startup seqence. Prevented both
from restarting on upgrade to address rolling upgrade issues.
* Added a "start-initial" option to the Data Node init script to support
initial node starts.
* Added 86_ndbapi_tc_selection.dpatch to fix a bug that causes a segfault
when using the NdbApi. http://bugs.mysql.com/bug.php?id=24914
Fixed in 5.1.15
* Added 89_ndb__records.dpatch to fix
http://bugs.mysql.com/bug.php?id=25567, which causes a table scan per
table per query.
-- Christian Hammers <ch@debian.org> Wed, 31 Jan 2007 01:17:35 +0100
mysql-dfsg-5.1 (5.1.14beta-1) experimental; urgency=low
* New upstream.
* Removed references to mysql_explain_log
* Changed context for patch to mysqld_multi.1
* Removed 70_kfreebsd.dpatch - applied to upstream
* Removed 87_ps_Hurd - applied to upstream
* Replaced --without-readline to --with-libedit to configure options, as
--without-readline doesn't seem to do the right thing anymore.
-- Monty Taylor <mordred@inaugust.com> Wed, 10 Jan 2007 12:59:55 -0800
mysql-dfsg-5.1 (5.1.11beta-1) experimental; urgency=low
* Starting new 5.1 branch!
* FIXME: Following patch couldn't be applied:
## 85_ndb__staticlib.dpatch by <ch@debian.org>
* FIXME: Following patch couldn't be applied:
## 86_PATH_MAX.dpatch
-- Christian Hammers <ch@debian.org> Sat, 29 Jul 2006 11:35:42 +0200
mysql-dfsg-5.0 (5.0.84-1) unstable; urgency=low
* New upstream release.
* Update patches:
+ debian/patches/60_disabled_tests.dpatch
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 24 Jul 2009 18:05:11 +0200
mysql-dfsg-5.0 (5.0.83-1) unstable; urgency=low
* New upstream release.
* Update patches:
+ debian/patches/45_warn-CLI-passwords.dpatch (closes: #536548)
+ debian/patches/60_disabled_tests.dpatch
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 18 Jul 2009 08:18:53 +0200
mysql-dfsg-5.0 (5.0.81-1) unstable; urgency=low
* New upstream release.
* Remove patches:
+ debian/patches/63_update_ssl_certs.dpatch
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 04 May 2009 18:53:05 +0200
mysql-dfsg-5.0 (5.0.77-1) unstable; urgency=low
* New upstream release.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 17 Feb 2009 18:42:46 +0100
mysql-dfsg-5.0 (5.0.75-1) unstable; urgency=low
* New upstream release.
* Update patches:
+ debian/patches/33_scripts__mysql_create_system_tables__no_test.dpatch
* Remove patches:
+ debian/patches/50_fix_agg_functions.dpatch
-- Norbert Tretkowski <norbert@tretkowski.de> Mon, 22 Dec 2008 11:01:38 +0100
mysql-dfsg-5.0 (5.0.67-3) unstable; urgency=low
* Really apply patch from 5.0.74 to fix check for non-aggregated columns
in queries.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 16 Dec 2008 07:19:23 +0100
mysql-dfsg-5.0 (5.0.67-2) unstable; urgency=low
* New patch from 5.0.74 to fix check for non-aggregated columns in queries.
(closes: #505179, #505181)
* Add patch from Dan Munckton:
+ Clearly indicate that we do not support running multiple instances
of mysqld by duplicating the init script.
(closes: #314785, #324834, #435165, #444216)
+ Properly parameterize all existing references to the mysql config
file (/etc/mysql/my.cnf).
* Really fix FTBFS if build twice in a row. (closes: #442684)
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 14 Dec 2008 10:12:30 +0100
mysql-dfsg-5.0 (5.0.67-1) unstable; urgency=low
* New upstream release.
* Update patches:
+ debian/patches/25_mysys__default.c.dpatch
+ debian/patches/80_fix_user_setup_on_localhost.dpatch
* Remove patches:
+ debian/patches/50_fix_mysqldump.dpatch
+ debian/patches/51_incorrect-order.dpatch
+ debian/patches/52_ndb-gcc-4.2.dpatch
+ debian/patches/53_integer-gcc-4.2.dpatch
+ debian/patches/54_ssl-client-support.dpatch
+ debian/patches/55_testsuite-2008.dpatch
+ debian/patches/56_fix_order_by.dpatch
+ debian/patches/57_fix_mysql_replication.dpatch
+ debian/patches/58_disable-ndb-backup-print.dpatch
+ debian/patches/59_fix_relay_logs_corruption.dpatch
+ debian/patches/60_rpl_test_failure.dpatch
+ debian/patches/90_upstreamdebiandir.dpatch
+ debian/patches/91_SECURITY_CVE-2007-5925.dpatch
+ debian/patches/92_SECURITY_CVE-2008-2079.dpatch
+ debian/patches/93_SECURITY_CVE-2008-3963.dpatch
* Fix FTBFS if build twice in a row. (closes: #442684)
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 02 Nov 2008 13:51:50 +0100
mysql-dfsg-5.0 (5.0.51a-24) testing-proposed-updates; urgency=low
* Update SSL certificates, and re-enable SSL related tests when running
the testsuite.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 03 Feb 2009 15:40:47 +0100
mysql-dfsg-5.0 (5.0.51a-23) testing-proposed-updates; urgency=medium
* Reset debconf password variable root_password_again immediately after
using it. (closes: #513262)
* Disable SSL related tests when running the testsuite until MySQL bug
#42366 gets fixed.
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 29 Jan 2009 14:07:32 +0100
mysql-dfsg-5.0 (5.0.51a-22) testing-proposed-updates; urgency=low
* New patch 10_mysql_secure_installation.dpatch to fix failure on passwords
which need quoting. (closes: #511929)
* New patch 62_delete_with_self-join.dpatch from 5.0.54 to fix MyISAM
storage engine error (134) doing delete with self-join. (closes: #512651)
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 25 Jan 2009 10:02:35 +0100
mysql-dfsg-5.0 (5.0.51a-21) testing-proposed-updates; urgency=low
* Ask for MySQL root password at high priority, because otherwise all
default installations will miss this question, thanks to Thijs Kinkhorst
for the patch. (closes: #510875)
* Do not fail checking tables when using sql-mode ansi-quotes, thanks to
Renato Alves for the patch. (closes: #507049)
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 09 Jan 2009 10:24:23 +0100
mysql-dfsg-5.0 (5.0.51a-20) testing-proposed-updates; urgency=low
* New patch 60_fix_leap_seconds.dpatch from 5.0.74 to return leap second
values with a time part that ends with :59:59. (closes: #510177)
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 30 Dec 2008 10:32:46 +0100
mysql-dfsg-5.0 (5.0.51a-19) testing-proposed-updates; urgency=low
* New patch 50_fix_mysqldump2.dpatch from 5.0.60 to fix dumping databases
from mysql 4.0 server. (closes: #507789)
* Do not create a guest account during bootstrap. (closes: #463704)
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 04 Dec 2008 23:07:19 +0100
mysql-dfsg-5.0 (5.0.51a-18) testing-proposed-updates; urgency=high
* SECURITY:
Fix for CVE-2008-4098: Inadequate validation of paths used in DATA
DIRECTORY and INDEX DIRECTORY clauses of CREATE TABLE statements enabled
attackers to write to tables in other databases to which they could not
ordinarily have access.
-- Devin Carraway <devin@debian.org> Tue, 25 Nov 2008 05:38:45 +0000
mysql-dfsg-5.0 (5.0.51a-17) testing-proposed-updates; urgency=low
* Don't use commented out passwords from debian.cnf. (closes: #453820)
* Update watch file to recognize releases > 5.0.45.
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 02 Nov 2008 13:31:32 +0100
mysql-dfsg-5.0 (5.0.51a-16) unstable; urgency=low
* New patch 60_rpl_test_failure.dpatch from 5.0.54 to fix a race condition
with the rpl_packet test in some cases. (closes: #501413)
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 09 Oct 2008 08:50:43 +0200
mysql-dfsg-5.0 (5.0.51a-15) unstable; urgency=high
* SECURITY:
Fix for CVE-2008-3963: An empty bit-string literal (b'') caused a server
crash. Now the value is parsed as an empty bit value (which is treated as
an empty string in string context or 0 in numeric context).
(closes: #498362)
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 14 Sep 2008 18:27:46 +0200
mysql-dfsg-5.0 (5.0.51a-14) unstable; urgency=low
* Update debconf translations:
- Swedish, from Martin Bagge. (closes: #491688)
- Netherlands, from Thijs Kinkhorst. (closes: #492723)
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 07 Sep 2008 20:18:31 +0200
mysql-dfsg-5.0 (5.0.51a-13) unstable; urgency=medium
* New patch 59_fix_relay_logs_corruption.dpatch from 5.0.56 to fix
corruption in relay logs. (closes: #463515)
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 03 Sep 2008 09:13:46 +0200
mysql-dfsg-5.0 (5.0.51a-12) unstable; urgency=low
* Disable rpl_ndb_innodb_trans test when running the testsuite, fails
randomly on i386. (closes: #494238)
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 09 Aug 2008 15:56:45 +0200
mysql-dfsg-5.0 (5.0.51a-11) unstable; urgency=low
* Disable innodb_handler test when running the testsuite, fails randomly
on s390. (closes: #491363)
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 23 Jul 2008 08:34:51 +0200
mysql-dfsg-5.0 (5.0.51a-10) unstable; urgency=high
* Merge testing-security upload to finally fix CVE-2008-2079, thanks to
Devin Carraway and Steffen Joeris. (closes: #480292)
* New patch 58_disable-ndb-backup-print.dpatch from 5.0.54 to disable
ndb_backup_print, ndb_alter_table and ndb_replace tests when running the
testsuite. (closes: #474893)
* Reenable error handling in testsuite on i386, disabling it was just a
workaround for the problem which is now fixed with the above patch.
* Update debconf translations:
- Vietnamese, from Clytie Siddall. (closes: #486443)
- Spanish, from Javier Fernández-Sanguino Peña. (closes: #488740)
- Slovak, from helix84. (closes: #489266)
* Make lintian happy:
- Fix build-dependency on -1 revision.
- Fix deprecated chown usage.
- Fix spelling error in description.
-- Norbert Tretkowski <norbert@tretkowski.de> Tue, 15 Jul 2008 19:37:35 +0200
mysql-dfsg-5.0 (5.0.51a-9+lenny2) testing-security; urgency=high
* Non-maintainer upload by the security team.
* Correct error number in symlink.test to avoid FTBFS on some archs.
-- Steffen Joeris <white@debian.org> Sun, 13 Jul 2008 11:44:57 +0000
mysql-dfsg-5.0 (5.0.51a-9+lenny1) testing-security; urgency=high
* Non-maintainer upload by the security team.
* Correct and expand 92_SECURITY_CVE-2008-2079.dpatch to cover all symlinks
and check the output of fn_format(). (closes: #480292)
Fixes: CVE-2008-2079
-- Steffen Joeris <white@debian.org> Sat, 12 Jul 2008 05:30:39 +0000
mysql-dfsg-5.0 (5.0.51a-9) unstable; urgency=low
* Ignore errors in testsuite on i386. (workaround for #474893)
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 25 Jun 2008 15:07:03 +0200
mysql-dfsg-5.0 (5.0.51a-8) unstable; urgency=low
* New patch 80_fix_user_setup_on_localhost.dpatch from Daniel Hahler to fix
a duplicate key error when install MySQL server on a host with hostname
localhost. (closes: #478319)
* Really fix build on non-linux systems, this time without producing a build
error on some architectures. (closes: #485971)
* Update debconf translations:
- French, from Christian Perrier. (closes: #478553)
- German, from Alwin Meschede. (closes: #478672)
- Italian, from Luca Monducci. (closes: #479363)
- Czech, from Miroslav Kure. (closes: #480924)
- Galician, from Jacobo Tarrio. (closes: #480965)
- Basque, from Piarres Beobide. (closes: #481840)
- Swedish, from Martin Bagge. (closes: #482466, #486307)
- Turkish, from Mert Dirik. (closes: #484704)
- Russian, from Yuri Kozlov. (closes: #486149)
- Finnish, from Esko Arajärvi. (closes: #486554)
- Portuguese, from Miguel Figueiredo. (closes: #486709)
- Romanian, from Eddy Petrișor. (closes: #486944)
- Japanese, from Hideki Yamane. (closes: #487270)
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 21 Jun 2008 19:20:48 +0200
mysql-dfsg-5.0 (5.0.51a-7) unstable; urgency=high
[ Norbert Tretkowski ]
* SECURITY:
Fix for CVE-2008-2079: It was possible to circumvent privileges through
the creation of MyISAM tables employing the DATA DIRECTORY and INDEX
DIRECTORY options to overwrite existing table files in the MySQL data
directory. Use of the MySQL data directory in DATA DIRECTORY and INDEX
DIRECTORY is now disallowed. Patch from openSUSE 11.0, thanks to Michal
Marek. (closes: #480292)
* Fix build on non-linux systems, like hurd-i386. (closes: #480362)
* Include symlinks for mysqlcheck. (closes: #480647)
[ Monty Taylor ]
* Remove ndb_cpcd, as it is only for the NDB test suite and not useful as a
public program.
* Fix debian-start.inc.sh for table names with characters needing quotes.
Thanks Felix Rublack! (closes: #480525, #481154, #481303, #484012)
* Delete mysql-common.README.Debian. Nothing in it was relevant, and the
useful information is in mysql-server anyway. (closes: #480940)
* Remove a spurious HOME= in logrotate script.
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 05 Jun 2008 11:49:45 +0200
mysql-dfsg-5.0 (5.0.51a-6) unstable; urgency=low
* Fix debian-start.inc.sh to not print the row counts of the tables
queried. (closes: #478256, #479697)
-- Monty Taylor <mordred@inaugust.com> Wed, 14 May 2008 00:47:46 -0700
mysql-dfsg-5.0 (5.0.51a-5) unstable; urgency=medium
* New patch 57_fix_mysql_replication.dpatch from 5.0.54 to fix directory for
relay logs when using replication.
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 27 Apr 2008 13:55:04 +0200
mysql-dfsg-5.0 (5.0.51a-4) unstable; urgency=low
[ Monty Taylor ]
* Remove build of ndb docs, since they are not installed. Removed build deps
on TeX and doxygen since that's all they were there for.
* Replace script in check_for_crashed_tables with a myisam-recover option
and a script to trigger a check of those tables. (thanks HarrisonF and
kolbe)
* Replace direct calls to test suite with calls to the make targets used by
the MySQL build and qa teams for releases.
* Add --skip-ndbcluster to the postinst bootstrap command. It's really a
workaround for a bug in 5.1, but it's probably a good idea anyway since we
certainly don't need cluster to spin up, and if people have enabled
cluster in their my.cnf file, there could be postinst issues if cluster
isn't running.
* Remove reference to configure options that no longer exist.
* Add myself to uploaders.
[ Norbert Tretkowski ]
* New patch 56_fix_order_by.dpatch from Ubuntu to fix ORDER BY not working
with GROUP BY. (closes: #471737)
* Add note about filename extensions in the /etc/mysql/conf.d/ directory in
my.cnf. (closes: #461759)
* Confirm password on install, patch from Nicolas Valcárcel.
(closes: #471887)
* Remove Adam Conrad from uploaders on his request. Thanks for your work in
the past!
* Use lsb_release to detect distribution.
-- Norbert Tretkowski <norbert@tretkowski.de> Sat, 05 Apr 2008 21:51:43 +0200
mysql-dfsg-5.0 (5.0.51a-3) unstable; urgency=low
* Disable patch 60_raise-max-keylength.dpatch in default build, but still
ship it in the source package.
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 17 Feb 2008 18:54:42 +0100
mysql-dfsg-5.0 (5.0.51a-2) unstable; urgency=low
* Replace 54_ssl-client-support.dpatch added in 5.0.51-2 with patch from
upstream.
* Ignore errors in testsuite on powerpc.
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 17 Feb 2008 12:42:58 +0100
mysql-dfsg-5.0 (5.0.51a-1) unstable; urgency=low
[ Norbert Tretkowski ]
* New upstream security hotfix release. Low priority upload anyway because
5.0.51-3 already contained all security fixes.
* Remove patches:
+ debian/patches/51_mysqlcheck-result.dpatch
+ debian/patches/92_SECURITY_CVE-2007-6303.dpatch
+ debian/patches/93_SECURITY_CVE-2007-6304.dpatch
+ debian/patches/94_SECURITY_CVE-2008-0226+0227.dpatch
* Add recommendation on libhtml-template-perl to -server package, used by
ndb_size. (closes: #462265)
* New patch 60_raise-max-keylength.dpatch to raise the maximum key length to
4005 bytes or 1335 UTF-8 characters. (closes: #463137)
* New patch 51_sort-order.dpatch from 5.0.52 to fix incorrect order when
using range conditions on 2 tables or more.
* Support DEB_BUILD_OPTIONS option 'nocheck' to skip tests.
* Update mysqlreport to 3.4a release.
[ Luk Claes ]
* Updated Japanese debconf translation. (closes: #462158)
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 06 Feb 2008 11:57:45 +0100
mysql-dfsg-5.0 (5.0.51-3) unstable; urgency=high
* SECURITY:
Fix for CVE-2008-0226 and CVE-2008-0227: Three vulnerabilities in yaSSL
versions 1.7.5 and earlier were discovered that could lead to a server
crash or execution of unauthorized code. The exploit requires a server
with yaSSL enabled and TCP/IP connections enabled, but does not require
valid MySQL account credentials. The exploit does not apply to OpenSSL.
(closes: #460873)
* Fix LSB header in init scripts (patch from Petter Reinholdtsen).
(closes: #458798)
* Run testsuite on all archs, but ignore errors on alpha, arm, armel, hppa,
mipsel and sparc. (closes: #460402)
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 23 Jan 2008 11:37:11 +0100
mysql-dfsg-5.0 (5.0.51-2) unstable; urgency=low
[ Monty Taylor ]
* Added --with-system-type to set the version_compile_os field.
* Cleaned up some lintian warnings.
* Removed 43_scripts__mysql_update__password.dpatch since we don't use
mysql_upgrade_shell anymore and use mysql_upgrade instead.
* Removed 88_mctype_attrib.dpatch, http://bugs.mysql.com/bug.php?id=25118 is
closed with http://lists.mysql.com/commits/24337
* Added mysql-community/mysql-enterprise virtual packages in provides and
conflicts to ease transitions between versions.
[ Norbert Tretkowski ]
* Add -fPIC to CFLAGS to allow other packages to be built against
libmysqld.a on amd64. (closes: #457915)
* New patch 55_testsuite-2008.dpatch to fix FTBFS in testsuite.
(closes: #458695)
* New patch 54_ssl-client-support.dpatch to fix SSL client support.
* Don't run testsuite on alpha, arm, hppa, mipsel and sparc.
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 02 Jan 2008 18:40:04 +0100
mysql-dfsg-5.0 (5.0.51-1) unstable; urgency=low
* New upstream release.
+ Fix a crash in mysql_client_test due to gcc 4.x optimizations.
(closes: #452558)
* Update patches:
+ debian/patches/41_scripts__mysql_install_db.sh__no_test.dpatch
+ debian/patches/89_ndb__staticlib.dpatch
* Run testsuite after build.
* Re-add manpages, they are licensed under GPL now and redistribution is
permitted.
* Drop linux-libc-dev build-dependency, it's now being pulled by libc-dev
which is build-essential. (closes: #431018)
* Remove old optimizations for MySQL 3.23.x, they are no longer required.
(closes: #436552)
* Don't fail when upgrading mysql-common if $datadir is empty or not defined
(patch from Edward Allcutt). (closes: #453127)
* New patch from 5.0.52 to fix mysqldump because 'null' is shown as type of
fields for view with bad definer. (closes: #454227)
* New patch from 5.0.52 to fix mysqlcheck test result.
* New patch from 5.0.52 to fix wrong optimization in ndb code when building
with gcc 4.2.x.
* New patch from 5.0.54 to fix wrong number output due to integer overflow
when building with gcc 4.2.x.
* New Finnish debconf translation from Esko Arajärvi. (closes: #448776)
* Update Basque debconf translation from Aitor Ibañez. (closes: #456193)
* Add Vcs-* and Homepage fields to source stanza in control file.
* Update mysqlreport to 3.2 release.
* Let mysql-server-5.0 pre-depend on debconf, because it's preinst is using
it.
* Drop menu item for innotop.
-- Norbert Tretkowski <norbert@tretkowski.de> Fri, 14 Dec 2007 09:59:36 +0100
mysql-dfsg-5.0 (5.0.45-5) unstable; urgency=high
* SECURITY:
Fix for CVE-2007-6303: ALTER VIEW retained the original DEFINER value,
even when altered by another user, which could allow that user to gain the
access rights of the view. Now ALTER VIEW is allowed only to the original
definer or users with the SUPER privilege. (closes: #455737)
* SECURITY:
Fix for CVE-2007-6304: When using a FEDERATED table, the local server can
be forced to crash if the remote server returns a result with fewer columns
than expected.
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 12 Dec 2007 20:23:43 +0100
mysql-dfsg-5.0 (5.0.45-4) unstable; urgency=high
* SECURITY:
Fix for CVE-2007-5969: Using RENAME TABLE against a table with explicit
DATA DIRECTORY and INDEX DIRECTORY options can be used to overwrite system
table information by replacing the file to which the symlink points.
(closes: #455010)
-- Norbert Tretkowski <norbert@tretkowski.de> Sun, 09 Dec 2007 12:29:54 +0100
mysql-dfsg-5.0 (5.0.45-3) unstable; urgency=high
* SECURITY:
Fix for CVE-2007-5925: The convert_search_mode_to_innobase function in
ha_innodb.cc in the InnoDB engine in MySQL 5.1.23-BK and earlier allows
remote authenticated users to cause a denial of service (database crash)
via a certain CONTAINS operation on an indexed column, which triggers an
assertion error. (closes: #451235)
-- Norbert Tretkowski <norbert@tretkowski.de> Thu, 15 Nov 2007 18:40:11 +0100
mysql-dfsg-5.0 (5.0.45-2) unstable; urgency=low
* Package is now team-maintained. (closes: #421026)
[ Sean Finney ]
* New/updated debconf translations:
- Spanish, from Javier Fernández-Sanguino Peña (closes: #426442).
- German, from Alwin Meschede (closes: #426545).
- Danish, from Claus Hindsgaul (closes: #426783).
- French, from Christian Perrier (closes: #430944).
* Add Recommends on libterm-readkey-perl for mysql-client-5.0 package, used
by mysqlreport add-on to mask password entry (closes: #438375).
[ Norbert Tretkowski ]
* Add myself to uploaders.
* Suggest usage of an update statement on the user table to change the mysql
root user password instead using mysqladmin, to catch all root users from
all hosts. (closes: #435744)
* Remove informations about a crash in the server during flush-logs when
having expire_logs_days enabled but log-bin not, this bug was fixed in
5.0.32 already. (closes: #368547)
* Disable log_bin option in default config file and add a note to the NEWS
file. (closes: #349661)
* Fix FTBFS if build twice in a row. (closes: #442684)
* Remove check for buggy options from init script.
* Update innotop to 1.6.0 release.
* Add mysqlreport and innotop to mysql-client description.
* Use shorter server version string.
-- Norbert Tretkowski <norbert@tretkowski.de> Wed, 14 Nov 2007 20:00:06 +0100
mysql-dfsg-5.0 (5.0.45-1) unstable; urgency=low
* New upstream release.
[sean finney]
* removed patches that are incorporated into the latest release:
- 70_cpuid_on_i486.dpatch
- 91_SECURITY_CVE-2007-2691_alter-drop
* new patch 90_upstreamdebiandir.dpatch to keep a few lingering references
to the upstream ./debian dir out of the build, at least until we find
a nice way to collaborate on sharing the directory.
* updated CRUFT list to fix double-build breakage (closes: #424590).
* add conditional build-deps for linux-libc-dev to fix FTBFS for
non-linux arch's (closes: #431018).
* added notes to my.cnf and README.Debian about setting tmpdir when
configuring a replication slave. thanks to Rudy Gevaert for pointing
this out (closes: #431825).
-- sean finney <seanius@debian.org> Tue, 17 Jul 2007 23:50:33 +0200
mysql-dfsg-5.0 (5.0.41a-1) unstable; urgency=high
[sean finney]
* SECURITY:
Fix for CVE-2007-2691: DROP/RENAME TABLE statements (closes: #424778).
[Christian Hammers]
* Removed all manpages from the source (therefore the "41a") as they
are not licensed under the GPL and redistribution is not permitted
(thanks to Mathias Gug). Closes: #430018
* Added linux-libc-dev to the build-depends as else an illegal dependency to
asm/atomic.h is generated in /usr/include/mysql/my_global.h. Closes: 424276
[Christian Perrier]
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #419974
* Debconf translation updates:
- French. Closes: #422187
- Galician. Closes: #420118
- Italian. Closes: #421349
- Brazilian Portuguese. Closes: #421516
- Arabic. Closes: #421751
- Czech. Closes: #421766
- Portuguese. Closes: #422428
-- Christian Hammers <ch@debian.org> Sun, 24 Jun 2007 21:12:42 +0200
mysql-dfsg-5.0 (5.0.41-2) unstable; urgency=low
* the previous "translation changes" inadvertently introduced unrelated
changes in the package control file.
-- sean finney <seanius@debian.org> Sun, 13 May 2007 12:32:45 +0200
mysql-dfsg-5.0 (5.0.41-1) unstable; urgency=low
* New upstream release
[sean finney]
* Bump the priority of the debconf prompt for the root password to high, to
ensure the question shows up in a default installation (closes: #418672).
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #419974
* Debconf translation updates:
- French. Closes: #422187
- Galician. Closes: #420118
- Italian. Closes: #421349
- Brazilian Portuguese. Closes: #421516
- Arabic. Closes: #421751
- Czech. Closes: #421766
- Portuguese. Closes: #422428
* massaged the local PATH_MAX patch.
* removed temp sql parsing patch which has been incorporated upstream
* upstream no longer includes the mysql_create_system_tables command,
so removed our local patches for it.
* the following issues may have been fixed in a previous version of
mysql-server-5.0, but the exact version is not clear so they will be
marked as fixed in this version.
* lots of NDB-related fixes, including those related to problems with
AUTO_INCREMENT (closes: #310878).
* fix for "connections remaining in sleep state" (closes: #318011).
* fix for "denies queries randomly" (closes: #399602).
* problems indexing on char() binary fields were ISAM specific, which is
no longer supported (closes: #326698).
* fix for problems with "complicated joins" (closes: 348682).
* fix for problems with "flushing logs, server crash" (closes: #348682).
* fix for AUTO_INCREMENT and duplicate keys (closes: #416145).
* fix for "DROP FUNCTIONS doesn't work" (closes: #290670).
-- sean finney <seanius@debian.org> Sat, 12 May 2007 12:10:20 +0200
mysql-dfsg-5.0 (5.0.38-3) unstable; urgency=low
* Added innotop.
* Changed maintainer email address to
pkg-mysql-commits@lists.alioth.debian.org
-- Christian Hammers <ch@debian.org> Thu, 19 Apr 2007 19:21:15 +0200
mysql-dfsg-5.0 (5.0.38-2) unstable; urgency=high
* SECURITY:
In some previous versions mysql_install_db was not idempotent and did
always create passwordless root accounts although it should only on
initial installs (thanks to Olaf van der Spek). Closes: #418672
* Added check for passwordless root accounts to debian-start.
* As MySQL-5.0 is, at least currently, incompatible with Kernel 2.4 the
installation is aborted for such old kernels. Debian Etch does not support
them anyway according to the release notes but this might be unexpected
and many production servers still have self build ones installed (thanks
to Marc-Christian Petersen). See: #416841
* Adjusted TeX build-deps to texlive.
-- Christian Hammers <ch@debian.org> Tue, 17 Apr 2007 01:00:41 +0200
mysql-dfsg-5.0 (5.0.38-1) unstable; urgency=low
* New upstream release.
* Activated the blackhole engine as it's needed for replicating partition
designs (thanks to Cyril SCETBON).
* Fixed segfault on i486 systems without cpuid instruction (thanks to
Lennart Sorensen). Closes: #410474
* Only use of the non-essential debconf package in postrm if it is still
installed (thanks to Michael Ablassmeier). Closes: #416838
-- Christian Hammers <ch@debian.org> Thu, 5 Apr 2007 22:43:41 +0200
mysql-dfsg-5.0 (5.0.36-1) unstable; urgency=low
* New upstream release.
Closes: #400460, #408159, #408533
-- Christian Hammers <ch@debian.org> Thu, 22 Mar 2007 22:16:31 +0100
mysql-dfsg-5.0 (5.0.32-10) unstable; urgency=high
* Really fixed FTBFS on Sparc introduced with the "make -j" trick in
5.0.32-8 (thanks to Frank Lichtenheld). Closes: #415026
-- Christian Hammers <ch@debian.org> Sun, 18 Mar 2007 20:52:33 +0100
mysql-dfsg-5.0 (5.0.32-9) unstable; urgency=high
* Fixed FTBFS on Sparc introduced with the "make -j" trick in 5.0.32-8
(thanks to Frank Lichtenheld). Closes: #415026
-- Christian Hammers <ch@debian.org> Tue, 15 Mar 2007 18:55:42 +0100
mysql-dfsg-5.0 (5.0.32-8) unstable; urgency=high
[Sean Finney]
* SECURITY:
- CVE-2007-1420: Single Row Subselect DoS. Specially crafted subselect
queries could crash the mysql server. Patch backported from upstream
changeset 19685 (46_CVE-2007-1420_subselect_dos.dpatch)
closes: #414790.
[Christian Hammers]
* Adapt MAKE_J to use the -j option with the number of available processors.
(thanks to Raphael Pinson).
* Updated mysqlreport to latest upstream (and patched --help usage message
and "return if qcache_size==0").
-- sean finney <seanius@debian.org> Wed, 14 Mar 2007 20:19:08 +0100
mysql-dfsg-5.0 (5.0.32-7) unstable; urgency=low
* Updated French Debconf translation (thanks to Christian Perrier).
Closes: #411330
* Updated Danish Debconf translation (thanks to Claus Hindsgaul).
Closes: #411328
* Updated Portuguese Debconf translation (thanks to "Traduz").
Closes: #411339
* Updated Czech Debconf translation (thanks to Miroslav Kure).
Closes: #411341
* Added Norwegian Debconf translation (thanks to Bjorn Steensrud).
Closes: #411345
* Updated Spanish Debconf translation (thanks to Javier Fernandez-Sanguino
Pena). Closes: #411347
* Updated Japanese Debconf translation (thanks to Hideki Yamane).
Closes: #411368
* Updated Swedish Debconf translation (thanks to Andreas Henriksson).
Closes: #411370
* Updated Italian Debconf translation (thanks to Luca Monducci).
Closes: #411377
* Updated Galician Debconf translation (thanks to Jacobo Tarrio).
Closes: #411379
* Updated Russian Debconf translation (thanks to Yuriy Talakan).
Closes: #411442
* Updated Basque Debconf translation (thanks to Piarres Beobide).
Closes: #411457
* Updated German Debconf translation (thanks to Alwin Meschede).
Closes: #411480
* Updated Dutch Debconf translation (thanks to Thijs Kinkhorst).
* Updated Brazilian Portuguese translation (thanks to Andre Luis Lopes).
Closes: #411536
* Updated Romanian Debconf translation (thanks to Stan Ioan-Eugen).
Closes: #411764
-- Christian Hammers <ch@debian.org> Fri, 16 Feb 2007 23:20:42 +0100
mysql-dfsg-5.0 (5.0.32-6) unstable; urgency=low
* Changed wording in Debconf templates to better fit to the graphical
interface (thanks to Frank Kuester). Closes: #411165
* Lintian suggested style changes to some other Debconf questions.
* Removed accidently stdout output from init script.
-- Christian Hammers <ch@debian.org> Fri, 16 Feb 2007 20:29:18 +0100
mysql-dfsg-5.0 (5.0.32-5) unstable; urgency=medium
* Backported upstream patch for a bug that crashed the server when using
certain join/group/limit combinations.
Users of the Joomla CMS seemed to be affected by this. Closes: #403721
* The debian-start script that runs on every server start now first upgrades
the system tables (if neccessary) and then check them as it sometimes did
not work the other way around (e.g. for MediaWiki). The script now uses
mysql_update instead of mysql_update_script as recommended. Closes: 409780
* Remove the Debconf generated config file in postrm.
-- Christian Hammers <ch@debian.org> Thu, 15 Feb 2007 04:47:04 +0100
mysql-dfsg-5.0 (5.0.32-4) unstable; urgency=high
[Christian Hammers]
* Changed minimum required version in dh_makeshlibs to 5.0.27-1 as
5.0.26 had an ABI breakage in it!
This is the cause for Perl programs crashing with the following error:
"Transactions not supported by database at /usr/lib/perl5/DBI.pm line 672"
* The old_passwords setting that is set according to a Debconf question is
now written to /etc/mysql/conf.d/old_passwords.cnf instead directly to the
conffile /etc/mysql/my.cnf which would be fobidden by policy (thanks to
Robert Bihlmeyer). Closes: #409750
* Added some more comments to the default my.cnf.
[Monty Taylor]
* Added bison to build dependencies.
* Added a "start-initial" option to the Data Node init script to support
initial node starts.
* Changed NDB Data and Management node startup seqence. Prevented both from
restarting on upgrade to address rolling upgrade issues.
* Updated build-depends to depend on automake1.9 instead of automake1.8
to match what upstream uses.
-- Christian Hammers <ch@debian.org> Wed, 31 Jan 2007 01:14:09 +0100
mysql-dfsg-5.0 (5.0.32-3) unstable; urgency=high
* mysql-server-5.0 pre-depends on adduser now and has --disabled-login
explicitly added to be on the safe side (thanks to the puiparts team).
Closes: #408362
* Corrections the terminology regarding NDB in the comments of all config
files and init scripts (thanks to Geert Vanderkelen of MySQL).
* Updated Swedish Debconf translation (thanks to Andreas Henriksson).
Closes: #407859
* Updated Czech Debconf translation (thanks to Miroslav Kure).
Closes: #407809
-- Christian Hammers <ch@debian.org> Thu, 11 Jan 2007 11:18:47 +0100
mysql-dfsg-5.0 (5.0.32-2) unstable; urgency=high
* The last upload suffered from a regression that made NDB totally
unusable and caused a dependency to libmysqlclient15-dev in the
mysql-server-5.0 package. The relevant 85_* patch was re-added again.
Closes: #406435
* Added lintian-overrides for an error that does not affect our packages.
There are now only warnings and not errors left.
-- Christian Hammers <ch@debian.org> Tue, 9 Jan 2007 23:55:10 +0100
mysql-dfsg-5.0 (5.0.32-1) unstable; urgency=high
* New upstream version.
* SECURITY: mysql_fix_privilege_tables.sql altered the
table_privs.table_priv column to contain too few privileges, causing
loss of the CREATE VIEW and SHOW VIEW privileges. (MySQL Bug#20589)
* SECURITY (DoS): ALTER TABLE statements that performed both RENAME TO
and {ENABLE|DISABLE} KEYS operations caused a server crash. (MySQL
Bug#24089)
* SECURITY (DoS): LAST_DAY('0000-00-00') could cause a server crash.
(MySQL Bug#23653)
* SECURITY (DoS): Using EXPLAIN caused a server crash for queries that
selected from INFORMATION_SCHEMA in a subquery in the FROM clause.
(MySQL Bug#22413)
* SECURITY (DoS): Invalidating the query cache (e.g. when using stored procedures)
caused a server crash for INSERT INTO ... SELECT statements that
selected from a view. (MySQL Bug#20045)
* Using mysql_upgrade with a password crashed the server. Closes: #406229
* yaSSL crashed on pre-Pentium Intel and Cyrix CPUs. (MySQL Bug#21765)
Closes: #383759
* Lots of small fixes to the NDB cluster storage engine.
* Updated Japanese Debconf template (thanks to Hideki Yamane).
Closes: #405793
* Fixed comment regarding "mycheck" in debian-start (thanks to
Enrico Zini). Closes: #405787
-- Christian Hammers <ch@debian.org> Sat, 6 Jan 2007 14:26:20 +0100
mysql-dfsg-5.0 (5.0.30-3) unstable; urgency=low
* Updated Brazilian Debconf translation (thanks to Andre Luis Lopes).
Closes: #403821
* Added Romanian Debconf translation (thanks to Stan Ioan-Eugen).
Closes: #403943
* Updated Spanish Debconf translation (thanks to Javier Fernandez-Sanguino
Pena). Closes: #404084
* Updated Galician Debconf translation (thanks to Jacobo Tarrio).
Closes: #404318
* Updated Dutch Debconf translation (thanks to Vincent Zweije).
Closes: #404566
* Updated Danish Debconf translation (thanks to Claus Hindsgaul).
Closes: #405018
-- Christian Hammers <ch@debian.org> Thu, 21 Dec 2006 21:35:09 +0100
mysql-dfsg-5.0 (5.0.30-2) unstable; urgency=high
* Fixed upstream regression in header files that lead to FTBFS for
mysql-admin, mysql-query-browser and probably other pacakges.
(thanks to Andreas Henriksson). Closes: #403081, #403082
* Fixed some upstream scripts by replacing /etc by /etc/mysql (thanks to
Julien Antony). Closes: #401083
* Updated French Debconf translation (thanks to Christian Perrier).
Closes: #401434
* Added Spanish Debconf translation (thanks to Javier Fernandez-Sanguino
Pena). Closes: #401953
* Marked a Debconf question that is just a dummy and only internally
used as not-needing-translation. Closes: #403163
* Fixed mysqlslowdump patch to not remove the usage() function (thanks
to Monty Tailor).
-- Christian Hammers <ch@debian.org> Sun, 3 Dec 2006 19:20:10 +0100
mysql-dfsg-5.0 (5.0.30-1) unstable; urgency=low
* New upstream version (switch to the MySQL Enterprise branch).
* Upstream bugfix for the Innodb performance bug:
"Very poor performance with multiple queries running
concurrently (Bug#15815)".
* Upstream bugfix for a possible server crash:
"Selecting from a MERGE table could result in a server crash if the
underlying tables had fewer indexes than the MERGE table itself
(Bug#22937)"
* Upstream bugfies for *lot* of NDB problems.
* Upstream bugfix for Innodb optimizer bug. Closes: #397597
* Updated Italian Debconf translation (thanks to Luca Monducci).
Closes: #401305
* Updated debian/watch file to MySQL Enterprise branch.
-- Christian Hammers <ch@debian.org> Sat, 2 Dec 2006 16:36:38 +0100
mysql-dfsg-5.0 (5.0.27-2) unstable; urgency=medium
* Disabled YaSSL x86 assembler as it was reported to crash applications
like pam-mysql or proftpd-mysql which are linked against libmysqlclient
on i486 and Cyrix (i586) CPUs. Closes: #385147
* Adjusted mysql-server-4.1 priority to extra and section to oldlibs
according to the ftp masters overrides.
* Updated German Debconf translation (thanks to Alwin Meschede).
Closes: #400809
-- Christian Hammers <ch@debian.org> Wed, 22 Nov 2006 13:36:31 +0100
mysql-dfsg-5.0 (5.0.27-1) unstable; urgency=medium
* New upstream version (but no codechange, the only difference to 5.0.26
was a patch to the ABI change which Debian already included.
* When dist-upgrading from mysql-server-4.1/sarge dpkg does not longer
ask unnecessary "config file has changed" questions regarding
/etc/init.d/mysql, /etc/logrotate.d/mysql-server and
/etc/mysql/debian-start just because these files previously belonged
to mysql-server-4.1 and not to mysql-server-5.0.
To archive this mysql-server-5.0 now pre-depends on mysql-common which
provides current versions of those files.
* The automatic run mysql_upgrade now works with non-standard datadir
settings, too (thanks to Benjami Villoslada). Closes: #394607
* Debconf now asks if the old_passwords option is really needed.
* Improved explanations of the old_passwords variable in my.cnf.
* Removed possibly leftover cron script from MySQL-4.1 (thanks to
Mario Oyorzabal Salgado). Closes: #390889
* Postrm ignores failed "userdel mysql".
* Updated Danish Debconf translation (thanks to Claus Hindsgaul).
Closes: #398784
* Added Euskarian Debconf translation (thanks to Piarres Beobide).
Closes: #399045
* Updated Japanese Debconf translation (thanks to Hideki Yamane).
Closes: #399074
* Updated German Debconf translation (thanks to Alwin Meschede).
Closes: #399087
* New Portuguese debconf translations from Miguel Figueiredo.
Closes: #398186
-- Christian Hammers <ch@debian.org> Tue, 7 Nov 2006 21:26:25 +0100
mysql-dfsg-5.0 (5.0.26-3) unstable; urgency=high
[sean finney]
* Fix for the deadly ISAM trap. Now during upgrades we will do our
very best to convert pre-existing ISAM format tables using the
binaries from the previous package. Success is not guaranteed, but
this is probably as good as it gets. Note that this also necessitates
re-introducing an (empty transitional) mysql-server-4.1 package.
Closes: #354544, #354850
* Remove a couple spurious and wrongly placed WARNING statements from
45_warn-CLI-passwords.dpatch. thanks to Dan Jacobsen for pointing these
out. Closes: #394262
-- sean finney <seanius@debian.org> Fri, 03 Nov 2006 18:34:46 +0100
mysql-dfsg-5.0 (5.0.26-2) unstable; urgency=high
* Fixed FTBFS for Alpha by applying an upstream patch (thanks to Falk
Hueffner). Closes: #395921
-- Christian Hammers <ch@debian.org> Sat, 28 Oct 2006 20:13:46 +0200
mysql-dfsg-5.0 (5.0.26-1) unstable; urgency=high
* SECURITY:
This combined release of 5.0.25 and 5.0.26 fixes lot of possible server
crashs so it should get into Etch. Quoting the changelog (bug numbers are
bugs.mysql.com ones):
- character_set_results can be NULL to signify no conversion, but some
code did not check for NULL, resulting in a server crash. (Bug#21913)
- Using cursors with READ COMMITTED isolation level could cause InnoDB to
crash. (Bug#19834)
- Some prepared statements caused a server crash when executed a second
time. (Bug#21166)
- When DROP DATABASE or SHOW OPEN TABLES was issued while concurrently
issuing DROP TABLE (or RENAME TABLE, CREATE TABLE LIKE or any other
statement that required a name lock) in another connection, the server
crashed. (Bug#21216)
- Use of zero-length variable names caused a server crash. (Bug#20908)
- For InnoDB tables, the server could crash when executing NOT IN ()
subqueries. (Bug#21077)
- Repeated DROP TABLE statements in a stored procedure could sometimes
cause the server to crash. (Bug#19399)
- Performing an INSERT on a view that was defined using a SELECT that
specified a collation and a column alias caused the server to crash
(Bug#21086).
- A query of the form shown here caused the server to crash. (Bug#21007)
- NDB Cluster: Some queries involving joins on very large NDB tables could
crash the MySQL server. (Bug#21059)
- The character set was not being properly initialized for CAST() with a
type like CHAR(2) BINARY, which resulted in incorrect results or even a
server crash. (Bug#17903)
- For certain queries, the server incorrectly resolved a reference to an
aggregate function and crashed. (Bug#20868)
- The server crashed when using the range access method to execut a
subquery with a ORDER BY DESC clause. (Bug#20869)
- Triggers on tables in the mysql database caused a server crash. Triggers
for tables in this database now are disallowed. (Bug#18361)
- Using SELECT on a corrupt MyISAM table using the dynamic record format
could cause a server crash. (Bug#19835)
- Use of MIN() or MAX() with GROUP BY on a ucs2 column could cause a
server crash. (Bug#20076)
- Selecting from a MERGE table could result in a server crash if the
underlying tables had fewer indexes than the MERGE table itself.
(Bug#21617, Bug#22937)
* New upstream release.
- This bug would cause trouble for Sarge->Etch upgrades, it was supposed to
have been fixed in 5.0.16 but that apparently did not fix the whole
problem:
Using tables from MySQL 4.x in MySQL 5.x, in particular those with VARCHAR
fields and using INSERT DELAYED to update data in the table would result in
either data corruption or a server crash. (Bug#16611, Bug#16218, Bug#17294)
Closes: #386337
- Fixes data corruption as an automatic client reconnect used to set
the wrong character set. Closes: #365050
- Fixes an undefined ulong type in an include file. Closes: #389102
- Fixes wrong output format when using Unicode characters. Closes: #355302
- Fixes mysql_upgrade when using a password. Closes: #371841
[Christian Hammers]
* Removed --sysconfdir from debian/rules as it puts /etc/mysql/ at the
end of the my.cnf search patch thus overriding $HOME/my.cnf
(thanks to Christoph Biedl). Closes: #394992
* The provided patch from bug #385947 was wrong, the variable is called
BLOCKSIZE not BLOCK_SIZE according to "strings `which df`" (thanks to
Bruno Muller). Closes: #385947
[sean finney]
* new dutch debconf translations from Vincent Zweije (closes: #392809).
* new japanese debconf translations from Hideki Yamane (closes: #391625).
* new italian debconf translations from Luca Monducci (closes: #391741).
* new french debconf translations from Christian Perrier (closes: #393334).
* ran debconf-updatepo to merge the fuzzies into svn.
* massage the following patches so they continue to apply cleanly:
- 44_scripts__mysql_config__libs.dpatch to cleanly apply.
- 45_warn-CLI-passwords.dpatch
- 96_TEMP__libmysqlclient_ssl_symbols.dpatch (note, this patch might
no longer be needed, but is retained "just in case" after massaging it)
* the following patches have been incorporated upstream:
- 70_kfreebsd.dpatch
- 80_hurd_mach.dpatch
- 87_ps_Hurd.dpatch
- 90_TEMP__client__mysql_upgrade__O_EXEC.dpatch
- 91_TEMP__client__mysql_upgrade__password.dpatch
- 92_TEMP__client__mysql_upgrade__defaultgroups.dpatch
- 94_TEMP__CVE-2006-4227.dpatch
- 95_TEMP__CVE-2006-4226.dpatch
* the udf_example.cc has disappeared from the source code, but there's
a udf_example.c which seems to be a good example to use instead :)
* update documentation in the configuration to no longer reference
using my.cnf in the DATADIR, as it's never been the recommended
method for debian systems and hasn't worked since 5.0 was released
anyway (closes: #393868).
-- Christian Hammers <ch@debian.org> Wed, 25 Oct 2006 19:54:04 +0200
mysql-dfsg-5.0 (5.0.24a-9) unstable; urgency=medium
* Having expire_logs_days enabled but log-bin not crashes the server. Using
both or none of those options is safe. To prevent this happening during the
nightly log rotation via /etc/logrotate.d/mysql the initscript checks for
malicious combination of options. See: #368547
* The Sarge package "mysql-server" which used to include the mysqld daemon
may still be in unselected-configured state (i.e. after a remove but not
purge) in which case its now obsolete cronscript has to be moved away
(thanks to Charles Lepple). Closes: #385669
* Updated Danish Debconf translation (thanks to Claus Hindsgaul).
Closes: #390315
* Updated Frensh Debconf translation (thanks to Christian Perrier).
Closes: #390980
-- Christian Hammers <ch@debian.org> Tue, 3 Oct 2006 14:55:31 +0200
mysql-dfsg-5.0 (5.0.24a-8) unstable; urgency=low
* (broken upload)
-- Christian Hammers <ch@debian.org> Tue, 3 Oct 2006 14:55:31 +0200
mysql-dfsg-5.0 (5.0.24a-7) unstable; urgency=low
* Stopped mysql_config from announcing unnecessary library dependencies
which until now cause "NEEDED" dependencies in the "readelf -d" output
of libraries who only depend on libmysqlclient.so (thanks to Michal
Cihar). Closes: #390692
-- Christian Hammers <ch@debian.org> Sun, 1 Oct 2006 23:59:43 +0200
mysql-dfsg-5.0 (5.0.24a-6) unstable; urgency=low
[sean finney]
* finally add support for setting a root password at install.
while this is not a random password as requested in one bug
report, we believe it is the best solution and provides a
means to set a random password via preseeding if it's really
desired (Closes: #316127, #298295).
-- sean finney <seanius@debian.org> Sun, 01 Oct 2006 23:34:30 +0200
mysql-dfsg-5.0 (5.0.24a-5) unstable; urgency=low
* Added ${shlibs:Depends} to debian/control section libmysqlclient-dev as it
contains the experimental /usr/lib/mysql/libndbclient.so.0.0.0.
* Bumped standards version to 3.7.2.
* Added LSB info section to init scripts.
* Rephrased Debconf templates as suggested by lintian.
* Added benchmark suite in /usr/share/mysql/sql-bench/.
* The mysql.timezone* tables are now filled by the postinst script (thanks
to Mark Sheppard). Closes: #388491
* Moved Debconf install notes to README.Debian. Displaying them with
medium priority was a bug anyway. Closes: #388941
* Replaced /usr/bin/mysql_upgrade by /usr/bin/mysql_upgrade_shell in
/etc/mysql/debian-start.sh as it works without errors (thanks to Javier
Kohen). Closes: #389443
-- Christian Hammers <ch@debian.org> Wed, 20 Sep 2006 15:01:42 +0200
mysql-dfsg-5.0 (5.0.24a-4) unstable; urgency=high
* libmysqlclient.so.15 from 5.0.24 accidentaly exports some symbols that are
historically exported by OpenSSL's libcrypto.so. This bug was supposed to
be fixed in 5.0.24a bug according to the mysql bug tracking system will
only be fixed in 5.0.25 so I backported the patch. People already reported
crashing apps due to this (thanks to Duncan Simpson). See also: #385348
Closes: #388262
* Fixed BLOCKSIZE to BLOCK_SIZE in initscript (thanks to Bruno Muller).
Closes: #385947
* Added hint to "--extended-insert=0" to mysqldump manpage (thanks to Martin
Schulze).
* Documented the meaning of "NDB" in README.Debian (thanks to Dan Jacobson).
Closes: #386274
* Added patch to build on hurd-i386 (thanks to Cyril Brulebois). Closes: #387369
* Fixed debian-start script to work together with the recend LSB modifications in
the initscript (thanks to wens). Closes: #387481
* Reverted tmpdir change in my.cnf back to /tmp to comply with FHS (thanks
to Alessandro Valente). Closes: #382778
* Added logcheck filter rule (thanks to Paul Wise). Closes: #381043
* I will definetly not disable InnoDB but added a note to the default my.cnf
that disabling it saves about 100MB virtual memory (thanks to Olivier
Berger). Closes: #384399
* Added thread_cache_size=8 to default my.cnf as this variable seems to have
a negligible memory footprint but can improve performance when lots of
threads connect simultaneously as often seen on web servers.
-- Christian Hammers <ch@debian.org> Mon, 4 Sep 2006 00:21:50 +0200
mysql-dfsg-5.0 (5.0.24a-3) unstable; urgency=low
* Fixed potential tempfile problem in the newly added mysqlreport script.
-- Christian Hammers <ch@debian.org> Sun, 3 Sep 2006 23:17:24 +0200
mysql-dfsg-5.0 (5.0.24a-2) unstable; urgency=low
* Added "mysqlreport" (GPL'ed) from hackmysql.com.
* Temporarily disabled expire_days option as it causes the server
to crash. See #368547
* Made output of init scripts LSB compliant (thanks to David Haerdeman).
Closes: #385874
-- Christian Hammers <ch@debian.org> Sun, 3 Sep 2006 19:06:53 +0200
mysql-dfsg-5.0 (5.0.24a-1) unstable; urgency=high
* New upstream version.
* The shared library in the 5.0.24 upstream release accidently exported
some symbols that are also exported by the OpenSSL libraries (notably
BN_bin2bn) causing unexpected behaviour in applications using these
functions (thanks to Peter Cernak). Closes: #385348
* Added note about possible crash on certain i486 clone CPUs.
* Made recipient address of startup mysqlcheck output configurable
(thanks to Mattias Guns). Closes: #385119
-- Christian Hammers <ch@debian.org> Mon, 28 Aug 2006 01:22:12 +0200
mysql-dfsg-5.0 (5.0.24-3) unstable; urgency=high
* SECURITY:
CVE-2006-4226:
When run on case-sensitive filesystems, MySQL allows remote
authenticated users to create or access a database when the database
name differs only in case from a database for which they have
permissions.
CVE-2006-4227:
MySQL evaluates arguments of suid routines in the security context of
the routine's definer instead of the routine's caller, which allows
remote authenticated users to gain privileges through a routine that
has been made available using GRANT EXECUTE.
Thanks to Stefan Fritsch for reporting. Closes: #384798
-- Christian Hammers <ch@debian.org> Sat, 26 Aug 2006 04:55:17 +0200
mysql-dfsg-5.0 (5.0.24-2) unstable; urgency=high
* 5.0.24-1 introduced an ABI incompatibility, which this patch reverts.
Programs compiled against 5.0.24-1 are not compatible with any other
version and needs a rebuild.
This bug already caused a lot of segfaults and crashes in various
programs. Thanks to Chad MILLER from MySQL for quickly providing a patch.
The shlibdeps version has been increased to 5.0.24-2.
Closes: #384047, #384221, #383700
-- Christian Hammers <ch@debian.org> Fri, 25 Aug 2006 21:47:35 +0200
mysql-dfsg-5.0 (5.0.24-1) unstable; urgency=high
* SECURITY: Upstream fixes a security bug which allows a user to continue
accessing a table using a MERGE TABLE after the right to direct access to
the database has been revoked (CVE-2006-4031, MySQL bug #15195).
(Well they did not exactly fixed it, they documented the behaviour and
allow the admin to disable merge table alltogether...). Closes: #380271
* SECURITY: Applied patch that fixes a possibly insecure filehandling
in the recently added mysql_upgrade binary file (MySQL bug #10320).
* New upstream version.
- Fixes nasty MySQL bug #19618 that leads to crashes when using
"SELECT ... WHERE ... not in (1, -1)" (e.g. vbulletin was affected).
- Fixes upstream bug #16803 so that linking ~/.mysql_history to /dev/null
now has the desired effect of having no history.
* Really fixed the runlevels. Closes: #377651
* Added patch for broken upstream handling of "host=" to mysql_upgrade.c.
* Adjusted /etc/mysql/debian-start to new mysql_upgrade.c
-- Christian Hammers <ch@debian.org> Tue, 8 Aug 2006 00:44:13 +0200
mysql-dfsg-5.0 (5.0.22-5) unstable; urgency=low
* Added further line to the logcheck ignore files (thanks to Paul Wise).
Closes: #381038
-- Christian Hammers <ch@debian.org> Wed, 2 Aug 2006 00:28:50 +0200
mysql-dfsg-5.0 (5.0.22-4) unstable; urgency=low
* Upstream fixes a bug in the (never released) version 5.0.23 which could
maybe used to crash the server if the mysqlmanager daemon is in use
which is not yet the default in Debian. (CVE-2006-3486 *DISPUTED*)
* Changed runlevel priority of mysqld from 20 to 19 so that it gets started
before apache and proftpd etc. which might depend on an already running
database server (thanks to Martin Gruner). Closes: #377651
* Added patch which sets PATH_MAX in ndb (thanks to Cyril Brulebois).
Closes: #378949
* Activated YaSSL as licence issues are settled according to:
http://bugs.mysql.com/?id=16755. This also closes the FTBFS bug
regarding OpenSSL as it is discouraged to use now. Closes: #368639
* Removed SSL-MINI-HOWTO as the official documentation is good enough now.
* mysql_upgrade no longer gives --password on the commandline which would
be insecure (thanks to Dean Gaudet). Closes: #379199
* Adjusted debian/patches/45* to make consecutive builds in the same source
tree possible (thanks to Bob Tanner). Closes: #368661
* mysql-server-5.0 is now suggesting tinyca as yaSSL is enabled and tinyca
was found to be really cool :)
* Moved tempdir from /tmp to /var/tmp as it will more likely have enough
free space as /tmp is often on the root partition and /var or at least
/var/tmp is on a bigger one.
-- Christian Hammers <ch@debian.org> Mon, 10 Jul 2006 23:30:26 +0200
mysql-dfsg-5.0 (5.0.22-3) unstable; urgency=low
* Added patch for MySQL bug #19618: "select x from x
where x not in(1,-1)" may crash the server" (thanks to
Ruben Puettmann).
-- Christian Hammers <ch@debian.org> Fri, 9 Jun 2006 01:41:44 +0200
mysql-dfsg-5.0 (5.0.22-2) unstable; urgency=high
* Fixed debian-sys-maint related bug in postinst (thanks to
Jean-Christophe Dubacq). Closes: #369970
* The last upload was a security patch (which I did not know as I
uploaded before the announcement came). I now added the CVE id for
reference and set urgency to high as the last entry did not.
-- Christian Hammers <ch@debian.org> Wed, 31 May 2006 01:04:11 +0200
mysql-dfsg-5.0 (5.0.22-1) unstable; urgency=low
* SECURITY: This upstream release fixes an SQL-injection with multibyte
encoding problem. (CVE-2006-2753)
* New upstream release.
* Upstream fixes REPAIR TABLE problem. Closes: #354300
* Upstream fixes problem that empty strings in varchar and text columns
are displayed as NULL. Closes: #368663
-- Christian Hammers <ch@debian.org> Tue, 30 May 2006 23:43:24 +0200
mysql-dfsg-5.0 (5.0.21-4) unstable; urgency=low
* Added "BLOCKSIZE=" to the diskfree check (thanks to Farzad FARID).
Closes: #367027, #367083
* Further fixed mysql_upgrade upstream script (thanks to Andreas Pakulat)
Closes: #366155
* Adjusted the /proc test in debian/rules from /proc/1 to /proc/self
to make building on grsec systems possible (thanks to K. Rosenegger).
Closes: #366824
* Updated Russion Debconf translation (thanks to Yuriy Talakan).
Closes: #367141
* Updated Czech Debconf translation (thanks to Kiroslav Kure).
Closes: #367160
* Updated Galician Debconf translation (thanks to Jacobo Tarrio).
Closes: #367384
* Updated Swedish Debconf translation (thanks to Daniel Nylander).
Closes: #368186
-- Christian Hammers <ch@debian.org> Wed, 10 May 2006 08:45:42 +0200
mysql-dfsg-5.0 (5.0.21-3) unstable; urgency=low
* Fixed FTBFS problem which was caused by a patch that modifies Makefile.am
as well as Makefile.in and was not deteced because my desktop was fast
enough to patch both files within the same second and so fooled automake.
(thanks to Blars Blarson for notifying me). Closes: #366534
-- Christian Hammers <ch@debian.org> Sat, 6 May 2006 19:03:58 +0200
mysql-dfsg-5.0 (5.0.21-2) unstable; urgency=low
* Fixed bug in postinst that did not correctly rewrite
/etc/mysql/debian.cnf (thanks to Daniel Leidert).
Closes: #365433, #366155
-- Christian Hammers <ch@debian.org> Thu, 4 May 2006 02:37:03 +0200
mysql-dfsg-5.0 (5.0.21-1) unstable; urgency=high
* SECURITY: New upstream release with some security relevant bugfixes:
* "Buffer over-read in check_connection with usernames lacking a
trailing null byte" (CVE-2006-1516)
* "Anonymous Login Handshake - Information Leakage" (CVE-2006-1517)
* "COM_TABLE_DUMP Information Leakage and Arbitrary command execution"
(CVE-2006-1518)
Closes: #365938, #365939
* Added diskfree check to the init script (thanks to Tim Baverstock).
Closes: #365460
* First amd64 upload!
-- Christian Hammers <ch@debian.org> Sat, 29 Apr 2006 04:31:27 +0200
mysql-dfsg-5.0 (5.0.20a-2) unstable; urgency=low
* The new mysql-upgrade which is started from /etc/mysql/debian-start
does now use the debian-sys-maint user for authentication (thanks to
Philipp). Closes: #364991
* Wrote patch debian/patches/43* which adds a password option to
mysql_update. See MySQL bug #19400.
* Added "Provides: libmysqlclient-dev" to libmysqlclient15-dev as I saw no
obvious reasons against it (problems should be documented in
debian/README.Maintainer!) (thanks to Olaf van der Spek). Closes: #364899
* Updated Netherlands debconf translation (thanks to Vincent Zweije)
Closes: #364464
* Updated French debconf translation (thanks to Christian Perrier)
Closes: #364401
* Updated Danish debconf translation (thanks to Claus Hindsgaul)
Closes: #365135
-- Christian Hammers <ch@debian.org> Wed, 26 Apr 2006 01:14:53 +0200
mysql-dfsg-5.0 (5.0.20a-1) unstable; urgency=low
* New upstream release.
* Added the new mysql_upgrade script and added it to
/etc/mysql/debian-start (thanks to Alessandro Polverini).
The script is currently very noise that is a known bug and will be
fixed in the next release!
Closes: #363458
* No longer creates the "test" database. This actuallay had been tried
to archive before (at least patches) exists but apparently was not the
case in the last versions (thanks to Olaf van der Spek). Closes: #362126
* Reformatted libmysqlclient15off.NEWS.Debian to changelog format
(thanks to Peter Palfrader). Closes: #363062
-- Christian Hammers <ch@debian.org> Sat, 15 Apr 2006 13:05:22 +0200
mysql-dfsg-5.0 (5.0.20-1) unstable; urgency=high
* Upstream contains a fix for a nasty bug (MySQL#18153) that users
already experienced and that caused corrupted triggers after
REPAIR/OPTIMIZE/ALTER TABLE statements.
(thanks to Jerome Despatis for pointing out)
* Added patch for the "updates on multiple tables is buggy after
upgrading from 4.1 to 5.0" problem which MySQL has been committed
for the upcoming 5.0.21 release. Closes #352704
* Added Netherlands debconf translation (thanks to Vincent Zweije).
Closes: #360443
* Added Galician debconf translation (thanks to Jacobo Tarrio).
Closes: #361257
-- Christian Hammers <ch@debian.org> Fri, 7 Apr 2006 00:00:43 +0200
mysql-dfsg-5.0 (5.0.19-3) unstable; urgency=high
[ Christian Hammers ]
* Fixed libmysqlclient15.README.Debian regarding package name changes
(thanks to Leppo).
* Moved libheap.a etc. back to /usr/lib/mysql/ as their names are just
too generic. Closes: #353924
[ Sean Finney ]
* updated danish debconf translation, thanks to Claus Hindsgaul
(closes: #357424).
[ Adam Conrad ]
* Send stderr from 'find' in preinst to /dev/null to tidy up chatter.
* Backport patch for CVE-2006-0903 from the upcoming release to resolve
a log bypass vulnerability when using non-binary logs (closes: #359701)
-- Adam Conrad <adconrad@0c3.net> Tue, 4 Apr 2006 15:23:18 +1000
mysql-dfsg-5.0 (5.0.19-2) unstable; urgency=medium
* New upstream release.
* Renamed package libmysqlclient15 to libmysqlclient15off due to
binary incompatible changes.
See /usr/share/doc/libmysqlclient15off/README.Debian
* Updated Czech debconf translation (thanks to Miroslav Kure).
Closes: #356503
* Updated French debconf translation (thanks to Christian Perrier).
Closes: #356332
* Improved README.Debian (thanks to Olaf van der Spek). Closes: #355702
* Fixed 5.0.18-8 changelog by saying in which package the NEWS.Debian
file is (thanks to Ross Boylan). Closes: #355978
-- Christian Hammers <ch@debian.org> Fri, 17 Mar 2006 02:32:19 +0100
mysql-dfsg-5.0 (5.0.19-1) experimental; urgency=medium
* New upstream release.
* SECURITY: CVE-2006-3081: A bug where str_to_date(1,NULL) lead to a
server crash has been fixed.
(this note has been added subsequently for reference)
* Renamed package libmysqlclient15 to libmysqlclient15off.
See /usr/share/doc/libmysqlclient15off/NEWS.Debian
* Updated Czech debconf translation (thanks to Miroslav Kure).
Closes: #356503
* Updated French debconf translation (thanks to Christian Perrier).
Closes: #356332
* Improved README.Debian (thanks to Olaf van der Spek). Closes: #355702
* Fixed 5.0.18-8 changelog by saying in which package the NEWS.Debian
file is (thanks to Ross Boylan). Closes: #355978
-- Christian Hammers <ch@debian.org> Tue, 14 Mar 2006 22:56:13 +0100
mysql-dfsg-5.0 (5.0.18-9) unstable; urgency=medium
[ Christian Hammers ]
* When using apt-get the check for left-over ISAM tables can abort the
installation of mysql-server-5.0 but not prevent the mysql-server-4.1
package from getting removed. The only thing I can do is reflect this
in the Debconf notice that is shown and suggest to reinstall
mysql-server-4.1 for converting. See: #354850
* Suggests removing of /etc/cron.daily/mysql-server in last NEWS message
(thanks to Mourad De Clerck). Closes: #354111
* Added versioned symbols for kfreebsd and Hurd, too (thanks to Aurelien
Jarno and Michael Bank). Closes: #353971
* Added versioned symbols for kfreebsd, too (thanks to Aurelien Jarno).
Closes: #353971
[ Adam Conrad ]
* Add 39_scripts__mysqld_safe.sh__port_dir.dpatch to ensure that the
permissions on /var/run/mysqld are always correct, even on a tmpfs.
-- Christian Hammers <ch@debian.org> Mon, 6 Mar 2006 21:42:13 +0100
mysql-dfsg-5.0 (5.0.18-8) unstable; urgency=low
* The rotation of the binary logs is now configured via
expire-logs-days in /etc/mysql/my.cnf and handled completely
by the server and no longer in configured in debian-log-rotate.conf
and handled by a cron job. Thanks to David Johnson.
See /usr/share/doc/mysql-server-5.0/NEWS.Debian
* Ran aspell over some files in debian/ and learned a lot :)
* debian/rules: Added check if versioned symbols are really there.
* Updated SSL-MINI-HOWTO.
* Updated copyright (removed the parts regarding the now removed
BerkeleyDB table handler and mysql-doc package).
* Relocated a variable in preinst (thanks to Michael Heldebrant).
Closes: #349258, #352587, #351216
* Updated Danish debconf translation (thanks to Claus Hindsgaul).
Closes: #349013
* Updated Swedish debconf translation (thanks to Daniel Nylander).
Closes: #349522
* Updated French debconf translation (thanks to Christian Perrier).
Closes: #349592
* Fixed typo in README.Debian (thanks to Vincent Ricard).
* Prolonged waiting time for mysqld in the init script. Closes: #352070
-- Christian Hammers <ch@debian.org> Mon, 23 Jan 2006 23:13:46 +0100
mysql-dfsg-5.0 (5.0.18-7) unstable; urgency=low
* Made mailx in debian-start.inc.sh optional and changed the dependency on it
on it to a mere recommendation. Closes: #316297
* the previous FTBFS patches for GNU/Hurd inadvertently led to configure
being regenerating, losing a couple trivial things like our versioned
symbols patch, causing many nasty problems (closes: #348854).
-- sean finney <seanius@debian.org> Fri, 20 Jan 2006 20:59:27 +0100
mysql-dfsg-5.0 (5.0.18-6) unstable; urgency=low
* Added version comment (thanks to Daniel van Eeden).
* Added two patches to build on GNU/Hurd (thanks to Michael Bank).
Closes: #348182
* Abort upgrade if old and now unsupported ISAM tables are present
(thanks to David Coe). Closes: #345895
-- Christian Hammers <ch@debian.org> Tue, 17 Jan 2006 19:25:59 +0100
mysql-dfsg-5.0 (5.0.18-5) unstable; urgency=low
* Bump shlibdeps for libmysqlclient15 to (>= 5.0.15-1), which was
the first non-beta release from upstream, as well as being shortly
after we broke the ABI in Debian by introducing versioned symbols.
-- Adam Conrad <adconrad@0c3.net> Fri, 13 Jan 2006 13:18:03 +1100
mysql-dfsg-5.0 (5.0.18-4) unstable; urgency=low
* Munge our dependencies further to smooth upgrades even more, noting
that we really need 5.0 to conflict with 4.1, and stealing a page from
the book of mysql-common, it doesn't hurt to hint package managers in
the direction of "hey, this stuff is a complete replacement for 4.1"
* Change the description of mysql-server and mysql-client to remove the
references to it being "transition", and instead point out that it's
the way to get the "current best version" of each package installed.
-- Adam Conrad <adconrad@0c3.net> Wed, 11 Jan 2006 11:39:45 +1100
mysql-dfsg-5.0 (5.0.18-3) unstable; urgency=low
* Make the mysql-{client,server}-5.0 conflict against mysql-{client,server}
versioned, so they can be installed side-by-side and upgrade properly.
* Add myself to Uploaders; since I have access to the alioth repository.
-- Adam Conrad <adconrad@0c3.net> Tue, 10 Jan 2006 19:15:48 +1100
mysql-dfsg-5.0 (5.0.18-2) unstable; urgency=low
* Removed the transitional package that forced an upgrade from
mysql-server-4.1 to mysql-server-5.0 as I was convinced that
having a general "mysql-server" package with adjusted dependencies
is enough (thanks to Adam Conrad).
* Updated logcheck.ignore files (thanks to Jamie McCarthy). Closes: #340193
-- Christian Hammers <ch@debian.org> Mon, 9 Jan 2006 21:54:53 +0100
mysql-dfsg-5.0 (5.0.18-1) unstable; urgency=low
* New upstream version.
* Added empty transitional packages that force an upgrade from the
server and client packages that have been present in Sarge.
* Fixed SSL-MINI-HOWTO (thanks to Jonas Smedegaard). Closes: #340589
-- Christian Hammers <ch@debian.org> Mon, 2 Jan 2006 21:17:51 +0100
mysql-dfsg-5.0 (5.0.17-1) unstable; urgency=low
* Never released as Debian package.
-- Christian Hammers <ch@debian.org> Thu, 22 Dec 2005 07:49:52 +0100
mysql-dfsg-5.0 (5.0.16-1) unstable; urgency=low
* New upstream version.
* Removed the error logs from the logrotate script as Debian does
not use them anymore. Closes: #339628
-- Christian Hammers <ch@debian.org> Tue, 22 Nov 2005 01:19:11 +0100
mysql-dfsg-5.0 (5.0.15-2) unstable; urgency=medium
* Added 14_configure__gcc-atomic.h.diff to fix FTBFS on m68k
(thanks to Stephen R Marenka). Closes: #337082
* Removed dynamic linking against libstdc++ as it was not really
needed (thanks to Adam Conrad). Closes: #328613
* Fixed the "/var/lib/mysql is a symlink" workaround that accidently
left a stalled symlink (thanks to Thomas Lamy). Closes: #336759
* As the init script cannot distinguish between a broken startup and
one that just takes very long the "failed" message now says
"or took more than 6s" (thanks to Olaf van der Spek). Closes: #335547
-- Christian Hammers <ch@debian.org> Thu, 3 Nov 2005 22:00:15 +0100
mysql-dfsg-5.0 (5.0.15-1) unstable; urgency=low
* New upstream version. 5.0 has finally been declared STABLE!
* Added small patch to debian/rules that fixed sporadic build errors
where stdout and stderr were piped together, got mixed up and broke
* Added --with-big-tables to ./configure (thanks to tj.trevelyan).
Closes: #333090
* Added capability to parse "-rc" to debian/watch.
* Fixed cronscript (thanks to Andrew Deason). Closes: #335244
* Added Swedish debconf translation (thanks to Daniel Nylander).
Closes: #333670
* Added comment to README.Debian regarding applications that manually
set new-style passwords... Closes: #334444
* Sean Finney:
- Fix duplicate reference to [-e|--extended-insert]. Closes: #334957
- Fix default behavior for mysqldumpslow. Closes: #334517
- Reference documentation issue in mysql manpage. Closes: #335219
-- Christian Hammers <ch@debian.org> Fri, 30 Sep 2005 00:10:39 +0200
mysql-dfsg-5.0 (5.0.13rc-1) unstable; urgency=low
* New upstream release. Now "release-candidate"!
* Removed any dynamic link dependencies to libndbclient.so.0 which
is due to its version only distributed as a static library.
* Sean Finney:
- FTBFS fix related to stripping rpath in debian/rules
-- Christian Hammers <ch@debian.org> Mon, 26 Sep 2005 22:09:26 +0200
mysql-dfsg-5.0 (5.0.12beta-5) unstable; urgency=low
* The recent FTBFS were probably result of a timing bug in the
debian/patches/75_*.dpatch file where Makefile.in got patched just
before the Makefile.shared which it depended on. For that reason
only some of the autobuilders failed. Closes: #330149
* Fixed chrpath removal (option -k had to be added).
* Corrected debconf dependency as requested by Joey Hess.
-- Christian Hammers <ch@debian.org> Mon, 26 Sep 2005 18:37:07 +0200
mysql-dfsg-5.0 (5.0.12beta-4) unstable; urgency=low
* Removed experimental shared library libndbclient.so.0.0.0 as it
is doomed to cause trouble as long as it is present in both MySQL 4.1
and 5.0 without real soname and its own package. We still have
libndbclient.a for developers. (thanks to Adam Conrad and
mediaforest.net). Closes: #329772
-- Christian Hammers <ch@debian.org> Fri, 23 Sep 2005 12:36:48 +0200
mysql-dfsg-5.0 (5.0.12beta-3) unstable; urgency=medium
* Symbol versioning support! wooooohoooooo!
(thanks to Steve Langasek) Closes: #236288
* Moved libndbcclient.so.0 to the -dev package as it is provided by
libmysqlclient14 and -15 which must be installable simultaneously.
* Removed mysql-*-doc suggestions.
-- Christian Hammers <ch@debian.org> Tue, 20 Sep 2005 00:07:03 +0200
mysql-dfsg-5.0 (5.0.12beta-2) unstable; urgency=low
* Added patch to build on GNU/kFreeBSD (thanks to Aurelien Jarno).
Closes: #327702
* Added patch that was already been present on the 4.1 branch which
makes the "status" command of the init script more sensible
(thanks to Stephen Gildea). Closes: #311836
* Added Vietnamese Debconf translation (thanks to Clytie Siddal).
Closes: #313006
* Updated German Debconf translation (thanks to Jens Seidel).
Closes: #313957
* Corrected commends in example debian-log-rotate.conf. The default is
unlike the mysql-sever-4.1 package which needed to stay backwards
compatible now 2 to avoid filling up the disk endlessly.
* Fixed watch file to be "-beta" aware.
-- Christian Hammers <ch@debian.org> Thu, 15 Sep 2005 20:50:19 +0200
mysql-dfsg-5.0 (5.0.12beta-1) unstable; urgency=medium
* Christian Hammers:
- New upstream release.
- Changed build-dep to libreadline5-dev as requested by Matthias Klose.
Closes: #326316
- Applied fix for changed output format of SHOW MASTER LOGS for
binary log rotation (thanks to Martin Krueger). Closes: #326427, #326427
- Removed explicit setting of $PATH as I saw no sense in it and
it introduced a bug (thanks to Quim Calpe). Closes: #326769
- Removed PID file creation from /etc/init.d/mysql-ndb as it does
not work with this daemon (thanks to Quim Calpe).
- Updated French Debconf translation (thanks to Christian Perrier).
Closes: #324805
- Moved conflicts line in debian/control from libmysqlclient15 to
libmysqlclient15-dev and removed some pre-sarge conflicts as
suggested by Adam Majer. Closes: #324623
* Sean Finney:
- For posterity, CAN-2005-2558 has been fixed since 5.0.7beta.
-- Christian Hammers <ch@debian.org> Thu, 15 Sep 2005 19:58:22 +0200
mysql-dfsg-5.0 (5.0.11beta-3) unstable; urgency=low
* Temporarily build only with -O2 to circumvent gcc internal errors
(thanks to Matthias Klose). Related to: #321165
-- Christian Hammers <ch@debian.org> Thu, 18 Aug 2005 15:44:04 +0200
mysql-dfsg-5.0 (5.0.11beta-2) unstable; urgency=low
* Fixed README.Debian regarding the status of mysql-doc.
* Added "set +e" around chgrp in mysql-server-5.0.preinst to
not fail on .journal files (thanks to Christophe Nowicki).
Closes: #318435
-- Christian Hammers <ch@debian.org> Sun, 14 Aug 2005 18:02:08 +0200
mysql-dfsg-5.0 (5.0.11beta-1) unstable; urgency=low
* New upstream version.
* Added Danish Debconf translations (thanks to Claus Hindsgaul).
Closes: #322384
* Updated Czech Debconf translations (thanks to Miroslav Kure).
Closes: #321765
-- Christian Hammers <ch@debian.org> Sat, 13 Aug 2005 11:56:15 +0000
mysql-dfsg-5.0 (5.0.10beta-1) unstable; urgency=low
* New upstream release.
* Christian Hammers:
- Added check for mounted /proc to debian/rules.
* Sean Finney:
- fix for fix_mysql_privilege_tables/mysql_fix_privilege_tables typo
in mysql-server-5.0's README.Debian (see #319838).
-- Christian Hammers <ch@debian.org> Sun, 31 Jul 2005 00:30:45 +0200
mysql-dfsg-5.0 (5.0.7beta-1) unstable; urgency=low
* Second try for new upstream release.
* Renamed mysql-common-5.0 to mysql-common as future libmysqlclient16
from e.g. MySQL-5.1 would else introduce mysql-common-5.1 which makes
a simultanous installation of libmysqlclient14 impossible as that
depends on either mysql-common or mysql-common-5.0 but not on future
versions. Thus we decided to always let the newest MySQL version
provide mysql-common.
* Added ${misc:Depends} as suggested by debhelper manpage.
* Raised standard in control file to 3.6.2.
* Removed DH_COMPAT from rules in faviour of debian/compat.
* Checkes for presence of init script before executing it in preinst.
Referres: 315959
* Added 60_includes_mysys.h__gcc40.dpatch for GCC-4.0 compatibility.
-- Christian Hammers <ch@debian.org> Wed, 29 Jun 2005 00:39:05 +0200
mysql-dfsg-5.0 (5.0.5beta-1) unstable; urgency=low
* New major release! Still beta so be carefull...
* Added federated storage engine.
-- Christian Hammers <ch@debian.org> Wed, 8 Jun 2005 19:29:45 +0200
mysql-dfsg-4.1 (4.1.12-1) unstable; urgency=low
* Christian Hammers:
- New upstream release.
- Disabled BerkeleyDB finally. It has been obsoleted by InnoDB.
* Sean Finney:
- Updated French translation from Christian Perrier (Closes: #310526).
- Updated Japanese translation from Hideki Yamane (Closes: #310263).
- Updated Russian translation from Yuriy Talakan (Closes: #310197).
-- Christian Hammers <ch@debian.org> Sat, 4 Jun 2005 05:49:11 +0200
mysql-dfsg-4.1 (4.1.11a-4) unstable; urgency=high
* Fixed FTBFS problem which was caused due to the fact that last uploads
BerkeleyDB patch was tried to applied on all architectures and not only
on those where BerkeleyDB is actually beeing built. Closes: #310296
-- Christian Hammers <ch@debian.org> Mon, 23 May 2005 00:54:51 +0200
mysql-dfsg-4.1 (4.1.11a-3) unstable; urgency=high
* Added patch from Piotr Roszatycki to compile the bundled db3 library
that is needed for the BerkeleyDB support with versioned symbols so
that mysqld no longer crashes when it gets linked together with the
Debian db3 version which happens when e.g. using libnss-db.
Closes: #308966
-- Christian Hammers <ch@debian.org> Thu, 19 May 2005 01:41:14 +0200
mysql-dfsg-4.1 (4.1.11a-2) unstable; urgency=high
* Okay, the hackery with /var/lib/dpkg/info/mysql-server.list will not
stand and is removed from the preinst of mysql-server.
* New workaround for the symlink problem that does not involve mucking
with dpkg's file lists is storing the symlinks in a temporary location
across upgrades.
As this sometimes fails since apt-get does not always call new.preinst
before old.postrm, some remarks were added to README.Debian and the
Debconf installation notes to minimize the inconvinience this causes.
-- sean finney <seanius@debian.org> Sun, 15 May 2005 10:25:31 -0400
mysql-dfsg-4.1 (4.1.11a-1) unstable; urgency=high
* Added the "a" to the version number to be able to upload a new
.orig.tar.gz file which now has the non-free Docs/ directory removed
as this has been forgotten in the 4.1.11 release (thanks to Goeran
Weinholt). Closes: #308691
* The Woody package listed /var/lib/mysql and /var/log/mysql in its
/var/lib/dpkg/info/mysql-server.list. These directories are often
replaced by symlinks to data partitions which triggers a dpkg bug
that causes these symlinks to be removed on upgrades. The new preinst
prevents this by removing the two lines from the .list file
(thanks to Andreas Barth and Jamin W. Collins). See dpkg bug #287978.
* Updated French Debconf translation (thanks to Christian Perrier).
Closes: #308353
-- Christian Hammers <ch@debian.org> Thu, 12 May 2005 21:52:46 +0200
mysql-dfsg-4.1 (4.1.11-3) unstable; urgency=high
* The "do you want to remove /var/lib/mysql when purging the package" flag
from old versions is removed once this package is beeing installed so
that purging an old Woody mysql-server package while having a
mysql-server-4.1 package installed can no longer lead to the removal of
all databases. Additionaly clarified the wording of this versions Debconf
template and added a check that skips this purge in the postrm script
if another mysql-server* package has /usr/sbin/mysqld installed.
(thanks to Adrian Bunk for spotting that problem) Closes: #307473
* Cronfile was not beeing installed as the filename was not in the
correct format for "dh_installcron --name" (thanks to Tomislav
Gountchev). Closes: #302712
-- Christian Hammers <ch@debian.org> Sat, 23 Apr 2005 22:55:15 +0200
mysql-dfsg-4.1 (4.1.11-2) unstable; urgency=low
* Sean Finney:
- don't freak out if we can't remove /etc/mysql during purge.
- debian/rules clean works again.
* Christian Hammers:
- Fixed typo in README.Debian (thanks to Joerg Rieger). Closes: #304897
- Completely removed the passwordless test user as it was not only
insecure but also lead to irritations as MySQL checks first the
permissions of this user and then those of a password having one.
See bug report from Hilko Bengen for details. Closes: #301741
-- Christian Hammers <ch@debian.org> Sat, 16 Apr 2005 15:55:00 +0200
mysql-dfsg-4.1 (4.1.11-1) unstable; urgency=low
* New upstream version.
* Upstream fix for charset/collation problem. Closes: #282256
* Upstream fix for subselect crash. Closes: #297687
* Corrected minor issue in Debconf template regarding skip-networking
(thanks to Isaac Clerencia). Closes: #303417
* Made dependency to gawk unnecessary (thanks to Zoran Dzelajlija).
Closes: #302284
* Removed obsolete 50_innodb_mixlen.dpatch.
* Removed obsolete 51_CAN-2004-0957_db_grant_underscore.dpatch.
-- Christian Hammers <ch@debian.org> Fri, 8 Apr 2005 00:23:53 +0200
mysql-dfsg-4.1 (4.1.10a-7) unstable; urgency=low
* Sean Finney:
- fix for the mysteriously disappeared cronjob. thanks to
Peter Palfrader <weasel@debian.org> for pointing out this omission.
(closes: #302712).
-- sean finney <seanius@debian.org> Sat, 02 Apr 2005 16:54:13 -0500
mysql-dfsg-4.1 (4.1.10a-6) unstable; urgency=high
* Sean Finney:
- the previous upload did not completely address the issue. this one
should do so. d'oh.
-- sean finney <seanius@debian.org> Thu, 31 Mar 2005 03:35:50 +0000
mysql-dfsg-4.1 (4.1.10a-5) unstable; urgency=high
* Sean Finney:
- the following security issue is addressed in this upload:
CAN-2004-0957 (grant privilege escalation on tables with underscores)
thanks to sergei at mysql for all his help with this.
-- sean finney <seanius@debian.org> Wed, 30 Mar 2005 21:19:26 -0500
mysql-dfsg-4.1 (4.1.10a-4) unstable; urgency=low
* Sean Finney:
- FTBFS fix for amd64/gcc-4.0. Thanks to Andreas Jochens <aj@andaco.de>
for reporting this (closes: #301807).
- ANSI-compatible quoting fix in daily cron job. thanks to
Karl Hammar <karl@aspodata.se> for pointing out the problem in
the 4.0 branch.
- Added myself as a co-maintainer in the control file (closes: #295312).
-- sean finney <seanius@debian.org> Tue, 29 Mar 2005 18:54:42 -0500
mysql-dfsg-4.1 (4.1.10a-3) unstable; urgency=low
* BerkeleyDB is now disabled by default as its use is discouraged by MySQL.
* Added embedded server libraries as they finally do compile.
They are currently in libmysqlclient-dev as they are still
experimental and only available as .a library (thanks to Keith Packard).
Closes: #297062
* Fixed obsolete "tail" syntax (thanks to Sven Mueller). Closes: #301413
* Added CAN numbers for the latest security bugfix upload.
* Updated manpage of mysqlmanager (thanks to Justin Pryzby). Closes: #299844
* Added comments to default configuration.
-- Christian Hammers <ch@debian.org> Sun, 20 Mar 2005 17:40:18 +0100
mysql-dfsg-4.1 (4.1.10a-2) unstable; urgency=low
* Disabled "--with-mysqld-ldflags=-all-static" as it causes sig11 crashes
if LDAP is used for groups in /etc/nsswitch.conf. Confirmed by Sean Finney
and Daniel Dehennin. Closes: #299382
-- Christian Hammers <ch@debian.org> Mon, 14 Mar 2005 03:01:03 +0100
mysql-dfsg-4.1 (4.1.10a-1) unstable; urgency=high
* SECURITY:
- The following security related updates are addressed:
CAN-2005-0711 (temporary file creation with "CREATE TEMPORARY TABLE")
CAN-2005-0709 (arbitrary library injection in udf_init())
CAN-2005-0710 (arbitrary code execution via "CREATE FUNCTION")
Closes: #299029, #299031, #299065
* New Upstream Release.
- Fixes some server crash conditions.
- Upstream includes fix for TMPDIR overriding my.cnf tmpdir setting
Closes: #294347
- Fixes InnoDB error message. Closes: #298875
- Fixes resouce limiting. Closes: #285044
* Improved checking whether or not the server is alive in the init script
which should make it possible to run several mysqld instances in
different chroot environments. Closes: #297772
* Fixed cron script name as dots are not allowed (thanks to Michel
v/d Ven). Closes: #298447
* Added -O3 and --with-mysqld-ldflags=-all-static as MySQL recommends to
build the server binary statically in order to gain about 13% more
performance (thanks to Marcin Kowalski).
* Added patch to let mysqld_safe react to signals (thanks to Erich
Schubert). Closes: #208364
* (Thanks to Sean Finney for doing a great share of work for this release!)
-- Christian Hammers <ch@debian.org> Thu, 3 Mar 2005 02:36:39 +0100
mysql-dfsg-4.1 (4.1.10-4) unstable; urgency=medium
* Fixed bug that prevented MySQL from starting after upgrades.
Closes: #297198, #296403
* Added comment about logging to syslog to the default my.cnf
and the logrotate script (thanks to Ryszard Lach). Closes: #295507
-- Christian Hammers <ch@debian.org> Thu, 3 Mar 2005 00:28:02 +0100
mysql-dfsg-4.1 (4.1.10-3) unstable; urgency=low
* Sean Finney: Cronjobs now exit silently when the server package
has been removed but not purged (thanks to Vineet Kumar).
Closes: #297404
* Fixed comments of /etc/mysql/debian-log-rotate.conf (thanks to
Philip Ross). Closes: #297467
* Made mysqld_safe reacting sane on signals (thanks to Erich Schubert).
Closes: #208364
-- Christian Hammers <ch@debian.org> Tue, 1 Mar 2005 19:44:34 +0100
mysql-dfsg-4.1 (4.1.10-2) unstable; urgency=low
* Converted to dpatch.
* debian/ is now maintained via Subversion on svn.debian.org.
-- Christian Hammers <ch@debian.org> Tue, 1 Mar 2005 02:16:36 +0100
mysql-dfsg-4.1 (4.1.10-1) unstable; urgency=low
* New upstream version.
* Upstream fixed memleak bug. Closes: #205587
* Added debian/copyright.more for personal reference.
* Lowered default query cache size as suggested by Arjen from MySQL.
* Switched from log to log-bin as suggested by Arjen from MySQL.
* Fixed typo in my.cnf (thanks to Sebastian Feltel). Closes: #295247
* Replaced --defaults-extra-file by --defaults-file in Debian scripts
as former lets password/host etc be overwriteable by /root/.my.cnf.
Added socket to /etc/mysql/debian.cnf to let it work. (thanks to
SATOH Fumiyasu). Closes: #295170
-- Christian Hammers <ch@debian.org> Tue, 15 Feb 2005 23:47:02 +0100
mysql-dfsg-4.1 (4.1.9-4) unstable; urgency=low
* Improved the way mysqld is started and registered with update-rc.d
in cases where the admin modifies the runlevel configuration.
Most notably removed the debconf question whether or not mysql should
start on when booting. Closes: #274264
* Renamed configuration option old-passwords to the more preferred
naming convention old_passwords. Same for some others (thanks to
Patrice Pawlak). Closes: #293983
-- Christian Hammers <ch@debian.org> Tue, 8 Feb 2005 02:21:18 +0100
mysql-dfsg-4.1 (4.1.9-3) unstable; urgency=low
* Renamed ca_ES.po to ca.po to reach a broader audience (thanks to
Christian Perrier). Closes: #293786
* Expicitly disabled mysqlfs support as it has never been enabled by
configure during the autodetection but fails due to broken upstream
code when users try to build the package theirselves while having
liborbit-dev installed which triggers the mysqlfs autodetection
(thanks to Max Kellermann). Closes: #293431
* Added dependencies to gawk as one script does not work with original-awk
(thanks to Petr Ferschmann). Closes: #291634
-- Christian Hammers <ch@debian.org> Sun, 6 Feb 2005 23:33:11 +0100
mysql-dfsg-4.1 (4.1.9-2) unstable; urgency=high
* SECURITY:
For historical reasons /usr/share/mysql/ was owned and writable by
the user "mysql". This is a security problem as some scripts that
are run by root are in this directory and could be modified and used
by a malicious user who already has mysql privileges to gain full root
rights (thanks to Matt Brubeck). Closes: #293345
* Changed "skip-networking" to "bind-address 127.0.0.1" which is more
compatible and not less secure but maybe even more, as less people enable
networking for all interfaces (thanks to Arjen Lentz).
* Enabled InnoDB by default as recommended by Arjen Lentz from MySQL.
* Added remarks about hosts.allow to README.Debian (thanks to David
Chappell). Closes: #291300
* mysql-server-4.1 now provides mysql-server (thanks to Paul van den Berg).
Closes: #287735
-- Christian Hammers <ch@debian.org> Wed, 2 Feb 2005 23:31:55 +0100
mysql-dfsg-4.1 (4.1.9-1) unstable; urgency=low
* New upstream version.
* mysql-client-4.1 now provides "mysql-client" so that packages depending
on mysql-client (ca. 40) can now be used with MySQL-4.1, too.
-- Christian Hammers <ch@debian.org> Sun, 23 Jan 2005 22:52:48 +0100
mysql-dfsg-4.1 (4.1.8a-6) unstable; urgency=high
* SECURITY:
Javier Fernandez-Sanguino Pena from the Debian Security Audit Project
discovered a temporary file vulnerability in the mysqlaccess script of
MySQL that could allow an unprivileged user to let root overwrite
arbitrary files via a symlink attack and could also could unveil the
contents of a temporary file which might contain sensitive information.
(CAN-2005-0004, http://lists.mysql.com/internals/20600) Closes: #291122
-- Christian Hammers <ch@debian.org> Tue, 18 Jan 2005 23:11:48 +0100
mysql-dfsg-4.1 (4.1.8a-5) unstable; urgency=medium
* Fixed important upstream bug that causes from_unixtime(0) to return
NULL instead of "1970-01-01 00:00:00" which fails on NOT NULL columns.
Closes: #287792
* Fixes upstream bug in mysql_list_fields() . Closes: #282486
* Fixes bug that lead to double rotated logfiles when mysql-server 4.0
was previously installed (thanks to Olaf van der Spek). Closes: #289851
* Fixed typo in README.Debian (thanks to Mark Nipper). Closes: #289131
* Changed max_allowed_packet in my.cnf to 16M as in 4.0.x (thanks to
Olaf van der Spek). Closes: #289840
* Updated French debconf translation (thanks to Christian Perrier).
Closes: #287955
-- Christian Hammers <ch@debian.org> Thu, 13 Jan 2005 01:29:05 +0100
mysql-dfsg-4.1 (4.1.8a-4) unstable; urgency=low
* Broken patch again :-(
-- Christian Hammers <ch@debian.org> Sun, 9 Jan 2005 23:47:55 +0100
mysql-dfsg-4.1 (4.1.8a-3) unstable; urgency=low
* The mutex patch was a bit too x86 centric. This broke the alpha build.
-- Christian Hammers <ch@debian.org> Sun, 9 Jan 2005 14:18:49 +0100
mysql-dfsg-4.1 (4.1.8a-2) unstable; urgency=medium
* Some Makefiles that were patched by me got overwritten by the GNU
autotools, probably because I also patched ./configure. Fixed now,
the critical mutex patch is now back in again. Closes: #286961
* Added patch to make MySQL compile on ARM (thanks to Adam Majer).
Closes: #285071
-- Christian Hammers <ch@debian.org> Thu, 6 Jan 2005 09:30:13 +0100
mysql-dfsg-4.1 (4.1.8a-1) unstable; urgency=medium
* Upstream 4.1.8 had some problems in their GNU Autotools files so they
released 4.1.8a. Debian's 4.1.8 was fixed by running autoreconf but this
again overwrote MySQL changes to ltmain.sh which are supposed to fix some
problems on uncommon architectures (maybe the FTBFS on alpha, arm, m68k
and sparc?).
* libmysqlclient_r.so.14 from 4.1.8-3 also missed a link dependency to
libz which lead to unresolved symbols visible with "ldd -r" (thanks
to Laurent Bonnaud). Closes: #287573
-- Christian Hammers <ch@debian.org> Wed, 29 Dec 2004 14:26:33 +0100
mysql-dfsg-4.1 (4.1.8-3) unstable; urgency=low
* Fixed checking for error messages by forcing english language
output by adding LC_ALL=C to debian-start (thanks to Rene
Konasz) Closes: #285709
* Fixed bashisms in Debian scripts. Closes: #286863
* Updated Japanese Debconf translation (thanks to Hideki Yamane).
Closes: #287003
* Improved 4.0 to 4.1 upgrade if /var/lib/mysql is a symlink
(thanks to Thomas Lamy). Closes: #286560
* Added patch for FTBFS problem where no LinuxThreads can be found.
I don't know if this still applies but it should not hurt.
The patch is debian/patches/configure__AMD64-LinuxThreads-vs-NPTL.diff
-- Christian Hammers <ch@debian.org> Sun, 26 Dec 2004 14:04:20 +0100
mysql-dfsg-4.1 (4.1.8-2) unstable; urgency=low
* If /var/lib/mysql is a symlink then it is kept as such.
* Added the old-passwords option to the default my.cnf to stay
compatible to clients that are still compiled to libmysqlclient10
and libmysqlclient12 for licence reasons.
* Adjusted tetex build-deps to ease backporting (thanks to Norbert
Tretkowski from backports.org).
-- Christian Hammers <ch@debian.org> Tue, 21 Dec 2004 01:00:27 +0100
mysql-dfsg-4.1 (4.1.8-1) unstable; urgency=medium
* New upstream version. Closes: #286175
* Added conflict to libmysqlclient-dev (thanks to Adam Majer).
Closes: #286538
* Added debconf-updatepo to debian/rules:clean.
* Updated Japanese Debconf translation (thanks to Hideki Yamane).
Closes: #285107
* Updated French Debconf translation (thanks to Christian Perrier).
Closes: #285977
* Renamed cz.po to cs.po (thanks to Miroslav Kure). Closes: #285438
* Aplied patch for changed server notice to debian-start (thanks to
Adam Majer). Closes: #286035
* Changed nice value in default my.cnf as nohup changed its behaviour
(thanks to Dariush Pietrzak). Closes: #285446
* Increased verbosity of preinst script in cases where it cannot stop
a running server (thanks to Jan Minar). Closes: #285982
* Splitted the code parts of /etc/mysql/debian-start to
/usr/share/mysql/debian-start.inc.sh (thanks to Jan Minar).
Closes: #285988
-- Christian Hammers <ch@debian.org> Mon, 20 Dec 2004 00:33:21 +0100
mysql-dfsg-4.1 (4.1.7-4) unstable; urgency=medium
* Removed OpenSSL support.
After a short discussion with MySQL, I decided to drop OpenSSL support as
1. MySQL started shipping their binaries without it, too and do not
seem to support it in favour of using a different library somewhen.
2. MySQL did not adjust their licence to grant permission to link
against OpenSSL.
3. Even if they did, third parties who use libmysqlclient.so often
do not realise licencing problems or even do not want OpenSSL.
(thanks to Jordi Mallach and the responders to MySQL bug #6924)
Closes: #283786
* debian/control: Improved depends and conflicts to mysql-4.0.
-- Christian Hammers <ch@debian.org> Thu, 2 Dec 2004 22:02:28 +0100
mysql-dfsg-4.1 (4.1.7-3) unstable; urgency=low
* Raised version to make it higher as the one in experimental.
-- Christian Hammers <ch@debian.org> Wed, 1 Dec 2004 21:09:20 +0100
mysql-dfsg-4.1 (4.1.7-2) unstable; urgency=low
* Patched scripts/mysql_install_db so that it no longer creates a
passwordless test database during installation (thanks to Patrick
Schnorbus). Closes: #281158
* Added Czech debconf translation (thanks to Miroslav Kure).
Closes: #283222
-- Christian Hammers <ch@debian.org> Wed, 1 Dec 2004 01:29:31 +0100
mysql-dfsg-4.1 (4.1.7-1) unstable; urgency=low
* New upstream branch!
* Adjusted debian/control to make this package suitable to get parallel
to version 4.0.x into unstable and sarge. The package names are
different so that "mysql-server" still defaults to the rock-stable
4.0 instead to this announced-to-be-stable 4.1.
* Added --with-mutex=i86/gcc-assemler to the Berkeley-DB configure
to prevent the use of NPLT threads when compiling under kernel 2.6
because the binaries are else not runable on kernel 2.4 hosts.
Closes: #278638, #274598
-- Christian Hammers <ch@debian.org> Sun, 31 Oct 2004 20:15:03 +0100
mysql-dfsg (4.1.6-1) experimental; urgency=low
* New upstream version.
* Fixed symlinks in libmysqlclient-dev package. Closes: #277028
* This time I did not update the libtool files as they were pretty
up to date and I want to have a shorter diff file.
-- Christian Hammers <ch@debian.org> Wed, 20 Oct 2004 00:07:58 +0200
mysql-dfsg (4.1.5-3) experimental; urgency=low
* debian/postinst: mysql_install_db changed parameter from --IN-RPM
to --rpm which caused problems during installs. Closes: #276320
-- Christian Hammers <ch@debian.org> Sat, 16 Oct 2004 20:36:46 +0200
mysql-dfsg (4.1.5-2) experimental; urgency=low
* Activated support for ndb clustering (thanks to Kevin M. Rosenberg).
Closes: #275109
-- Christian Hammers <ch@debian.org> Wed, 6 Oct 2004 01:58:00 +0200
mysql-dfsg (4.1.5-1) experimental; urgency=low
* WARNING:
The upstream branch 4.1 is still considered BETA.
The Debian packages for 4.1 were done without big testing. If you miss
a new functionality or binary, contact me and I check add the relevant
configure option or include the program.
* New MAJOR upstream version.
Thanks to the great demand here's now the first MySQL 4.1 experimental
release. FEEDBACK IS WELCOME.
* 4.0->4.1 notes:
- debian/patches/alpha.diff could not be applied, I fix that later
- debian/patches/scripts__mysql_install_db.sh.diff was obsolete
- debian/patches/scripts__Makefile.in was neccessary due to a dependency
to the removed non-free Docs/ directory. Upstream has been contacted.
- Build-Deps: += automake1.7
- debian/rules: embedded servers examples did not compile, removed
-- Christian Hammers <ch@debian.org> Sun, 26 Sep 2004 19:46:47 +0200
mysql-dfsg (4.0.21-3) unstable; urgency=low
* Upstream tried to fix a security bug in mysqlhotcopy and broke it :-)
Applied a patch (see debian/patches) from Martin Pitt. Closes: #271632
* Between 4.0.20 and 4.0.21 the Debian specific changes in
/usr/bin/mysqld_safe that piped the error log to syslog got lost
and are now back again.
* Fixed capitalization in debconf headings.
* Changed wording of the initscript status message to make heartbeat
happier. Closes: #271591
-- Christian Hammers <ch@debian.org> Fri, 17 Sep 2004 18:42:25 +0200
mysql-dfsg (4.0.21-2) unstable; urgency=medium
* The dependencies between mysql-client and libmysqlclient12 were
too loose, when upgrading only the client this can lead to non working
binaries due to relocation errors (thanks to Dominic Cleal).
Closes: #271803
* Fixed typo in mysqldump.1 manpage (thanks to Nicolas Francois).
Closes: #271334
-- Christian Hammers <ch@debian.org> Wed, 15 Sep 2004 15:38:11 +0200
mysql-dfsg (4.0.21-1) unstable; urgency=high
* SECURITY:
This upstream version fixes some security problems that might at least
allow a DoS attack on the server.
* Fixed an old bug in concurrent accesses to `MERGE' tables (even
one `MERGE' table and `MyISAM' tables), that could've resulted in
a crash or hang of the server. (Bug #2408)
* Fixed bug in privilege checking where, under some conditions, one
was able to grant privileges on the database, he has no privileges
on. (Bug #3933)
* Fixed crash in `MATCH ... AGAINST()' on a phrase search operator
with a missing closing double quote. (Bug #3870)
* Fixed potential memory overrun in `mysql_real_connect()' (which
required a compromised DNS server and certain operating systems).
(Bug #4017)
* New upstream version.
* Fixes bug that made x="foo" in WHERE sometimes the same as x="foo ".
Closes: #211618
* Updated Japanese Debconf translation (thanks to Hideki Yamane).
Closes: #271097
-- Christian Hammers <ch@debian.org> Sat, 11 Sep 2004 23:15:44 +0200
mysql-dfsg (4.0.20-14) unstable; urgency=low
* Dave Rolsky spottet that -DBIG_JOINS was not properly enabled.
It allowes joining 64 instead of an 32 tables to join.
-- Christian Hammers <ch@debian.org> Thu, 9 Sep 2004 20:24:02 +0200
mysql-dfsg (4.0.20-13) unstable; urgency=medium
* Fixed a bug in the initscript which caused the check for not properly
closed i.e. corrupt tables that is executed when the server starts
not to run in background as supposed.
Although the check does not repair anything on servers with several
thousand tables the script was reported to take some minutes which
is quite annoying. (Thanks to Jakob Goldbach). Closes: #270800
-- Christian Hammers <ch@debian.org> Thu, 9 Sep 2004 17:11:05 +0200
mysql-dfsg (4.0.20-12) unstable; urgency=medium
* Filter messages regarding table handles that do not support CHECK TABLE
in the script that checks for corrupted tables on every start which lead
to unnecessary mails (thanks to David Everly). Closes: #269811
* Added a note to the corrupt-table-check mail which notes that a
false-positive is reported in the case that immediately after starting
the server a client starts using a table (thanks to Uwe Kappe).
Closes: #269985
* Added "quote-names" as default to the [mysqldump] section in
/etc/mysql/my.cnf as too many users stumble over dump files that
could not be read in again due to the valid use of reserved words
as table names. This has also be done by upstream in 4.1.1 and has
no known drawbacks. Closes: #269865
* Binary logs can now be rotated as well. Defaults to off, though, for
compatibilty reasons (thanks to Mark Ferlatte). Closes: #94230, #269110
* The mysql user "debian-sys-maint" now gets all possible rights which
makes binary logging possible and helps other package maintainer who
wants to use it to create package specific databases and users.
* Added example how to change daemon nice level via /etc/mysql/my.cnf
* Updated French debconf translations (thanks to Christian Perrier).
Closes: #265811
* Renamed options in the default config file that still had old names
(thanks to Yves Kreis). Closes: #266445
* Fixed spelling in debconf note.
* Added -l and -L to dh_shlibdeps.
-- Christian Hammers <ch@debian.org> Fri, 3 Sep 2004 20:10:46 +0200
mysql-dfsg (4.0.20-11) unstable; urgency=high
* SECURITY
This version fixes a security flaw in mysqlhotcopy which created
temporary files in /tmp which had predictable filenames and such
could be used for a tempfile run attack.
The issue has been recorded as CAN-2004-0457.
-- Christian Hammers <ch@debian.org> Sat, 14 Aug 2004 18:27:19 +0200
mysql-dfsg (4.0.20-10) unstable; urgency=low
* MySQL finally updated their copyright page and installed v1.5 of
the "Free/Libre and Open Source Software License (FLOSS) - Exception"
which will hopefully end the license hell they created by putting the
client libraries under GPL instead of LGPL which conflicts with PHP and
other software that used to link against MySQL.
The license text is not yet in any release MySQL version but visible
on their web site and copied into the debian/copyright file.
Special thanks to Zak Greant <zak@mysql.com> and the debian-legal list
for helping to solve this release critical problem.
Closes: #242449
* Updated Brazil debconf translation (thanks to Andre Luis Lopes).
Closes: #264233
* Updated Japanese debconf translation (thanks to Hideki Yamane).
Closes: #264620
* Fixed minor typo in debconf description (thanks to TROJETTE Mohammed
Adnene). Closes: #264840
* Improved init and preinst script which now detects stalled servers which
do no longer communicate but are present in the process list (thanks to
Henrik Johansson). Closes: #263215
-- Christian Hammers <ch@debian.org> Mon, 9 Aug 2004 19:44:28 +0200
mysql-dfsg (4.0.20-9) unstable; urgency=medium
* Partly reverted the last patch which gave the mysql-user
"debian-sys-maint" more rights as there are old versions of MySQL which
have fewer privlige columns. Now only those are set (thanks to Alan Tam).
Closes: #263111
-- Christian Hammers <ch@debian.org> Tue, 3 Aug 2004 13:03:02 +0200
mysql-dfsg (4.0.20-8) unstable; urgency=low
* The mysqlcheck that is started from the initscript will now be
backgrounded because it might else prevent the boot process to continue.
It also now notifies root by mail and syslog if a table is corrupt.
* The "debian-sys-maint" MySQL user now has almost full rights so that other
packages might use this account to create databases and user (thanks to
Andreas Barth). Closes: #262541
* Added paranoid rules for logcheck.
-- Christian Hammers <ch@debian.org> Sun, 1 Aug 2004 21:00:55 +0200
mysql-dfsg (4.0.20-8) unstable; urgency=low
* Upload stalled. Not released.
-- Christian Hammers <ch@debian.org> Sun, 1 Aug 2004 20:27:55 +0200
mysql-dfsg (4.0.20-7) unstable; urgency=medium
* Solved the upstream bug that error messages of the server are written
in a file that is then rotated away leaving mysqld logging effectively
to /dev/null. It now logs to a /usr/bin/logger process which puts the
messages into the syslog.
Modified files: /etc/init.d/mysql, /usr/bin/mysqld_safe and the
logchecker files. Closes: #254070
* The initscript does no longer call mysqlcheck directly but via
/etc/mysql/debian-start which is a user customizable config script.
* Splitted the debconf "install and update notes" and only show them
when it is appropriate (thanks to Steve Langasek). Closes: #240515
* Added NEWS.Debian.
* Added hint to -DBIG_ROWS, which is currently not used, to README.Debian.
* Corrected typo in myisampack manpage (thanks to Marc Lehmann).
Closes: #207090
* Added Catalan debconf translation (thanks to Aleix Badia i Bosch).
Closes: #236651
-- Christian Hammers <ch@debian.org> Wed, 28 Jul 2004 01:41:51 +0200
mysql-dfsg (4.0.20-6) unstable; urgency=low
* The build arch detected by configure was "pc-linux-gnu (i686)"
instead of "pc-linux-gnu (i386)". Was no problem AFAIK but
Adam Majer asked me to explicitly change it to i386. Closes: #261382
* Removed some unused shell scripts from /usr/share/mysql.
* Added lintian overrides.
* Removed rpath by using chrpath.
-- Christian Hammers <ch@debian.org> Mon, 26 Jul 2004 00:17:12 +0200
mysql-dfsg (4.0.20-5) unstable; urgency=medium
* The mysqlcheck in the init script is only called when the server
is really alive. Also, the mysql-user 'debian-sys-maint' now has
global select rights (thanks to Nathan Poznick). Closes: #261130
* Moved the debconf question whether to remove the databases or not
from mysql-server.config to mysql-server.postrm so that it shows
up on purge time and not months earlier (thanks to Wouter Verhelst).
Closes: #251838
-- Christian Hammers <ch@debian.org> Fri, 23 Jul 2004 22:41:13 +0200
mysql-dfsg (4.0.20-4) unstable; urgency=low
* Added a "mysqlcheck -A --fast" to the 'start' section of the
init script to help admins detect corrupt tables after a server crash.
Currently it exists with an error message but leaves the server
running. Feedback appreciated!
* Made postinst script more robust by calling db_stop earlier and
so prevent pipe-deadlocks.
* Fixed minor typos in initscript (thanks to "C.Y.M."). Closes: 259518
* Added the undocumented "-DBIG_JOINS" that MySQL apparently uses in
their MAX binaries. It enables 62 instead of 30 tables in a "join".
(thanks to Dave Rolsky). Closes: #260843
* Added a "df --portability /var/lib/mysql/." check to the preinst
script as users experienced hard to kill hanging mysqlds in such
a situation (thanks to Vaidas Pilkauskas). Closes: #260306
-- Christian Hammers <ch@debian.org> Fri, 23 Jul 2004 00:51:32 +0200
mysql-dfsg (4.0.20-3) unstable; urgency=low
* Improved tolerance if the init script has been deleted (thanks to
Leonid Shulov for spotting the problem).
* Minor wording changes to README.Debian generalizing /root/ by $HOME
(thanks to Santiago Vila). Closes: #257725
* Added Japanese debconf translation (thanks to Hideki Yamane).
Closes: #256485
* Fixed commend in my.cnf regarding logfile directory (thanks to Jayen
Ashar). Closes: #253434
* Correted "ease to" by "ease of" in package description (thanks to
Johannes Berg). Closes: #253510
-- Christian Hammers <ch@debian.org> Fri, 9 Jul 2004 00:57:42 +0200
mysql-dfsg (4.0.20-2) unstable; urgency=low
* Removed RPM .spec file from the included documentation as it is pretty
useless (thanks to Loic Minier).
* Added turkish debconf translation (thanks to Recai Oktas). Closes: #252802
-- Christian Hammers <ch@debian.org> Sun, 6 Jun 2004 14:48:26 +0200
mysql-dfsg (4.0.20-1) unstable; urgency=low
* New upstream version.
-- Christian Hammers <ch@debian.org> Mon, 31 May 2004 23:36:39 +0200
mysql-dfsg (4.0.18-8) unstable; urgency=low
* Updated french translation (thanks to Christian Perrier). Closes: #246789
-- Christian Hammers <ch@debian.org> Tue, 4 May 2004 23:26:54 +0200
mysql-dfsg (4.0.18-7) unstable; urgency=low
* Added CVE ids for the recent security fixes.
4.0.18-4 is CAN-2004-0381 (mysqlbug) and
4.0.18-6 is CAN-2004-0388 (mysql_multi)
-- Christian Hammers <ch@debian.org> Mon, 19 Apr 2004 18:32:03 +0200
mysql-dfsg (4.0.18-6) unstable; urgency=medium
* SECURITY:
Fixed minor tempfile-run security problem in mysqld_multi.
Unprivileged users could create symlinks to files which were then
unknowingly overwritten by run when this script gets executed.
Upstream informed. Thanks to Martin Schulze for finding this.
-- Christian Hammers <ch@debian.org> Wed, 7 Apr 2004 01:28:22 +0200
mysql-dfsg (4.0.18-5) unstable; urgency=low
* Little improvements in debian scripts for last upload.
* Added check to logrotate script for the case that a mysql
server is running but not be accessible with the username and
password from /etc/mysql/debian.conf (thanks to Jeffrey W. Baker).
Closes: 239421
-- Christian Hammers <ch@debian.org> Sun, 4 Apr 2004 15:27:40 +0200
mysql-dfsg (4.0.18-4) unstable; urgency=medium
* SECURITY:
Aplied fix for unprobable tempfile-symlink security problem in
mysqlbug reported by Shaun Colley on bugtraq on 2004-03-24.
* Updated french debconf translation (thanks to Christian Perrier).
Closes: #236878
* Updated portugesian debconf translation (thanks to Nuno Senica).
Closes: #239168
* Updated german debconf translation (thanks to Alwin Meschede).
Closes: #241749
* Improved debconf template regarding fix_privileges_tables (thanks
to Matt Zimmermann for suggestions). Closes: #219400
* Improved README.Debian regarding to password settings (thanks to
Yann Dirson). Closes: #241328
-- Christian Hammers <ch@debian.org> Sat, 3 Apr 2004 19:52:15 +0200
mysql-dfsg (4.0.18-3) unstable; urgency=medium
* Added Build-Depend to po-debconf to let it build everywhere.
-- Christian Hammers <ch@debian.org> Wed, 31 Mar 2004 23:43:33 +0200
mysql-dfsg (4.0.18-2) unstable; urgency=low
* Added a "2>/dev/null" to a "which" command as there are two
"which" versions in Debian of which one needs it. Closes: #235363
-- Christian Hammers <ch@debian.org> Tue, 2 Mar 2004 23:31:28 +0100
mysql-dfsg (4.0.18-1) unstable; urgency=low
* New upstream version.
* Should now compile and run on ia64 (thanks to Thorsten Werner and
David Mosberger-Tang). Closes: #226863 #228834
* Converted init scripts to invoce-rc.d (thanks to Erich Schubert).
Closes: 232118
* Secondlast upload changed logfile location. Closes: #182655
* Updated Brasilian translation (thanks to Andre Luis Lopes). Closes:
#219847
-- Christian Hammers <ch@debian.org> Tue, 17 Feb 2004 23:44:58 +0100
mysql-dfsg (4.0.17-2) unstable; urgency=low
* Improved manpage for mysqldumpslow.1 (thanks to Anthony DeRobertis).
Closes: #231039
* Improved stopping of crashed daemons in init script (thanks to
Matthias Urlichs). Closes: #230327
-- Christian Hammers <ch@debian.org> Mon, 9 Feb 2004 21:54:29 +0100
mysql-dfsg (4.0.17-1) unstable; urgency=low
* Made logging into /var/log/mysql/ the default. Closes: #225206
* New upstream version. Closes: #225028
* Turned on a 25MB query cache by default (thanks to Cyril Bouthors).
Closes: #226789
* Updated russian translation (thanks to Ilgiz Kalmetev). Closes: #219263
* Upstream fixes the problem that AND was not commutative (thanks for
Iain D Broadfoot for mentioning). Closes: #227927
* Fixed minor typo in my.cnf comments (thanks to James Renken).
Closes: #221496
* Better documents regex. Closes: #214952
* Fixed minor germanism in debconf template (thanks to Marc Haber).
Closes: #224148
* Added explaining comment to my.cnf regarding quoted passwords
(Thanks to Patrick von der Hagen). Closes: #224906
* Changed "find -exec" to "find -print0 | xargs -0" in preinst to
speed it up. Thanks to Cyril Bouthors. Closes: #220229
-- Christian Hammers <ch@debian.org> Sun, 18 Jan 2004 16:16:25 +0100
mysql-dfsg (4.0.16-2) unstable; urgency=low
* Tried to repair undefined weak symbols by adding a little Makefile
patch. Closes: #215973
-- Christian Hammers <ch@debian.org> Mon, 27 Oct 2003 22:52:10 +0100
mysql-dfsg (4.0.16-1) unstable; urgency=low
* New upstream release.
(Mostly little memory problems and other bugfixes it seems)
* Replaced "." by ":" in chown calls to comply with the env setting
"_POSIX2_VERSION=2000112" (thanks to Robert Luberda). Closes: #217399
* Adjusted syntax in my.cnf to 4.x standard (thanks to Guillaume Plessis).
Closes: #217273
* Improved README.Debian password instructions (thanks to Levi Waldron).
Closes: #215046
* Improved NIS warning debconf-template (thanks to Jeff Breidenbach).
Closes: #215791
* Explicitly added libssl-dev to the libmysqlclient-dev package as it
is needed for mysql_config and the libmysqlclient package only depends
on libssl which has no unnumbered .so version (thanks to Simon Peter
and Davor Ocelic). Closes: #214436, #216162
* Added "-lwrap" to "mysql_config --libmysqld-libs" and filed it as
upstream bug #1650 (thanks to Noah Levitt). Closes: #214636
-- Christian Hammers <ch@debian.org> Sat, 25 Oct 2003 01:09:27 +0200
mysql-dfsg (4.0.15a-1) unstable; urgency=low
* Same package as 4.0.15-2 but I could not convince the Debian
installer to move the packages out of incoming.
-- Christian Hammers <ch@debian.org> Tue, 7 Oct 2003 15:10:26 +0200
mysql-dfsg (4.0.15-2) unstable; urgency=low
* Updated package description (thanks to Adrian Bunk). Closes: #210988
* Fixed small typos in manpages (thanks to Nicolas Francois).
Closes: #211983
* More updates to package description (thanks to Matthias Lutz/ddtp).
Closes: #213456
* Updated standards to 3.6.1.
* Closes "new 4.0.15 available" bug. Closes: #213349
* Updated README.Debian with notes regarding the MySQL manual section
"2.4 Post-installation Setup and Testing" (thanks to Daniel B.).
Closes: #210841
-- Christian Hammers <ch@debian.org> Fri, 3 Oct 2003 15:59:39 +0200
mysql-dfsg (4.0.15-1) unstable; urgency=high
* SECURITY:
Users who are able to use the "ALTER TABLE" command on the "mysql"
database may be able to exploit this vulnerability to gain a shell with
the privileges of the mysql server (usually running as the 'mysql' user).
Closes: #210403
* Fixes small description typos (thanks to Oscar Jarkvik).
* Updated Brazilian Portuguese debconf translation. (thanks to Andre Luis
Lopes). Closes: 208030
* Replaced depricated '.' by ':' in chown (thanks to Matt Zimmerman).
* Fixed manpage typo (thanks to Marc Lehmann). Closes: #207090
-- Christian Hammers <ch@debian.org> Fri, 3 Oct 2003 15:59:35 +0200
mysql-dfsg (4.0.14-1) unstable; urgency=low
* New upstream version.
-- Christian Hammers <ch@debian.org> Sun, 24 Aug 2003 16:40:36 +0200
mysql-dfsg (4.0.13-3) unstable; urgency=low
* Now start mysqld as default unless you choose not when configurig
with debconf priority low. So packages depending on the server when
installing can access it. Thanks Matt Zimmermann (Closes: #200277)
* Made mysql-server de-installable if the config and database files were
removed by hand before. Thanks to Ard van Breemen (Closes: #200304)
-- Christian Hammers <ch@debian.org> Tue, 8 Jul 2003 22:30:40 +0200
mysql-dfsg (4.0.13-2) unstable; urgency=low
* Added "nice" option for mysqld_safe to give mysqld a different priority.
Submitted to upstream as MySQL Bug #627. Closes: #192087
* Fixed possible unbound variable in init script. Closes: #194621
* Fixed french debconf translation (thx Christian Perrier) Closes: #194739
* Get rid of automake1.5 (for Eric Dorland).
-- Christian Hammers <ch@debian.org> Wed, 11 Jun 2003 18:58:32 +0200
mysql-dfsg (4.0.13-1) unstable; urgency=medium
* New upstream version.
!!! Fixes a very bad natural join bug which justifies the urgency=medium.
!!! http://bugs.mysql.com/bug.php?id=291
* Fixed mysql_fix_privileges manpage (Frederic Briere) Closes: #191776
* preinst: "which" is more chatty normal executable than as builtin.
(Thanks to David B Harris). Closes: #188659
-- Christian Hammers <ch@debian.org> Tue, 6 May 2003 22:03:45 +0200
mysql-dfsg (4.0.12-3) unstable; urgency=medium
* Reincluded new way of creating my debian-sys-maint user from
an old release from experimental. Now works again with old
and new privilege table format. (Thanks to Vincent Danjean
for spotting the problem) Closes: #188201
* Reincluded hurd build dependency fix from 3.23 branch.
(Thanks to Robert Millan). Closes: #185929
* Fixed soname in libmysqlclient-dev. Closes: #188160
* Remove /var/log/mysql/ when purging the package. Closes: #188064
* Removed /usr/share/doc/mysql/ from mysql-server. Closes: #188066
* Let group "adm" be able to read logfiles. Closes: #188067
* Do not call usermod on every upgrade. Closes: #188248
(Thanks to Philippe Troin for the last three)
* Fixed mysql-server.preinst so that it works on shells where
which is a builtin, too. (Thanks to Erich Schubert) Closes: #181525
-- Christian Hammers <ch@debian.org> Fri, 11 Apr 2003 11:32:45 +0200
mysql-dfsg (4.0.12-2) unstable; urgency=low
*
* NEW MAJOR UPSTREAM RELEASE:
*
MySQL 4 has finally been declared as 'stable'. Hurray! Read changelogs.
Thanks to all testers, esp. Jose Luis Tallon, of the versions
that were in the "experimental" section before.
* Modified postinst script to run mysql_fix_privileges on every update.
IMPORTANT: Please report if this breaks anything, it is not supposed to.
* Wrote a SSL-MINI-HOWTO.txt!
* Added zlib1g-dev to libmysqlclient12-dev. Closes: 186656
* Changed section of libmysqlclient12-dev to libdevel.
* Added even more selfwritten manpages.
* Fixed typos.
-- Christian Hammers <ch@debian.org> Sun, 6 Apr 2003 13:47:32 +0200
mysql-dfsg (4.0.10.gamma-1) experimental; urgency=low
* New upstream version.
* They merged some of my patches from debian/patches. Whoa!
* This release should fix the error-logfile problem where mysqld
keeps the error.log open while logrotate removes it.
-- Christian Hammers <ch@debian.org> Wed, 12 Feb 2003 22:39:48 +0100
mysql-dfsg (4.0.9.gamma-1) experimental; urgency=low
* New upstream version.
* Updated the GNU autoconf files to make building on MIPS work.
See bug #176829.
-- Christian Hammers <ch@debian.org> Wed, 29 Jan 2003 22:07:44 +0100
mysql-dfsg (4.0.8.gamma-1) experimental; urgency=low
* New upstream release.
* Improved logging of init script. Closes: #174790
* We have now libmysqlclient.so.12 instead of .11.
-- Christian Hammers <ch@debian.org> Thu, 9 Jan 2003 20:14:11 +0100
mysql-dfsg (4.0.7.gamma-1) experimental; urgency=high
* SECURITY: This version fixes an upstream security release that is only
present in the 4.x branch which is currently only in the
experimental distribution and therefore will not get a DSA.
* New upstream release.
-- Christian Hammers <ch@debian.org> Sat, 28 Dec 2002 15:51:39 +0100
mysql-dfsg (4.0.6.gamma-2) experimental; urgency=low
* Added --system to addgroup. Closes: #173866
-- Christian Hammers <ch@debian.org> Sat, 21 Dec 2002 15:28:26 +0100
mysql-dfsg (4.0.6.gamma-1) experimental; urgency=low
* New upstream version. Now Gamma!
* There are no longer changes to the .orig.tar.gz neccessary to make diff
happy. docs/ has still to be deleted, although, as it is non-free.
* Incorporated patches from unstable.
* Added mysqlmanager and a couple of other new scripts.
* Enabled libmysqld embedded server library.
* Enabled SSL and Virtual-IO support.
(CORBA based MySQL-FS seems to be not existing..)
-- Christian Hammers <ch@debian.org> Fri, 20 Dec 2002 22:30:51 +0100
mysql-dfsg (4.0.5a.beta-3) experimental; urgency=low
* Modified postinst to work with old and new mysql.user table format
and fixed spelling typo in postinst. Thanks to Roger Aich.
* Updated config.{guess,sub} to make the mipsel porters happy.
Thanks to Ryan Murray. Closes: #173553
-- Christian Hammers <ch@debian.org> Wed, 18 Dec 2002 15:56:34 +0100
mysql-dfsg (4.0.5a.beta-2) experimental; urgency=low
* Upstream removed option "--skip-gemini". So did I. Closes: 173142
-- Christian Hammers <ch@debian.org> Tue, 17 Dec 2002 10:35:49 +0100
mysql-dfsg (4.0.5a.beta-1) experimental; urgency=low
* First 4.x experimental package due to continuous user requests :-)
Please test and report!
* upstream: safe_mysqld has been renamed to mysqld_safe
* upstream: new library soname version libmysqlclient.so.11
* Renamed libmysqlclientXX-dev to libmysqlclient-dev as I don't plan to
support more than one development environment and this makes the
dependencies easier.
* FIXME: Skipped parts of the debian/patches/alpha patch as the global.h
is not existing.
* FIXME: How to get rid this? Old ltconfig patch already applied.
"lintian: binary-or-shlib-defines-rpath ./usr/bin/mysql /usr/lib/mysql"
-- Christian Hammers <ch@debian.org> Sun, 1 Dec 2002 18:32:32 +0100
mysql-dfsg (3.23.53-4) unstable; urgency=medium
* Fixed errno.h problem. Closes: #168533, #168535
-- Christian Hammers <ch@debian.org> Sun, 10 Nov 2002 18:32:08 +0100
mysql-dfsg (3.23.53-3) unstable; urgency=medium
* Changed automake build-dep to unversioned automake1.4. Closes: #166391
* Fixed description. Closes: #167270
(Thanks to Soren Boll Overgaard)
-- Christian Hammers <ch@debian.org> Tue, 5 Nov 2002 01:25:01 +0100
mysql-dfsg (3.23.53-2) unstable; urgency=low
* Reverted user creation in init scripts. Closes: #166432
(Thanks to Birzan George Cristian)
-- Christian Hammers <ch@debian.org> Thu, 31 Oct 2002 15:36:25 +0100
mysql-dfsg (3.23.53-1) unstable; urgency=low
* New upstream release.
-- Christian Hammers <ch@debian.org> Thu, 24 Oct 2002 23:04:16 +0200
mysql-dfsg (3.23.52-3) unstable; urgency=low
* Substituted the first-install 'debian-sys-maint' user creation by
something ANSI SQL compliant. Closes: #163497
(Thanks to Karl Hammar)
* Tightend dependency to debhelper (>= 4.0.12) to be sure that
debconf-utils gets installed, too, as I use dh_installdebconf.
* Fixed upstream manpage bug in mysqldump.1. Closes: #159779
(Thanks to Colin Watson)
* Added comment about MIN_WORD_LEN to mysql-server.README.Debian
(Thanks to Philipp Dreimann)
* Added a dependency for zlib1g-dev to libmysqlclient10-dev.
(Thanks to Jordi Mallach)
-- Christian Hammers <ch@debian.org> Sun, 15 Sep 2002 17:14:44 +0200
mysql-dfsg (3.23.52-2) unstable; urgency=low
* Fixed typo in preinst scripts.
* Removed bashism in init script.
* Fixed ambiguous debconf example. Closes: #158884
-- Christian Hammers <ch@debian.org> Fri, 30 Aug 2002 00:51:29 +0200
mysql-dfsg (3.23.52-1) unstable; urgency=low
* New upstream version. Closes: #157731
* Clearified the meaning of the debian-sys-maint special user in the
README.Debian file. Closes: #153702
* Wrote some words regarding the skip-networking in README.Debian.
Closes: #157038
* Added dependency to passwd.
* Fixes typo and unnecessarily complication in is_mysql_alive().
* Added check for /etc/mysql/my.cnf in init script.
-- Christian Hammers <ch@debian.org> Tue, 27 Aug 2002 01:53:32 +0200
mysql-dfsg (3.23.51-4) unstable; urgency=low
* Added a compressed "nm mysqld" output to allow people to trace
core dumps with /usr/bin/resolve_stack_dump as suggested in the
INSTALL-SOURCE file. Thanks to atudor@labs.agilent.com for the hint.
-- Christian Hammers <ch@debian.org> Wed, 24 Jul 2002 20:44:55 +0200
mysql-dfsg (3.23.51-3) unstable; urgency=low
* Corrected copyright file: the MySQL client library is licenced under
the LGPL-2 not the GPL. From version 4.x it actually will be GPL this
is why parts of http://www.mysql.com/ already say so. Closes: #153591
* Corrected german translation.
Thanks to Roland Rosenfeld <roland@spinnaker.de>. Closes: #151903
-- Christian Hammers <ch@debian.org> Thu, 11 Jul 2002 20:32:28 +0200
mysql-dfsg (3.23.51-2) unstable; urgency=low
* Improved NIS tolerance in preinst script.
-- Christian Hammers <ch@debian.org> Sun, 7 Jul 2002 04:43:28 +0200
mysql-dfsg (3.23.51-1) unstable; urgency=medium
* New upstream version.
* I applied a patch that fixes a binary imcompatibility in
the shared libary libmysqlclient.so.10 between 3.23.50 and
some versions earlier. Upstream has been contacted and asked
for clarification. Closes: #149952
* Added support for NIS i.e. it shows a warning and fails if the
needed 'mysql' user does not exists but works if it does.
Closes: #143282, #147869
* Substituted $0 in init scripts by something really weird so that
"./S20mysql restart" works now, too. (BTW: S20? install file-rc!!!)
Closes: #148658
* Now postinst works even if /etc/init.d/mysql is removed. Closes: #151021
* Decided to leave "set +x" in postinst but wrote comment. Closes: #151022
-- Christian Hammers <ch@debian.org> Sun, 7 Jul 2002 04:43:25 +0200
mysql-dfsg (3.23.50-1) unstable; urgency=medium
* New upstream version.
Fixes a very annoying and important bug that lets all mysql programs
including perl scripts etc. segfault when using the read_default_group()
function. 3.23.50 is currently a pre-release and expected to be released
next week. I plan to propose it for woody as soon as its stability has
been proven. The following bug reports are all regarding this issue.
Closes: #144960, #145322, #136798, #138143,
-- Christian Hammers <ch@debian.org> Sat, 18 May 2002 21:14:01 +0200
mysql-dfsg (3.23.49x-1) unstable; urgency=low
* I had to split the package to seperate the manual as it is not GPL
like the rest of the software and docs but under a license that
e.g. forbids selling printed versions.
.
The upstream authors were contacted a while ago but did not like to
change the situation.
.
The names of the resulting packages have not changed as the manual
already was in a seperate mysql-doc package due to it's size.
The source packages are now splitted from one "mysql" to
"mysql-dfsg" in main and "mysql-nonfree" in non-free.
* No code change!
The "x" at the end of the version number ist just to be able to
upload a new source package. ("a" was already taken by upstream
for their binary upload correction)
-- Christian Hammers <ch@debian.org> Wed, 8 May 2002 02:01:41 +0200
mysql (3.23.49-8) unstable; urgency=low
* Substituted $0 in init script to let e.g. "/etc# ./init.d/mysql restart"
works, too. Closes: #141555
-- Christian Hammers <ch@debian.org> Sun, 7 Apr 2002 15:00:44 +0200
mysql (3.23.49-7) unstable; urgency=low
* The Makefiles are totally broken for the --enable-local-infile
option. I now patched libmysql/libmysql.c#mysql_init() manually.
Closes: #138347
-- Christian Hammers <ch@debian.org> Fri, 29 Mar 2002 23:55:15 +0100
mysql (3.23.49-6) unstable; urgency=low
* Moved mysqlcheck from server to client package. Closes: #139799
* Added manpage for mysqlhotcopy. Regarding: #87097
* Added 'sharedscripts' directive to the logrotate script.
* Replaced grep by /usr/bin/getent to let the group/user checking work
on NIS/LDAP systems, too. Closes: #115677, #101529
-- Christian Hammers <ch@debian.org> Fri, 22 Mar 2002 22:40:51 +0100
mysql (3.23.49-5) unstable; urgency=low
* Added skip-innodb to default my.cnf.
* Enabled --enable-local-infile, it seems to be a new option that
defaults to disable a formerly enabled feaure. Closes: #137115
-- Christian Hammers <ch@debian.org> Sat, 16 Mar 2002 00:29:10 +0100
mysql (3.23.49-4) unstable; urgency=medium
* Recompiled against fixed libz.
* Enabled --enable-local-infile, it seems to be a new option that
defaults to disable a formerly enabled feaure. Closes: #137115
* Fixed README.compile_on_potato. Closes: #136529
* Now a ext3 .jounal file in /var/lib/mysql does not prevent the
installation (happens when creating a jounal on an already mounted
partition). Closes: #137146
-- Christian Hammers <ch@debian.org> Wed, 13 Mar 2002 13:34:24 +0100
mysql (3.23.49-3) unstable; urgency=low
* Added Russian translation. Closes: #135846
* Fixed installation of .info documents. Closes: #135030
-- Christian Hammers <ch@debian.org> Wed, 27 Feb 2002 23:36:35 +0100
mysql (3.23.49-2) unstable; urgency=low
* Updated french translation and split template files. Closes: #134754
* Fixed a small debian.cnf related bug in mysql-server.postinst.
-- Christian Hammers <ch@debian.org> Tue, 19 Feb 2002 23:13:58 +0100
mysql (3.23.49-1) unstable; urgency=low
* New upstream release.
(Mainly InnoDB related fixes)
* Exported a $HOME variable in the scripts so that /root/.my.cnf
is not read anymore. This will avoid problems when admins put
only passwords but no usernames in this file. Closes: #132048
* New debian-sys-maint password algorithm (now ~96bit :-)) Closes: #133863
* Recreating debian-sys-main pwd on every install to help people who
accidently delete user or password files...
* Added /var/log/mysql so that user can put the binary logs in there as
mysql cannot write the .001 etc files itself in /var/log which is
owned by root.
-- Christian Hammers <ch@debian.org> Thu, 14 Feb 2002 22:17:45 +0100
mysql (3.23.47-6) unstable; urgency=low
* Dropped a sentence about the new debian-sys-maint user in the
debconf note and updated the README.Debian. Related: #132048
* Added more french translation. Closes: #132390
-- Christian Hammers <ch@debian.org> Wed, 6 Feb 2002 09:41:29 +0100
mysql (3.23.47-5) unstable; urgency=low
* Fixed grammar error in template. Closes: #132238
* Really fixed typo in logrotate script. Closes: #131711
-- Christian Hammers <ch@debian.org> Tue, 5 Feb 2002 14:20:08 +0100
mysql (3.23.47-4) unstable; urgency=medium
* Fixes typo in postinst that let init script fail. Closes: #131743
* Fixed bashism bug that failed on ash. Closes: #131697
* Fixed typo in logrotate script. Closes: #131711
-- Christian Hammers <ch@debian.org> Thu, 31 Jan 2002 23:58:46 +0100
mysql (3.23.47-3) unstable; urgency=low
* Added new Debian specific mysql user called 'debian-sys-maint' which
is used for pinging the server status, flushing the logs or shutting
down the server in maintenance scripts. The credentials of this user
are stored in the UID0-only readable file /etc/mysql/debian.cnf.
Closes: #129887, #130326, #99274
* Fixed unintended server startup at boottime. Closes: #122676, #130105
* New upstream fixes command line parsing bug: Closes: #128473
* Fixed manpage headers to let apropos work: Closes: #119122
* Added "status" options for /etc/init.d/mysql. Closes: #129020
-- Christian Hammers <ch@debian.org> Sun, 27 Jan 2002 19:46:11 +0100
mysql (3.23.47-2) unstable; urgency=low
* Enhanced init scripts by using mysqladmin instead of kill $pid.
Thanks to Aaron Brick.
-- Christian Hammers <ch@debian.org> Fri, 18 Jan 2002 01:42:23 +0100
mysql (3.23.47-1) unstable; urgency=low
* New upstream release.
* Updated brazilian translation of debconf descriptions. Closes: #123332
-- Christian Hammers <ch@debian.org> Sun, 6 Jan 2002 21:11:17 +0100
mysql (3.23.46-3) unstable; urgency=low
* Fixed bug in postinst where a script was accidently called with
"bash -c <script> -IN_RPM" prevting the first argument to take effect
and then leading to failures on hosts with unresolvable hostnames.
Closes: #126147
* Small changes and comments in postinst.
-- Christian Hammers <ch@debian.org> Sat, 22 Dec 2001 14:03:02 +0100
mysql (3.23.46-2) unstable; urgency=low
* Start/stop behaviour now configurable via debconf. Closes: #112174
-- Christian Hammers <ch@debian.org> Sun, 9 Dec 2001 21:38:54 +0100
mysql (3.23.46-1) unstable; urgency=low
* New upstream release.
Only few fixes, mainly innodb related.
-- Christian Hammers <ch@debian.org> Sun, 2 Dec 2001 03:08:48 +0100
mysql (3.23.45-1) unstable; urgency=low
* New upstream version.
Only few fixes, mainly innodb related.
* Added debconf note regarding the skip-networking option.
-- Christian Hammers <ch@debian.org> Sun, 25 Nov 2001 16:50:37 +0100
mysql (3.23.44-2) unstable; urgency=low
* Finally removed debconf toggled "skip-networking" line add/remove
code for /etc/mysql/my.cnf. I don't like editing a file that's tagged
as configuration file.
I disabled networking by default for security reasons. Better ideas?
-- Christian Hammers <ch@debian.org> Fri, 16 Nov 2001 02:11:02 +0100
mysql (3.23.44-1) unstable; urgency=low
* New upstream release.
- fixes replication bug (core dump)
* Made description better english :) Thanks to D. Welton.
-- Christian Hammers <ch@debian.org> Sun, 11 Nov 2001 15:44:07 +0100
mysql (3.23.43-4) unstable; urgency=low
* Disabled statically linking.
-- Christian Hammers <ch@debian.org> Sat, 10 Nov 2001 03:15:56 +0100
mysql (3.23.43-3) unstable; urgency=low
* Changed compiler settings after one user reported instabilities.
See #116631 for more information.
-- Christian Hammers <ch@debian.org> Tue, 30 Oct 2001 21:39:17 +0100
mysql (3.23.43-2) unstable; urgency=low
* Patched sparc mutexes again. Closes: #113430
-- Christian Hammers <ch@debian.org> Sun, 7 Oct 2001 15:09:00 +0200
mysql (3.23.43-1) unstable; urgency=low
* New upstream version.
- Fixed some unlikely(sic!) bugs and core dumps.
- Fixed a bug with BDB tables and UNIQUE columns that are NULL.
- [more minor bugs were fixed; see changelog]
* Adjusted build depends on libwrap0 for IA-64. Closes: #114582
* Added the mysqlcheck binary. Closes: #114490
* Fixed rules for arm architecture. Closes: #88186
* Renamed mysql_print_defaults to the original name my_print_defaults.
Isn't as descriptive but else I'd have to patch too much. Closes: #114492
-- Christian Hammers <ch@debian.org> Fri, 5 Oct 2001 22:24:40 +0200
mysql (3.23.42-2) unstable; urgency=low
* Applied patch for m68k compile. Closes: #112904
-- Christian Hammers <ch@debian.org> Sun, 23 Sep 2001 21:32:57 +0200
mysql (3.23.42-1) unstable; urgency=low
* New upstream releae.
Fixes critical bug with InnoDB and large BLOBs.
-- Christian Hammers <ch@debian.org> Tue, 18 Sep 2001 22:25:47 +0200
mysql (3.23.41-2) unstable; urgency=low
* Fixed shlibs.local problem. Closes: #111573
* Replaced emacs by sensible-editor in mysqlbug.sh. Thanks Hans Ginzel.
-- Christian Hammers <ch@debian.org> Sun, 9 Sep 2001 17:16:42 +0200
mysql (3.23.41-1) unstable; urgency=low
* New upstream release
* Fixed build problem on ia64. Closes: #110624
-- Christian Hammers <ch@debian.org> Tue, 14 Aug 2001 23:20:35 +0200
mysql (3.23.40-1) unstable; urgency=low
* New upstream release
-- Christian Hammers <ch@debian.org> Sun, 5 Aug 2001 19:46:18 +0200
mysql (3.23.39-5) unstable; urgency=low
* Added debconf template for brazil. Closes: #106934, #106752
* Tightened dependencies on debconf.
* Adjusted mysql.err permissions in logrotate script to 0600. Closes: #105672
-- Christian Hammers <ch@debian.org> Mon, 30 Jul 2001 00:10:12 +0200
mysql (3.23.39-4.1) unstable; urgency=low
* Maintainer-requested NMU.
* Fixing thread mutexes on Sparc and Alpha
(closes: Bug#101783)
* Added --enable-assembler for sparc. This should
allow mysql on sparc to use assembler versions of
some string functions (read: should speed up a bit).
-- Christopher C. Chimelis <chris@debian.org> Fri, 13 Jul 2001 15:09:30 -0400
mysql (3.23.39-4) unstable; urgency=low
* Porting fixes.
-- Christian Hammers <ch@debian.org> Mon, 9 Jul 2001 17:56:54 +0200
mysql (3.23.39-3.1) unstable; urgency=low
* NMU (for porting)
* Update config.sub and config.guess for hppa, sh & s390.
* Add --with-client-ldflags=-lstdc++ to configure line. Closes: #100884
-- Matthew Wilcox <willy@debian.org> Sun, 8 Jul 2001 19:26:59 -0600
mysql (3.23.39-3) unstable; urgency=low
* Disabled berkeley-db on sparc again. Mutexes aren't working again :-(
-- Christian Hammers <ch@debian.org> Sat, 7 Jul 2001 18:30:08 +0200
mysql (3.23.39-2) unstable; urgency=low
* Bugfixed the m68k mutex patch. Thanks to Michael Fedrowitz. Closes: #103145
* Removed config.cache files in bdb/ and innobase/. Closes: #103143
-- Christian Hammers <ch@debian.org> Wed, 4 Jul 2001 22:06:58 +0200
mysql (3.23.39-1) unstable; urgency=low
* New upstream release. Minor bugfixes only.
-- Christian Hammers <ch@debian.org> Thu, 14 Jun 2001 13:53:03 +0200
mysql (3.23.38-4) unstable; urgency=low
* Added logcheck files. Closes: #99131
(I can't let the usermod away since I don't know of an easy way to
retrive "passwd" information in a shell script considering that
people use different storage methods like LDAP/NIS instead of passwd.)
-- Christian Hammers <ch@debian.org> Fri, 8 Jun 2001 21:04:25 +0200
mysql (3.23.38-3) unstable; urgency=low
* Explicit pointet to /root/.my.cnf to let /etc/init.d/mysql stop
work in sudo environments with $HOME!=/root work, too. Closes: #98324
* Removes empty /etc/mysql on purge. Closes: #98164
-- Christian Hammers <ch@debian.org> Tue, 22 May 2001 10:13:06 +0200
mysql (3.23.38-2) unstable; urgency=low
* Added depends to libdbd-mysql-perl for mysql-server. Closes: #94306
-- Christian Hammers <ch@debian.org> Sat, 19 May 2001 19:43:26 +0200
mysql (3.23.38-1) unstable; urgency=low
* New upstream release.
* Added Build-Depends to procps. Closes: #96768
-- Christian Hammers <ch@debian.org> Sun, 13 May 2001 17:30:15 +0200
mysql (3.23.37-5) unstable; urgency=low
* Applied mutex patch for bdb support on m68k.
Thanks to Michael Fedrowitz for the patch.
-- Christian Hammers <ch@debian.org> Mon, 7 May 2001 12:30:40 +0200
mysql (3.23.37-4) unstable; urgency=low
* Enable bdb support for m68k architecture.
-- Christian Hammers <ch@debian.org> Sat, 5 May 2001 16:47:36 +0200
mysql (3.23.37-3) unstable; urgency=low
* Added thread-safe client library. Thanks to Shane Wegner. Closes: #95441
-- Christian Hammers <ch@debian.org> Sat, 28 Apr 2001 09:45:00 -0400
mysql (3.23.37-2) unstable; urgency=low
* Added sparc to the list of BDB supporting architectures after some
tests on vore.debian.org and mails with Ben Collons.
-- Christian Hammers <ch@debian.org> Fri, 27 Apr 2001 09:30:09 -0400
mysql (3.23.37-1) unstable; urgency=low
* New upstream version.
* Added gemini table support.
* Does anybody know how to enable SSL?
* Fixed ARM compilation problem. Closes: #88186
-- Christian Hammers <ch@debian.org> Sat, 21 Apr 2001 11:48:46 -0400
mysql (3.23.36-2) unstable; urgency=low
* Added patch by Christopher C. Chimelis <chris@debian.org> to make
Berkeley db3 work again on Alpha architecture. Closes: #92787
-- Christian Hammers <ch@debian.org> Tue, 3 Apr 2001 23:41:46 +0200
mysql (3.23.36-1) unstable; urgency=high
* New upstream version.
* SECURITY FIX: One could place database tables outside the database
directory by using '..' in one of the mysql helper programs where the
table name was not checked correctly. This could lead to root compromise
if the server would be running as root else you could at least do bad
things as user mysql.
* upstream: Fixed bug when thread creation failed.
* upstream: Fixed problem in Innobase with non-latin1 charsets
* upstream: Fixed a core-dump bug when using very complex query with DISTINGT
* upstream: many others so called minor bugs...
* fixes bug in init script. Closes: #90257
(this report was agains some older problem that has been fixed too in .33)
-- Christian Hammers <ch@debian.org> Fri, 30 Mar 2001 02:55:12 +0200
mysql (3.23.35-1) unstable; urgency=medium
* New upstream relase.
* Fixes problem in ORDER BY clause. People using 3.33.34 should upgrade!
* Includes innobase support.
(Hope this is not such a catastrophe like berkeley db...)
-- Christian Hammers <ch@debian.org> Fri, 16 Mar 2001 23:30:30 +0100
mysql (3.23.33-3) unstable; urgency=low
* Forgot #!/bin/sh at top of mysql-doc.postinst. Closes: #89801
-- Christian Hammers <ch@vore.debian.org> Thu, 15 Mar 2001 20:38:35 -0500
mysql (3.23.33-2) unstable; urgency=low
* Added some missing scripts and manpages. Closes: #84068
* Added dependency to perl-5.6. Closes: #81942
* Added french templates somewhen ago. Closes: #83790
* Added patch to get db3 working on Alpha. Closes: #86033
Thanks to Christopher C. Chimelis <chris@debian.org>. The patch
itself is included as debian/patch.alpha, too.
-- Christian Hammers <ch@debian.org> Sun, 18 Feb 2001 06:40:40 +0100
mysql (3.23.33-1) unstable; urgency=high
* Fixes two security bugs that allowes crashing the server and maybe
gaining the UID of the process that is linked against libmysqlclient!
-- Christian Hammers <ch@debian.org> Tue, 13 Feb 2001 23:01:18 +0100
mysql (3.23.32-1) unstable; urgency=low
* New upstream releaes.
(just minor fixes)
* Added french and german debconf templates.
-- Christian Hammers <ch@debian.org> Sun, 4 Feb 2001 17:27:07 +0100
mysql (3.23.31-1) unstable; urgency=high
* New upstream release.
* Fixes security bug that was announced at BUGTRAQ mailing list.
(Disappointingly not by mysql.com!). And allows a buffer overflow
and therefore access to the mysql UID and all databases when already
having a valid account. Closes: #82881
-- Christian Hammers <ch@debian.org> Sat, 20 Jan 2001 11:14:36 +0100
mysql (3.23.30-2) unstable; urgency=low
* Recompiled with new dpkg-dev.
-- Christian Hammers <ch@debian.org> Sun, 14 Jan 2001 22:20:55 +0100
mysql (3.23.30-1) unstable; urgency=low
* New upstream release.
-- Christian Hammers <ch@debian.org> Sun, 7 Jan 2001 22:10:18 +0100
mysql (3.23.28-10) testing unstable; urgency=low
* I must upload to "testing" to get it into woody, right?!
-- Christian Hammers <ch@debian.org> Fri, 29 Dec 2000 14:43:57 +0100
mysql (3.23.28-9) unstable; urgency=low
* Made it a replacement for libmysqlclient9.
-- Christian Hammers <ch@westend.com> Mon, 25 Dec 2000 19:15:04 +0100
mysql (3.23.28-8) unstable; urgency=low
* Applied patch from a user to get the skip-networking option working!
Approved from a mysql employee but please test anyways.
This finally: Closes: #79672, #78634, #79660, #79658
-- Christian Hammers <ch@debian.org> Sat, 16 Dec 2000 14:01:36 +0100
mysql (3.23.28-6) unstable; urgency=medium
* Fixed error in postinst. Closes: #79392, #79400, #79451, #79550
* Added .info files again on user request. Closes: #78988, #75737
-- Christian Hammers <ch@debian.org> Wed, 13 Dec 2000 21:18:24 +0100
mysql (3.23.28-5) unstable; urgency=low
* Fixed a stupid bug in mysql-server.postinst regarding the
configuration of skip-networking. Closes: #78639, 78634
* Used patched bdb which hopefully enables mutexes on Alpha. Closes: #78197
* Added dependency to adduser. Closes: #76798
-- Christian Hammers <ch@debian.org> Sun, 10 Dec 2000 16:55:48 +0100
mysql (3.23.28-4) unstable; urgency=low
[never uploaded]
* Fixed a stupid bug in mysql-server.postinst regarding the
configuration of skip-networking. Closes: #78639, 78634
* Used patched bdb which hopefully enables mutexes on Alpha. Closes: #78197
-- Christian Hammers <ch@debian.org> Sun, 3 Dec 2000 17:49:44 +0100
mysql (3.23.28-3) unstable; urgency=low
* This time really fixed m68k build error. Closes: #78235
-- Christian Hammers <ch@debian.org> Sun, 3 Dec 2000 15:02:55 +0100
mysql (3.23.28-2) unstable; urgency=low
* Adjusted rules file to make it buildable on m86k. Closes: #78235
-- Christian Hammers <ch@debian.org> Fri, 1 Dec 2000 20:07:26 +0100
mysql (3.23.28-1) unstable; urgency=low
* New upstream vesrion. Now gamma!
* Changed umask of mysql.log making it o-rw
* Disabled listening on network reachable TCP ports by default due to
security considerations.
-- Christian Hammers <ch@debian.org> Thu, 23 Nov 2000 20:12:50 +0100
mysql (3.23.27-1) unstable; urgency=low
* New upstream version.
* Closes: #75711
-- Christian Hammers <ch@debian.org> Sun, 29 Oct 2000 14:29:51 +0100
mysql (3.23.25-4) unstable; urgency=low
* Recompiled to get rid of the dependency for zlib1 (libc5).
Closes: #74952, #74939
-- Christian Hammers <ch@debian.org> Tue, 17 Oct 2000 14:34:52 +0200
mysql (3.23.25-3.1) unstable; urgency=low
* Maintainer-approved NMU.
* Includes patch to fix and enable db3 support on Alpha.
* Enable support for thread mutexes in db3 on sparc
(it works after all, according to Ben Collins)
* Removed atomic_ functions for Alpha since they are no
longer supported in the current glibc in woody.
* Cleaned up rules file a bit.
-- Christopher C. Chimelis <chris@debian.org> Sat, 14 Oct 2000 04:22:02 -0400
mysql (3.23.25-3) unstable; urgency=low
* Upstream decided not to include my_config.h,my_dir.h into the installed
header files. As this file contains at least informative material
and more important is checked by several autoconf scripts I
included it by hand again.
* Made building of berkeley db conditional to architecture until
I get response whether it works on sparc/alpha now.
-- Christian Hammers <ch@debian.org> Wed, 11 Oct 2000 23:58:38 +0200
mysql (3.23.25-2) unstable; urgency=medium
* Last build went terrible wrong.. Here's the changelog again:
* New upstream release.
* Shared library version was raised from 9 to 10.
Maintainers of packets using libmysqlclient9 must recompile!
-- Christian Hammers <ch@debian.org> Wed, 11 Oct 2000 01:16:34 +0200
mysql (3.23.25-1) unstable; urgency=low
* New upstream release.
* Shared library version was raised from 9 to 10.
Maintainers of packets using libmysqlclient9 must recompile!
-- Christian Hammers <ch@debian.org> Sat, 7 Oct 2000 18:21:51 +0200
mysql (3.23.24-2) unstable; urgency=low
* Applied upstream patch regarding quoting of mysqldump.
* Updated to db-3.1.17-patched (from www.mysql.com)
-- Christian Hammers <ch@debian.org> Fri, 15 Sep 2000 18:58:14 +0200
mysql (3.23.24-1) unstable; urgency=medium
* New upstream version with some important fixes.
* upstream: Last version corrupted CHAR/VARCHAR/BLOB columns with
chararacters above ASCII 128! Check and repair all these tables.
* upstream: fixed small memory leak
* upstream: fixed problem with BDB tables and reading on unique
(not primary) key.
* Disabled BDB tables on all architectures except i386 due to many
bug reports (see #71206). -> HELP APPRECIATED <-
-- Christian Hammers <ch@debian.org> Tue, 12 Sep 2000 06:18:54 +0200
mysql (3.23.23-2) unstable; urgency=low
* Strange... "nohup nice" gives differnet results and let therefore
crash safe_mysqld when starting up. Apparently it seems to be
kernel dependand. Now fixed by another conditional. This
more or less Closes: #71057
* This bug was reported (accidently) in the following identical reports:
Closes: #71253, #71254, #71257, #71258, #71259, #71262, #71266, #71267
Closes: #71268, #71271, #71275, #71277, #71278, #71283, #71291
-- Christian Hammers <ch@debian.org> Sat, 9 Sep 2000 20:13:50 +0200
mysql (3.23.23-1) unstable; urgency=low
* New upstream version. Feature freeze!
* Fixed source build problem. Closes: #70707
-- Christian Hammers <ch@debian.org> Thu, 31 Aug 2000 10:03:35 +0200
mysql (3.23.22b-1) unstable; urgency=low
* Reorganised docs. Now we have several small html files instead of
one with almost 2M. Closes: 70431
* Removed pdf,ps and html from source package shrinked it about 3M
(therefore the .orig.tar.gz is called 3.23.22b!)
* -> Last upload failed due to problems at the FTP site so here the
-> changelog again:
* Fixes memory leak, commit/rollback, reserved word "MASTER" ...
* Added Berkeley DB3 source code to the Debian diff to be able to
compile with bdb transaction support! (Great feature!!!)
* Upstream correction of error message. Closes: #68939
* Upstream correction of reserved word "source".
-- Christian Hammers <ch@debian.org> Fri, 25 Aug 2000 19:21:24 +0200
mysql (3.23.22-1) unstable; urgency=low
* New upstream version.
* Fixes memory leak, commit/rollback, reserved word "MASTER" ...
* Added Berkeley DB3 source code to the Debian diff to be able to
compile with bdb transaction support! (Great feature!!!)
* Upstream correction of error message. Closes: #68939
* Upstream correction of reserved word "source".
-- Christian Hammers <ch@debian.org> Sun, 20 Aug 2000 09:05:48 +0200
mysql (3.23.21-4) unstable; urgency=low
* Added libmysqlclient9.shlibs and shlibs.local file. Closes: #68669
-- Christian Hammers <ch@debian.org> Wed, 9 Aug 2000 14:22:49 +0200
mysql (3.23.21-3) unstable; urgency=low
* Let "/etc/init.d/mysql restart" wait until the pid has been
removed before (but max 6 seconds) before restarting. Closes: 65070
* Added build dependencies.
-- Christian Hammers <ch@debian.org> Sun, 30 Jul 2000 16:16:48 +0200
mysql (3.23.21-2) unstable; urgency=low
* Typo in safe_mysqld prevents start.
-- Christian Hammers <ch@debian.org> Sat, 29 Jul 2000 13:40:50 +0200
mysql (3.23.21-1) unstable; urgency=low
* New upstream version.
-- Christian Hammers <ch@debian.org> Mon, 10 Jul 2000 22:54:17 +0200
mysql (3.23.20-1) unstable; urgency=low
* MySQL finally got fully GPL'ed! This means that there is only one
souce package and only main/* binary packages from now on.
* Fixed symlink in libmysqlclient9-dev. Closes: 66452
* Apart from that the usual bug fixes for BETA software.
-- Christian Hammers <ch@debian.org> Mon, 3 Jul 2000 20:05:38 +0200
mysql-pd (3.23.16-1) unstable; urgency=low
* New upstream release. (Actually a brand new upstream branch!)
* Added mysql-common package as the configuration file can be used
by all versions of the mysql client library.
Did some more package reorganisations, too. See README.Debian file!
* libmysqlclient.so raised major version from 6 to 9.
* Minor beautifications in the debian/ directory.
-- Christian Hammers <ch@debian.org> Sat, 27 May 2000 20:30:01 +0200
mysql-gpl (3.22.30-2) frozen unstable; urgency=low
* Fixed path in libmysqlclient.la. Closes: #58875
-- Christian Hammers <ch@debian.org> Sat, 25 Jan 2000 20:27:29 -0700
mysql-gpl (3.22.30-1) frozen unstable; urgency=low
* A small change in the libmysqlclient6 causes mysqladmin to print an
shared library error when displaying the defaults. Everything else
works fine so this error wasn't detected untill now. Closes: #58033
* TcX released a new MySQL version that includes another security patch,
this time against mysqlaccess. The author told me that it would be
fine if I just included the new .c in this source since I don't want
go to 3.22.32 in frozen.
* ->Release Manager: Although the version number increased there is
no new coded except for the shared library. The rest is the same
as in mysql-server and mysql-client.
-- Christian Hammers <ch@debian.org> Tue, 15 Feb 2000 23:26:54 +0100
mysql-gpl (3.22.29-1) unstable; urgency=low
* New upstream version.
-- Christian Hammers <ch@debian.org> Thu, 6 Jan 2000 20:37:23 +0100
mysql-gpl (3.22.27a-3) unstable; urgency=low
* Use system readline instead of bundled version. Closes: #50069
Any objections ?
-- Christian Hammers <ch@debian.org> Sun, 14 Nov 1999 18:09:48 +0100
mysql-gpl (3.22.27a-2) unstable; urgency=low
* Now building mysql-gpl-doc in binary-indep.
-- Christian Hammers <ch@debian.org> Sat, 23 Oct 1999 04:22:36 +0200
mysql-gpl (3.22.27a-1) unstable; urgency=low
* Adjusted version number to allow new orig.tar.gz.
The old seems broken :-( People reported compilation problems.
* Changed mysql-gpl-doc to "Architecture: all".
-- Christian Hammers <ch@debian.org> Sun, 17 Oct 1999 13:01:35 +0200
mysql-gpl (3.22.27-1) unstable; urgency=low
* New upstream release. Fixes charset problem.
-- Christian Hammers <ch@debian.org> Mon, 11 Oct 1999 18:01:40 +0200
mysql-gpl (3.22.26a-1) unstable; urgency=low
* New upstream version. Just some small bug fixes.
* FHS compliance.
-- Christian Hammers <ch@debian.org> Sun, 3 Oct 1999 10:16:14 +0200
mysql-gpl (3.22.25-2) unstable; urgency=low
* Added conflict to all old mysql-dev packages. (fixes: #42966)
-- Christian Hammers <ch@debian.org> Sun, 15 Aug 1999 11:35:46 +0200
mysql-gpl (3.22.25-1) unstable; urgency=low
* New upstream version. (We are waiting for 3.23.x !)
* Fixes some upstream small bugs.
-- Christian Hammers <ch@debian.org> Sun, 18 Jul 1999 22:02:06 +0200
mysql-gpl (3.22.23b-4) unstable; urgency=low
* Rebuild for new perl.
-- Christian Hammers <ch@debian.org> Thu, 8 Jul 1999 01:09:57 +0200
mysql-gpl (3.22.23b-3) unstable; urgency=low
* libmysqlclient had the wrong socket path.
-- Christian Hammers <ch@debian.org> Sun, 03 Jul 1999 23:13:30 +0200
mysql-gpl (3.22.23b-2) unstable; urgency=low
* Missed one replace tag to an very old version of mysql-devel.
-- Christian Hammers <ch@debian.org> Sun, 27 Jun 1999 19:13:30 +0200
mysql-gpl (3.22.23b-1) unstable; urgency=low
* New upstream minor version.
* Cleaned up the dependencies a bit.
-- Christian Hammers <ch@debian.org> Sun, 27 Jun 1999 19:13:30 +0200
mysql-gpl (3.22.22-1) unstable; urgency=low
* New upstream version. (closes Bug#36493,37340)
* New maintainer upload.
* Package reorganisation: We prepare for the GPL'ed server which will
* be released soon and make the structure more clear to the user.
-- Christian Hammers <ch@debian.org> Mon, 3 May 1999 20:43:41 +0200
mysql (3.22.21-1) unstable; urgency=low
* Never released. TcX was too fast :-)
-- Christian Hammers <ch@debian.org> Tue, 20 Apr 1999 17:22:04 +0200
mysql-freebits (3.21.33b-3) unstable; urgency=low
* Recompile with libncurses
-- Scott Hanson <shanson@debian.org> Sat, 31 Oct 1998 15:04:39 +0100
mysql-freebits (3.21.33b-2) unstable; urgency=low
* Recompile with libstdc++2.9 (fixes #27792)
-- Scott Hanson <shanson@debian.org> Mon, 12 Oct 1998 18:47:25 +0200
mysql-freebits (3.21.33b-1) unstable; urgency=low
* New upstream version (probably the last for 3.21)
-- Scott Hanson <shanson@debian.org> Tue, 8 Sep 1998 18:59:37 +0200
mysql-freebits (3.21.33-4) unstable; urgency=low
* Separate out non-free source files, move mysql-base, mysql-dev, and
* mysql-doc to main distribution
* Locale files /usr/share/mysql/ now in server, not base; therefore...
* Add conflict to mysql-server <=3.21.33-3
-- Scott Hanson <shanson@debian.org> Fri, 31 Jul 1998 19:16:08 +0200
mysql (3.21.33-3) unstable; urgency=low
* Release to unstable with moved socket (fixes #24574)
* Add conflict to old libdbd-mysql-perl package
-- Scott Hanson <shanson@debian.org> Wed, 22 Jul 1998 22:17:43 +0200
mysql (3.21.33-2) experimental; urgency=low
* Move socket from /tmp to /var/run (see #24574)
* Release to experimental, since this breaks everything statically
* linked to libmysqlclient!
-- Scott Hanson <shanson@debian.org> Wed, 15 Jul 1998 19:37:01 +0200
mysql (3.21.33-1) unstable; urgency=low
* New upstream release
-- Scott Hanson <shanson@debian.org> Sun, 12 Jul 1998 08:18:18 +0200
mysql (3.21.32a-1) unstable; urgency=low
* New upstream release
* Lintian bugs: ldconfig, missing manpage, call to perl5
* Lintian bug shlib-with-non-pic-code _not_ yet fixed
-- Scott Hanson <shanson@debian.org> Sat, 4 Jul 1998 07:57:13 +0200
mysql (3.21.31-1) unstable frozen; urgency=low
* New upstream release for hamm and slink (bug fixes only)
* Fix unsecure use of temp file in mysqlbug (fixes #23606)
* Added brief licensing information to control file
-- Scott Hanson <shanson@debian.org> Tue, 16 Jun 1998 10:52:44 +0200
mysql (3.21.30-3) unstable; urgency=low
* Restore missing shared library dependencies for mysql-server
-- Scott Hanson <shanson@debian.org> Mon, 15 Jun 1998 07:51:58 +0200
mysql (3.21.30-2) unstable; urgency=low
* Simplify debian/rules (fixes #17662)
* Edit manual.texi to add "Debian notes" to documentation
* Add note about passwords on command line (fixes #16471)
* Add note about getting privleges for users (fixes #22891)
* Correct "Possible license changes" heading (fixes #22711)
* Add uninstalled header files to /usr/doc/mysql-dev/examples (fixes #22627)
* Add udf_example.cc to /usr/doc/mysql-dev/examples (fixes #22710)
-- Scott Hanson <shanson@debian.org> Sun, 7 Jun 1998 13:05:37 +0200
mysql (3.21.30-1) unstable; urgency=low
* Stable upstream release
-- Scott Hanson <shanson@debian.org> Tue, 12 May 1998 22:13:25 +0200
mysql (3.21.29gamma-1) unstable; urgency=low
* New upstream release
* Do not create 'mysql' subdirectory for libs and headers (fixes #19020)
* Remove 'CXX=gcc' flag from configure (g++ now standard)
-- Scott Hanson <shanson@debian.org> Sun, 12 Apr 1998 18:38:03 +0200
mysql (3.21.28gamma-1) unstable; urgency=low
* New upstream release
* Unstable-only release; hamm stays at 3.21.25 for now
-- Scott Hanson <shanson@debian.org> Thu, 2 Apr 1998 21:33:51 +0200
mysql (3.21.25gamma-3) unstable frozen; urgency=low
* Have mysql-base suggest perl >= 5.004 for mysqlaccess (fixes #19593)
* Fix shlibs to refer to mysql-base rather than the no-longer-existant mysql
-- Scott Hanson <shanson@debian.org> Thu, 26 Mar 1998 18:22:59 +0100
mysql (3.21.25gamma-2) unstable; urgency=low
* Restore libmysqlclient.so symlink to mysql-dev (fixes #19036)
-- Scott Hanson <shanson@debian.org> Sun, 8 Mar 1998 10:46:43 +0100
mysql (3.21.25gamma-1) unstable; urgency=low
* Check if running as root in init.d script (fixes #18577)
* New upstream release
-- Scott Hanson <shanson@debian.org> Fri, 27 Feb 1998 20:01:30 +0100
mysql (3.21.24gamma-1) unstable; urgency=low
* New upstream release
-- Scott Hanson <shanson@debian.org> Mon, 23 Feb 1998 08:14:17 +0100
mysql (3.21.23beta-3) unstable; urgency=low
* Squashed errors found by lintian
-- Scott Hanson <shanson@debian.org> Tue, 17 Feb 1998 20:19:01 +0100
mysql (3.21.23beta-2) unstable; urgency=low
* Fixed overlaps with old mysql package (fixes #17843)
-- Scott Hanson <shanson@debian.org> Thu, 5 Feb 1998 22:55:00 +0100
mysql (3.21.23beta-1) unstable; urgency=low
* New upstream release
* Fix include lines in mysql.h (fixes #17827)
* Move /usr/include/mysql to mysql-dev
-- Scott Hanson <shanson@debian.org> Wed, 4 Feb 1998 19:59:14 +0100
mysql (3.21.22beta-3) unstable; urgency=low
* Correct descriptions in control file (fixes #17698)
* Clean up output of shutdown script
-- Scott Hanson <shanson@debian.org> Sat, 31 Jan 1998 19:04:29 +0100
mysql (3.21.22beta-2) unstable; urgency=low
* Split out mysql-dev and mysql-bench subpackages
-- Scott Hanson <shanson@debian.org> Wed, 28 Jan 1998 19:52:27 +0100
mysql (3.21.22beta-1) unstable; urgency=low
* New upstream release
-- Scott Hanson <shanson@debian.org> Wed, 28 Jan 1998 18:59:09 +0100
mysql (3.21.21a.beta-2) unstable; urgency=low
* Compile with libpthreads from libc6-dev_2.0.6-3 rather than statically
linking to patched libpthreads (see changes to 3.20.29-2)
-- Scott Hanson <shanson@debian.org> Sun, 25 Jan 1998 13:17:15 +0100
mysql (3.21.21a.beta-1) unstable; urgency=low
* Put initial database, mysql_install_db, safe_mysqld, isamlog and
isamchk in mysql-server
* Correct upstream release number so source packages are correctly built
-- Scott Hanson <shanson@debian.org> Mon, 19 Jan 1998 07:52:48 +0100
mysql (3.21.21.beta-1) unstable; urgency=low
* Use debhelper where possible in rules
* Split binary packages into mysql-base, mysql-client, mysql-doc
* New upstream release
-- Scott Hanson <shanson@debian.org> Thu, 15 Jan 1998 08:12:17 +0100
mysql (3.21.19.beta-1) unstable; urgency=low
* Offer to set root password in mysql_install_db
* Kill `pidof mysqld` on shutdown rather than use mysqladmin
* New upstream version
-- Scott Hanson <shanson@debian.org> Fri, 9 Jan 1998 20:06:35 +0100
mysql (3.21.17a.beta-2) unstable; urgency=low
* Remove perl stuff (it's going back into libdbd-mysql-perl)
* Remove conflict with libdbd-mysql-perl
* Do not compress *html files (fixes #16314)
-- Scott Hanson <shanson@debian.org> Tue, 30 Dec 1997 07:34:20 +0100
mysql (3.21.17a.beta-1) unstable; urgency=low
* Add conflict to libdbd-mysql-perl
* Use --pid-file option to place pid file in /var/run rather than patching
* Add install-info to postinst and postrm
* Add filename to message shown by mysql_install_db (fixes #16621)
* New upstream version
-- Scott Hanson <shanson@debian.org> Sun, 21 Dec 1997 19:41:45 +0100
mysql (3.20.32a-5) unstable; urgency=low
* Move mysqld to /usr/lib/mysql, per policy discussion
* Adjust makefiles so perl libs get installed
-- Scott Hanson <shanson@debian.org> Wed, 3 Dec 1997 22:37:45 +0100
mysql (3.20.32a-4) unstable; urgency=low
* Move mysqld to /usr/sbin to comply with FSSTND
-- Scott Hanson <shanson@debian.org> Mon, 3 Nov 1997 20:12:29 +0100
mysql (3.20.32a-3) unstable; urgency=low
* Comment out tests in mysql_install_db... for real this time!
-- Scott Hanson <shanson@debian.org> Mon, 3 Nov 1997 07:32:53 +0100
mysql (3.20.32a-2) unstable; urgency=low
* Comment out tests in mysql_install_db (fixes #14304)
-- Scott Hanson <shanson@debian.org> Sat, 1 Nov 1997 18:45:25 +0100
mysql (3.20.32a-1) unstable; urgency=low
* New upstream version
-- Scott Hanson <shanson@debian.org> Wed, 29 Oct 1997 07:11:42 +0100
mysql (3.20.29-2) unstable; urgency=low
* New maintainer
* Statically link mysqld to patched glibc-2.0.5 libpthread
(works around #13586; see README.debian.glibc-2.0.5)
* Conflict with libpthread0 (fixes #13448)
* Don't link libg++, avoiding problems with glibc libpthread
-- Scott Hanson <shanson@debian.org> Thu, 16 Oct 1997 19:25:23 +0200
mysql (3.20.29-1) unstable; urgency=low
* New upstream version
* Recompiled with libc6
* Include mysql-faq_toc.html (fixes #10885)
* Reworked /etc/init.d/mysql script (thanks to Heiko)
* Remove file /usr/lib/libmysqlclient.so.4 when package is removed.
* Use absolute path specification for conffile
* Use /usr/bin/perl instead of /bin/perl (fixes #10654)
* Do not depend on mysql (fixes #12427)
* Installed missing manpage for Mysql perl module
* Don't use debstd anymore
* Pristine source
* Set section to `non-free/devel'
* Upgraded to standards version 2.3.0.0
-- Christian Schwarz <schwarz@debian.org> Fri, 12 Sep 1997 02:12:58 +0200
mysql (3.20.16beta-2) unstable; urgency=low
* Uses /usr/bin/perl instead of /bin/perl (fixes bug #9731)
* Don't run mysqld with --log option
* Don't install regex manual pages
* Suggest package mysql-manual
* Fixed typo in changelog
* Upgrade to policy 2.1.3.2
-- Christian Schwarz <schwarz@debian.org> Sun, 11 May 1997 14:19:26 +0200
mysql (3.20.16beta-1) unstable; urgency=low
* Initial Release.
-- Christian Schwarz <schwarz@debian.org> Sat, 12 Apr 1997 13:51:28 +0200
|