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
|
python-django (3:4.2.17-1) unstable; urgency=medium
* New upstream security release:
- CVE-2024-53907: Potential DoS in django.utils.html.strip_tags.
The strip_tags() method and striptags template filter were subject to a
potential denial-of-service attack via certain inputs containing large
sequences of nested incomplete HTML entities.
- CVE-2024-53908: Potential SQL injection in HasKey(lhs, rhs) on Oracle
Direct usage of the django.db.models.fields.json.HasKey lookup on Oracle
was subject to SQL injection if untrusted data is used as a lhs value.
Applications that use the jsonfield.has_key lookup through the __ syntax
are unaffected.
<https://www.djangoproject.com/weblog/2024/dec/04/security-releases/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Wed, 04 Dec 2024 17:33:13 +0000
python-django (3:4.2.16-1) unstable; urgency=high
* New upstream security release:
- CVE-2024-45230: Potential denial-of-service vulnerability in
django.utils.html.urlize(). urlize and urlizetrunc were subject to a
potential denial-of-service attack via very large inputs with a specific
sequence of characters.
- CVE-2024-45231: Potential user email enumeration via response status on
password reset. Due to unhandled email sending failures, the
django.contrib.auth.forms.PasswordResetForm class allowed remote
attackers to enumerate user emails by issuing password reset requests and
observing the outcomes. To mitigate this risk, exceptions occurring
during password reset email sending are now handled and logged using the
django.contrib.auth logger.
* Bump Standards-Version to 4.7.0.
-- Chris Lamb <lamby@debian.org> Tue, 03 Sep 2024 17:31:33 +0100
python-django (3:4.2.15-1) unstable; urgency=high
* New upstream security release. (Closes: #1078074)
- CVE-2024-41989: Memory exhaustion in django.utils.numberformat.
The floatformat template filter is subject to significant memory
consumption when given a string representation of a number in
scientific notation with a large exponent.
- CVE-2024-41990: Potential denial-of-service in django.utils.html.urlize.
The urlize() and urlizetrunc() template filters are subject to a
potential denial-of-service attack via very large inputs with a specific
sequence of characters.
- CVE-2024-41991: Potential denial-of-service vulnerability in
django.utils.html.urlize() and AdminURLFieldWidget
The urlize and urlizetrunc template filters, and the AdminURLFieldWidget
widget, are subject to a potential denial-of-service attack via certain
inputs with a very large number of Unicode characters.
- CVE-2024-42005: Potential SQL injection in QuerySet.values() and
values_list()
QuerySet.values() and values_list() methods on models with a JSONField
are subject to SQL injection in column aliases via a crafted JSON object
key as a passed *arg.
<https://www.djangoproject.com/weblog/2024/aug/06/security-releases/>
-- Chris Lamb <lamby@debian.org> Tue, 06 Aug 2024 16:59:24 +0100
python-django (3:4.2.14-1) unstable; urgency=medium
* New upstream security release. (Closes: #1076069)
- CVE-2024-38875: Prevent a potential denial-of-service in
django.utils.html.urlize. This method (and urlizetrunc) were subject to a
potential DoS attack via specially-crafted inputs with a very large
number of brackets.
- CVE-2024-39329: Avoid a username enumeration vulnerability through timing
difference for users with unusable password. The authenticate method of
django.contrib.auth.backends.ModelBackend method allowed remote attackers
to enumerate users via a timing attack involving login requests for users
with unusable passwords.
- CVE-2024-39330: Address a potential directory-traversal in
django.core.files.storage.Storage.save. Derived classes of this method's
base class which override generate_filename without replicating the file
path validations existing in the parent class allowed for potential
directory-traversal via certain inputs when calling save(). Built-in
Storage sub-classes were not affected by this vulnerability.
- CVE-2024-39614: Fix a potential denial-of-service in
django.utils.translation.get_supported_language_variant. This method
was subject to a potential DoS attack when used with very long strings
containing specific characters. To mitigate this vulnerability, the
language code provided to get_supported_language_variant is now parsed up
to a maximum length of 500 characters.
<https://www.djangoproject.com/weblog/2024/jul/09/security-releases/>
-- Chris Lamb <lamby@debian.org> Wed, 10 Jul 2024 09:50:49 +0100
python-django (3:4.2.13-1) unstable; urgency=medium
* New upstream bugfix releases.
<https://docs.djangoproject.com/en/5.0/releases/4.2.12/>
<https://docs.djangoproject.com/en/5.0/releases/4.2.13/>
-- Chris Lamb <lamby@debian.org> Wed, 08 May 2024 11:28:44 +0100
python-django (3:4.2.11-1) unstable; urgency=high
* New upstream security release:
- CVE-2024-27351: Fix a potential regular expression denial-of-service
(ReDoS) attack in django.utils.text.Truncator.words. This method
(with html=True) and the truncatewords_html template filter were subject
to a potential regular expression denial-of-service attack via a suitably
crafted string. This is, in part, a follow up to CVE-2019-14232 and
CVE-2023-43665.
<https://docs.djangoproject.com/en/dev/releases/4.2.11/>
-- Chris Lamb <lamby@debian.org> Tue, 05 Mar 2024 13:03:35 +0000
python-django (3:4.2.10-1) unstable; urgency=high
* New upstream security release:
- CVE-2024-24680: Potential denial-of-service in intcomma template filter.
The intcomma template filter was subject to a potential denial-of-service
attack when used with very long strings.
<https://docs.djangoproject.com/en/dev/releases/4.2.10/>
-- Chris Lamb <lamby@debian.org> Tue, 06 Feb 2024 08:15:25 -0800
python-django (3:4.2.9-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/dev/releases/4.2.9/>
-- Chris Lamb <lamby@debian.org> Wed, 03 Jan 2024 11:15:04 +0000
python-django (3:4.2.8-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/5.0/releases/4.2.8/>
-- Chris Lamb <lamby@debian.org> Thu, 07 Dec 2023 13:05:03 +0000
python-django (3:4.2.6-1) unstable; urgency=high
* New upstream security release.
- CVE-2023-43665: Address a denial-of-service possibility in
django.utils.text.Truncator.
Following the fix for CVE-2019-14232, the regular expressions used in the
implementation of django.utils.text.Truncator’s chars() and words()
methods (with html=True) were revised and improved. However, these
regular expressions still exhibited linear backtracking complexity, so
when given a very long, potentially malformed HTML input, the evaluation
would still be slow, leading to a potential denial of service
vulnerability.
The chars() and words() methods are used to implement the
truncatechars_html and truncatewords_html template filters, which were
thus also vulnerable.
The input processed by Truncator, when operating in HTML mode, has been
limited to the first five million characters in order to avoid potential
performance and memory issues.
<https://www.djangoproject.com/weblog/2023/oct/04/security-releases/>
-- Chris Lamb <lamby@debian.org> Thu, 05 Oct 2023 09:17:06 +0200
python-django (3:4.2.5-2) unstable; urgency=medium
* Upload 4.2.x branch to unstable with a -2 suffix to prevent collision with
previous upload of 3:4.2.5-1 to experimental.
-- Chris Lamb <lamby@debian.org> Sun, 24 Sep 2023 13:52:16 -0700
python-django (3:3.2.21-1) unstable; urgency=high
* New upstream security release:
- CVE-2023-41164: Potential denial of service vulnerability in
django.utils.encoding.uri_to_iri(). This method was subject to potential
denial of service attack via certain inputs with a very large number of
Unicode characters. (Closes: #1051226)
<https://www.djangoproject.com/weblog/2023/sep/04/security-releases/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Mon, 04 Sep 2023 11:02:53 -0700
python-django (3:3.2.20-1.1) unstable; urgency=high
[ Gianfranco Costamagna ]
* Non-maintainer upload.
[ Graham Inggs ]
* Cherry-pick upstream commit to fix URLValidator crash in
some edge cases (LP: #2025155, Closes: #1037920)
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 04 Jul 2023 09:31:10 +0200
python-django (3:3.2.20-1) unstable; urgency=high
* New upstream security release:
- CVE-2023-36053: Potential regular expression denial of service
vulnerability in EmailValidator/URLValidator.
EmailValidator and URLValidator were subject to potential regular
expression denial of service attack via a very large number of domain
name labels of emails and URLs. (Closes: #1040225)
-- Chris Lamb <lamby@debian.org> Mon, 03 Jul 2023 20:34:24 +0100
python-django (3:3.2.19-1) unstable; urgency=medium
* New upstream security release.
* CVE-2023-31047: Prevent a potential bypass of validation when uploading
multiple files using one form field.
Uploading multiple files using one form field has never been supported by
forms.FileField or forms.ImageField as only the last uploaded file was
validated. Unfortunately, Uploading multiple files topic suggested
otherwise. In order to avoid the vulnerability, the ClearableFileInput and
FileInput form widgets now raise ValueError when the multiple HTML
attribute is set on them. To prevent the exception and keep the old
behavior, set the allow_multiple_selected attribute to True.
For more details on using the new attribute and handling of multiple files
through a single field, see:
<https://docs.djangoproject.com/en/stable/topics/http/file-uploads/#uploading-multiple-files>
(Closes: #1035467)
* Bump Standards-Version to 4.6.2.
-- Chris Lamb <lamby@debian.org> Wed, 03 May 2023 09:32:59 -0700
python-django (3:3.2.18-1) unstable; urgency=high
* New upstream security release:
- CVE-2023-24580: Potential denial-of-service vulnerability in file uploads
Passing certain inputs to multipart forms could result in too many open
files or memory exhaustion, and provided a potential vector for a
denial-of-service attack.
The number of files parts parsed is now limited via the new
DATA_UPLOAD_MAX_NUMBER_FILES setting.
Thanks to Jakob Ackermann for the report. (Closes: #1031290)
-- Chris Lamb <lamby@debian.org> Tue, 14 Feb 2023 09:12:57 -0800
python-django (3:3.2.17-1) unstable; urgency=medium
* New security upstream release.
<https://www.djangoproject.com/weblog/2023/feb/01/security-releases/>
- CVE-2023-23969: Potential denial-of-service via Accept-Language headers
The parsed values of Accept-Language headers are cached in order to avoid
repetitive parsing. This leads to a potential denial-of-service vector
via excessive memory usage if large header values are sent.
In order to avoid this vulnerability, the Accept-Language header is now
parsed up to a maximum length. (Closes: #1030251)
* Drop 0010-Fixed-inspectdb.tests.InspectDBTestCase.test_custom_.patch;
applied upstream.
* Refresh all patches.
-- Chris Lamb <lamby@debian.org> Wed, 01 Feb 2023 08:01:01 -0800
python-django (3:3.2.16-2) unstable; urgency=medium
* Team upload.
[ Chris Lamb ]
* Drop README.source.
[ Lena Voytek ]
* Make unit tests compatible with Python 3.11 to fix build errors
(Closes: #1026476) (LP: #2002012)
-- Jochen Sprickerhof <jspricke@debian.org> Thu, 19 Jan 2023 16:53:53 +0100
python-django (3:3.2.16-1) unstable; urgency=high
* New upstream security release.
<https://www.djangoproject.com/weblog/2022/oct/04/security-releases/>
- CVE-2022-41323: Prevent a potential denial-of-service vulnerability in
internationalized URLs. Internationalised URLs were subject to potential
denial of service attack via the locale parameter. This is now escaped to
avoid this possibility.
-- Chris Lamb <lamby@debian.org> Tue, 04 Oct 2022 07:51:21 -0700
python-django (3:3.2.15-1) unstable; urgency=high
* New upstream security release.
- CVE-2022-36359: Potential reflected file download vulnerability in
FileResponse. An application may have been vulnerable to a reflected file
download (RFD) attack that sets the Content-Disposition header of a
FileResponse when the filename was derived from user-supplied input. The
filename is now escaped to avoid this possibility.
<https://www.djangoproject.com/weblog/2022/aug/03/security-releases/>
-- Chris Lamb <lamby@debian.org> Wed, 03 Aug 2022 07:11:45 -0700
python-django (3:3.2.14-1) unstable; urgency=medium
* Revert Debian unstable to 3.2.x LTS release stream, bumping epoch.
(Closes: #1016090)
* Refresh patches.
* Bump Standards-Version to 4.6.1.
-- Chris Lamb <lamby@debian.org> Tue, 02 Aug 2022 09:02:41 -0700
python-django (2:4.0.6-1) unstable; urgency=high
* New upstream security release:
- CVE-2022-34265: Potential SQL injection via Trunc(kind) and
Extract(lookup_name) arguments.
"Trunc() and Extract() database functions were subject to SQL injection if
untrusted data was used as a kind/lookup_name value. Applications that
constrain the lookup name and kind choice to a known safe list are
unaffected."
"This security release mitigates the issue, but we have identified
improvements to the Database API methods related to date extract and
truncate that would be beneficial to add to Django 4.1 before it's final
release. This will impact 3rd party database backends using Django 4.1
release candidate 1 or newer, until they are able to update to the API
changes. We apologize for the inconvenience."
<https://www.djangoproject.com/weblog/2022/jul/04/security-releases/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Tue, 05 Jul 2022 12:38:15 +0100
python-django (2:4.0.5-2) unstable; urgency=medium
[ Lena Voytek ]
* Add updated version of SQLite 3.37+ / test_custom_fields patch.
(Closes: #1012784)
[ Chris Lamb ]
* Add debian/gitlab-ci.yml.
- Allow some elements of the pipeline to fail.
-- Chris Lamb <lamby@debian.org> Thu, 16 Jun 2022 08:00:35 +0100
python-django (2:4.0.5-1) unstable; urgency=medium
* Upload 4.x stable release stream to unstable using the 4.0.5 bugfix
release. (The 4.x stream has been in experimental since September 2021.)
* Update debian/gbp.conf and debian/watch to match new version series.
* Update patches.
* No need to delete django-admin.py script anymore; does not exist in 4.x.
-- Chris Lamb <lamby@debian.org> Mon, 06 Jun 2022 12:31:50 +0100
python-django (2:3.2.13-1) unstable; urgency=high
* New upstream security release:
- CVE-2022-28346: Potential SQL injection in QuerySet.annotate(),
aggregate(), and extra().
QuerySet.annotate(), aggregate(), and extra() methods were subject to SQL
injection in column aliases, using a suitably crafted dictionary, with
dictionary expansion, as the **kwargs passed to these methods.
- CVE-2022-28347: Potential SQL injection via QuerySet.explain(**options)
on PostgreSQL.
QuerySet.explain() method was subject to SQL injection in option names,
using a suitably crafted dictionary, with dictionary expansion, as the
**options argument.
See <https://www.djangoproject.com/weblog/2022/apr/11/security-releases/>
for more info.
-- Chris Lamb <lamby@debian.org> Tue, 12 Apr 2022 18:22:30 +0200
python-django (2:3.2.12-2) unstable; urgency=medium
* Fix a traceback around the handling of RequestSite/get_current_site() due
to a circular import by backporting commit 78163d1a from upstream. Thanks
to Raphaël Hertzog for the report. (Closes: #1003478)
-- Chris Lamb <lamby@debian.org> Tue, 22 Feb 2022 09:43:02 +0000
python-django (2:3.2.12-1) unstable; urgency=high
* New upstream security release:
- CVE-2022-22818: Possible XSS via {% debug %} template tag.
The {% debug %} template tag didn't properly encode the current context,
posing an XSS attack vector.
In order to avoid this vulnerability, {% debug %} no longer outputs
information when the DEBUG setting is False, and it ensures all context
variables are correctly escaped when the DEBUG setting is True.
- CVE-2022-23833: Denial-of-service possibility in file uploads.
Passing certain inputs to multipart forms could result in an
infinite loop when parsing files.
See <https://www.djangoproject.com/weblog/2022/feb/01/security-releases/>
for more information. (Closes: #1004752)
-- Chris Lamb <lamby@debian.org> Tue, 01 Feb 2022 09:28:58 -0800
python-django (2:3.2.11-2) unstable; urgency=medium
[ Chris Lamb ]
* Fix compatibility with SQLite 3.37+. (Closes: #1004464)
[ Salman Mohammadi]
* Drop references to the deprecated python3-memcache package.
[ Mattia Rizzolo ]
* Add a Breaks against python3-django-countries (<< 7,1~).
* Add a Breaks against python3-django-tables2 (<< 2.3.4) (see #985774).
-- Chris Lamb <lamby@debian.org> Fri, 28 Jan 2022 08:52:06 -0800
python-django (2:3.2.11-1) unstable; urgency=high
* New upstream security release:
- CVE-2021-45115: Denial-of-service possibility in
UserAttributeSimilarityValidator
UserAttributeSimilarityValidator incurred significant overhead evaluating
submitted password that were artificially large in relative to the
comparison values. On the assumption that access to user registration was
unrestricted this provided a potential vector for a denial-of-service
attack.
In order to mitigate this issue, relatively long values are now ignored
by UserAttributeSimilarityValidator.
- CVE-2021-45116: Potential information disclosure in dictsort template
filter
Due to leveraging the Django Template Language's variable resolution
logic, the dictsort template filter was potentially vulnerable to
information disclosure or unintended method calls, if passed a
suitably crafted key.
In order to avoid this possibility, dictsort now works with a
restricted resolution logic, that will not call methods, nor allow
indexing on dictionaries.
- CVE-2021-45452: Potential directory-traversal via Storage.save()
Storage.save() allowed directory-traversal if directly passed suitably
crafted file names.
See <https://www.djangoproject.com/weblog/2022/jan/04/security-releases/>
for more information. (Closes: #1003113)
-- Chris Lamb <lamby@debian.org> Tue, 04 Jan 2022 12:35:16 +0000
python-django (2:3.2.10-2) unstable; urgency=medium
* autopkgtest: give the tests names.
This allows to easily run any of them individually, and also is better
than having them called "command1" and "command2" in the autopkgtest
logs.
* Backport fixes for more Django ORM regressions.
Upstream issue: https://code.djangoproject.com/ticket/33282).
That regression affects src:lava in Debian.
The patches are:
- 0007-Refs-32786-Made-Query.clear_ordering-not-to-cause-si.patch
- 0008-Refs-32690-Altered-lookups-Query-rhs-alterations-dur.patch
- 0009-Fixed-33282-Fixed-a-crash-when-OR-ing-subquery-and-a.patch
-- Antonio Terceiro <terceiro@debian.org> Wed, 08 Dec 2021 15:11:52 -0300
python-django (2:3.2.10-1) unstable; urgency=medium
* New upstream release:
- CVE-2021-44420: Potential bypass of an upstream access control based on
URL paths:
Full details are available here:
<https://www.djangoproject.com/weblog/2021/dec/07/security-releases/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Tue, 07 Dec 2021 07:46:51 -0800
python-django (2:3.2.9-2) unstable; urgency=medium
* Team upload.
* Fix __in lookup crash when combining with filtered aggregates.
Fix for: https://code.djangoproject.com/ticket/32690
This issue affects src:lava, where work is being done towards Django 3.2
compatibility.
Upstream patch from:
https://github.com/django/django/commit/136ff592ad8aa8b7fa1e61435e5501cc98ce8573
* Add Breaks: on lava-server << 2021.11 (Closes: #996931)
* Add Breaks: on python-django-pyscss << 2.0.2-10 (Closes: #983618)
-- Antonio Terceiro <terceiro@debian.org> Wed, 10 Nov 2021 11:22:48 -0300
python-django (2:3.2.9-1) unstable; urgency=medium
* New upstream release.
<https://docs.djangoproject.com/en/3.2/releases/3.2.9/>
-- Chris Lamb <lamby@debian.org> Mon, 01 Nov 2021 16:13:55 +0000
python-django (2:3.2.8-1) unstable; urgency=medium
* New upstream bugfix release.
* Drop a patch applied upstream.
* Bump Standards-Version to 4.6.0.
-- Chris Lamb <lamby@debian.org> Tue, 05 Oct 2021 09:34:57 +0100
python-django (2:3.2.7-4) unstable; urgency=medium
* Skip a test that is fixed upstream (with a number of overlapping patches).
-- Chris Lamb <lamby@debian.org> Mon, 13 Sep 2021 09:03:27 +0100
python-django (2:3.2.7-3) unstable; urgency=medium
* Actually upload 3.2 branch to unstable...
-- Chris Lamb <lamby@debian.org> Thu, 09 Sep 2021 17:49:23 +0100
python-django (2:3.2.7-2) experimental; urgency=medium
* Upload 3.2 branch to unstable.
-- Chris Lamb <lamby@debian.org> Thu, 09 Sep 2021 15:51:11 +0100
python-django (2:3.2.7-1) experimental; urgency=medium
* New upstream bugfix release.
-- Chris Lamb <lamby@debian.org> Wed, 01 Sep 2021 10:46:07 +0100
python-django (2:3.2.6-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/3.2/releases/3.2.6/>
* Bump Standards-Version to 4.5.1.
-- Chris Lamb <lamby@debian.org> Mon, 02 Aug 2021 09:16:21 +0100
python-django (2:3.2.5-2) experimental; urgency=medium
* Don't symlink /usr/bin/django-admin to "django-admin.py"; ship the script
generated by the entry_points system instead, otherwise we introduce a
confusing "django-admin.py" deprecation message when using "django-admin".
(Closes: #991098)
-- Chris Lamb <lamby@debian.org> Thu, 15 Jul 2021 13:54:57 +0100
python-django (2:3.2.5-1) experimental; urgency=medium
* New upstream security release:
- CVE-2021-35042: Potential SQL injection via unsanitized
QuerySet.order_by() input.
Unsanitized user input passed to QuerySet.order_by() could bypass
intended column reference validation in path marked for deprecation
resulting in a potential SQL injection even if a deprecation warning is
emitted. As a mitigation, the strict column reference validation was
restored for the duration of the deprecation period. This regression
appeared in Django version 3.1 as a side effect of fixing another bug
(#31426).
For more information, please see:
<https://www.djangoproject.com/weblog/2021/jul/01/security-releases/>
-- Chris Lamb <lamby@debian.org> Thu, 01 Jul 2021 10:56:07 +0100
python-django (2:3.2.4-1) experimental; urgency=medium
* New upstream security release. (Closes: #989394)
- CVE-2021-33203: Potential directory traversal via admindocs
Staff members could use the admindocs TemplateDetailView view to
check the existence of arbitrary files. Additionally, if (and only
if) the default admindocs templates have been customized by the
developers to also expose the file contents, then not only the
existence but also the file contents would have been exposed.
As a mitigation, path sanitation is now applied and only files
within the template root directories can be loaded.
This issue has low severity, according to the Django security
policy.
Thanks to Rasmus Lerchedahl Petersen and Rasmus Wriedt Larsen from
the CodeQL Python team for the report.
- CVE-2021-33571: Possible indeterminate SSRF, RFI, and LFI attacks
since validators accepted leading zeros in IPv4 addresses
URLValidator, validate_ipv4_address(), and
validate_ipv46_address() didn't prohibit leading zeros in octal
literals. If you used such values you could suffer from
indeterminate SSRF, RFI, and LFI attacks.
validate_ipv4_address() and validate_ipv46_address() validators
were not affected on Python 3.9.5+.
This issue has medium severity, according to the Django security
policy.
* Bump Standards-Version to 4.5.1.
-- Chris Lamb <lamby@debian.org> Wed, 02 Jun 2021 16:08:13 +0100
python-django (2:3.2.3-1) experimental; urgency=medium
* New upstream release.
<https://docs.djangoproject.com/en/3.2/releases/3.2.3/>
-- Chris Lamb <lamby@debian.org> Thu, 13 May 2021 10:25:49 +0100
python-django (2:3.2.2-1) experimental; urgency=medium
* New upstream security release:
- CVE-2021-32052: Header injection possibility since URLValidator accepted
newlines in input on Python 3.9.5+. (Closes: #988136)
- Full release notes:
<https://www.djangoproject.com/weblog/2021/may/06/security-releases/>
-- Chris Lamb <lamby@debian.org> Thu, 06 May 2021 13:04:03 +0100
python-django (2:3.2.1-1) experimental; urgency=medium
* New upstream security release:
- CVE-2021-31542: Potential directory-traversal via uploaded files.
(Closes: #988053)
- Full release notes:
<https://www.djangoproject.com/weblog/2021/may/04/security-releases/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Tue, 04 May 2021 12:59:07 +0100
python-django (2:3.2-1) experimental; urgency=medium
* New upstream major release:
- Full release notes: <https://docs.djangoproject.com/en/3.2/releases/3.2/>
- CVE-2021-28658: The MultiPartParser class allowed directory-traversal
via uploaded files via maliciously crafted filenames. (Closes: #986447)
-- Chris Lamb <lamby@debian.org> Tue, 06 Apr 2021 11:38:48 +0100
python-django (2:3.2~rc1-1) experimental; urgency=medium
* New upstream release candidate.
<https://www.djangoproject.com/weblog/2021/mar/18/django-32-rc1/#s-id5>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Fri, 19 Mar 2021 09:56:40 +0000
python-django (2:3.2~beta1-1) experimental; urgency=medium
* New upstream beta release.
<https://www.djangoproject.com/weblog/2021/feb/19/django-32-beta-1-released/>
* Apply wrap-and-sort -sa.
-- Chris Lamb <lamby@debian.org> Fri, 19 Feb 2021 16:13:21 +0000
python-django (2:3.2~alpha1-2) experimental; urgency=medium
* Apply security fix from upstream:
- CVE-2021-23336: Prevent a web cache poisoning attack via "parameter
cloaking". Django contains a copy of urllib.parse.parse_qsl() which was
added to backport some security fixes. A further security fix has been
issued recently such that parse_qsl() no longer allows using ";" as a
query parameter separator by default. (Closes: #983090)
<https://www.djangoproject.com/weblog/2021/feb/19/security-releases/>
-- Chris Lamb <lamby@debian.org> Fri, 19 Feb 2021 09:28:42 +0000
python-django (2:3.2~alpha1-1) experimental; urgency=medium
* New upstream alpha release.
<https://www.djangoproject.com/weblog/2021/jan/19/django-32-alpha-1-released/>
* Refresh patches.
* Drop no-upstream-changelog overrides; removed from Lintian.
-- Chris Lamb <lamby@debian.org> Wed, 20 Jan 2021 09:27:49 +0000
python-django (2:3.1.5-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/3.1/releases/3.1.5/>
-- Chris Lamb <lamby@debian.org> Mon, 04 Jan 2021 12:45:20 +0000
python-django (2:3.1.4-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/3.1/releases/3.1.4/>
* Bump Standards-Version to 4.5.1.
-- Chris Lamb <lamby@debian.org> Tue, 01 Dec 2020 11:25:32 +0000
python-django (2:3.1.3-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/stable/releases/3.1.3/>
-- Chris Lamb <lamby@debian.org> Tue, 03 Nov 2020 11:59:29 +0000
python-django (2:3.1.2-1) experimental; urgency=medium
* New upstream bugfix release.
<https://www.djangoproject.com/weblog/2020/oct/01/django-bugfix-release-312/>
* Update Maintainer field with new Debian Python Team contact address.
* Update Vcs-* fields with new Debian Python Team Salsa layout.
-- Chris Lamb <lamby@debian.org> Thu, 01 Oct 2020 10:06:16 +0100
python-django (2:3.1.1-1) experimental; urgency=medium
* New upstream security release to address CVE-2020-24583, CVE-2020-24584.
(Closes: #969367)
<https://www.djangoproject.com/weblog/2020/sep/01/security-releases/>
-- Chris Lamb <lamby@debian.org> Tue, 01 Sep 2020 12:32:23 +0100
python-django (2:3.1-2) experimental; urgency=medium
* Set the PYTHONPATH in the autopkgtests in the same way that we do in
debian/rules. (Closes: #968577)
-- Chris Lamb <lamby@debian.org> Mon, 17 Aug 2020 23:11:30 +0100
python-django (2:3.1-1) experimental; urgency=medium
* New upstream release.
<https://docs.djangoproject.com/en/3.1/releases/3.1/>
-- Chris Lamb <lamby@debian.org> Tue, 04 Aug 2020 10:11:43 +0100
python-django (2:3.1~rc1-1) experimental; urgency=medium
* New upstream release candidate release.
<https://www.djangoproject.com/weblog/2020/jul/20/django-31-release-candidate-1-released/>
-- Chris Lamb <lamby@debian.org> Mon, 20 Jul 2020 11:43:40 +0100
python-django (2:3.1~beta1-1) experimental; urgency=medium
* New upstream beta release.
<https://www.djangoproject.com/weblog/2020/jun/15/django-31-beta-1-released/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Mon, 15 Jun 2020 11:30:39 +0100
python-django (2:3.0.7-2) experimental; urgency=medium
* Fix a regression in the handling of CVE-2020-13596.
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Sat, 13 Jun 2020 15:15:34 +0100
python-django (2:3.0.7-1) experimental; urgency=medium
* New upstream security release.
<https://www.djangoproject.com/weblog/2020/jun/03/security-releases/>
-- Chris Lamb <lamby@debian.org> Wed, 03 Jun 2020 21:16:00 +0100
python-django (2:3.0.6-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/3.0/releases/3.0.6/>
-- Chris Lamb <lamby@debian.org> Mon, 04 May 2020 19:33:25 +0100
python-django (2:3.0.5-1) experimental; urgency=medium
* New upstream release.
<https://docs.djangoproject.com/en/3.0/releases/3.0.5/>
* Refresh all patches.
-- Chris Lamb <lamby@debian.org> Wed, 01 Apr 2020 10:35:42 +0100
python-django (2:3.0.4-1) experimental; urgency=medium
* New upstream security release. (Closes: #953102)
<https://www.djangoproject.com/weblog/2020/mar/04/security-releases/>
* Bump Standards-Version to 4.5.0.
* Refresh debian/patches/0004-Use-locally-installed-documentation-sources.patch.
-- Chris Lamb <lamby@debian.org> Wed, 04 Mar 2020 08:22:30 -0800
python-django (2:3.0.2-1) experimental; urgency=medium
* New upstream bugfix release.
<https://www.djangoproject.com/weblog/2020/jan/02/django-bugfix-release-302/>
* Add python3-selenium to test-dependencies and to a runtime "Suggests".
(Closes: #947549)
-- Chris Lamb <lamby@debian.org> Thu, 02 Jan 2020 10:52:39 +0000
python-django (2:3.0.1-1) experimental; urgency=medium
* New upstream security release.
<https://www.djangoproject.com/weblog/2019/dec/18/security-releases/>
(Closes: #946937)
-- Chris Lamb <lamby@debian.org> Mon, 30 Dec 2019 10:44:01 +0000
python-django (2:3.0-1) experimental; urgency=medium
* New upstream release.
<https://www.djangoproject.com/weblog/2019/dec/02/django-3-released/>
-- Chris Lamb <lamby@debian.org> Mon, 02 Dec 2019 12:24:50 +0000
python-django (2:3.0~rc1-1) experimental; urgency=medium
* New upstream release candidate release.
<https://www.djangoproject.com/weblog/2019/nov/18/django-30-release-candidate-1-released/>
-- Chris Lamb <lamby@debian.org> Mon, 18 Nov 2019 11:25:38 -0500
python-django (2:3.0~beta1-1) experimental; urgency=medium
* New upstream beta release.
<https://www.djangoproject.com/weblog/2019/oct/14/django-30-beta-1-released/>
* Bump Standards-Version to 4.4.1.
* wrap-and-sort -sa.
-- Chris Lamb <lamby@debian.org> Mon, 14 Oct 2019 11:11:10 -0700
python-django (2:3.0~alpha1-1) experimental; urgency=medium
* New upstream alpha release.
<https://www.djangoproject.com/weblog/2019/sep/10/django-30-alpha-1-released/>
* Refresh all patches.
* Add asgiref to build and runtime dependencies.
* Update debian/copyright.
-- Chris Lamb <lamby@debian.org> Tue, 10 Sep 2019 11:22:45 +0100
python-django (2:2.2.24-1) unstable; urgency=medium
* New upstream security release. (Closes: #989394)
- CVE-2021-33203: Potential directory traversal via admindocs
Staff members could use the admindocs TemplateDetailView view to
check the existence of arbitrary files. Additionally, if (and only
if) the default admindocs templates have been customized by the
developers to also expose the file contents, then not only the
existence but also the file contents would have been exposed.
As a mitigation, path sanitation is now applied and only files
within the template root directories can be loaded.
This issue has low severity, according to the Django security
policy.
Thanks to Rasmus Lerchedahl Petersen and Rasmus Wriedt Larsen from
the CodeQL Python team for the report.
- CVE-2021-33571: Possible indeterminate SSRF, RFI, and LFI attacks
since validators accepted leading zeros in IPv4 addresses
URLValidator, validate_ipv4_address(), and
validate_ipv46_address() didn't prohibit leading zeros in octal
literals. If you used such values you could suffer from
indeterminate SSRF, RFI, and LFI attacks.
validate_ipv4_address() and validate_ipv46_address() validators
were not affected on Python 3.9.5+.
This issue has medium severity, according to the Django security
policy.
-- Chris Lamb <lamby@debian.org> Wed, 02 Jun 2021 16:15:13 +0100
python-django (2:2.2.23-1) unstable; urgency=medium
* New upstream release.
<https://docs.djangoproject.com/en/3.2/releases/2.2.23/>
-- Chris Lamb <lamby@debian.org> Thu, 13 May 2021 10:41:04 +0100
python-django (2:2.2.22-1) unstable; urgency=medium
* New upstream security release:
- CVE-2021-32052: Header injection possibility since URLValidator accepted
newlines in input on Python 3.9.5+. (Closes: #988136)
- Full release notes:
<https://www.djangoproject.com/weblog/2021/may/06/security-releases/>
-- Chris Lamb <lamby@debian.org> Thu, 06 May 2021 15:52:24 +0100
python-django (2:2.2.21-1) unstable; urgency=medium
* New upstream security release:
- CVE-2021-31542: Potential directory-traversal via uploaded files.
(Closes: #988053)
- Full release notes:
<https://www.djangoproject.com/weblog/2021/may/04/security-releases/>
-- Chris Lamb <lamby@debian.org> Tue, 04 May 2021 13:07:54 +0100
python-django (2:2.2.20-1) unstable; urgency=medium
* New upstream security release:
- CVE-2021-28658: The MultiPartParser class allowed directory-traversal
via uploaded files via maliciously crafted filenames. (Closes: #986447)
-- Chris Lamb <lamby@debian.org> Tue, 06 Apr 2021 11:44:51 +0100
python-django (2:2.2.19-1) unstable; urgency=medium
* New upstream security release:
- CVE-2021-23336: Prevent a web cache poisoning attack via "parameter
cloaking". Django contains a copy of urllib.parse.parse_qsl() which was
added to backport some security fixes. A further security fix has been
issued recently such that parse_qsl() no longer allows using ";" as a
query parameter separator by default. (Closes: #983090)
<https://www.djangoproject.com/weblog/2021/feb/19/security-releases/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Fri, 19 Feb 2021 09:22:37 +0000
python-django (2:2.2.18-1) unstable; urgency=medium
* New upstream security release:
- CVE-2021-3281: Potential directory-traversal via archive.extract().
The django.utils.archive.extract() function, used by startapp --template
and startproject --template, allowed directory-traversal via an archive
with absolute paths or relative paths with dot segments.
(Closes: #981562)
<https://www.djangoproject.com/weblog/2021/feb/01/security-releases/>
* Drop 0006-Fixed-31850-Fixed-BasicExtractorTests.test_extractio.patch;
applied upstream.
-- Chris Lamb <lamby@debian.org> Mon, 01 Feb 2021 11:59:58 +0000
python-django (2:2.2.17-2) unstable; urgency=medium
* Fix compatibility with xgettext 0.21. (Closes: #978263)
* Move to debian/watch file version 4.
* Bump Standards-Version to 4.5.1.
-- Chris Lamb <lamby@debian.org> Sun, 27 Dec 2020 16:42:36 +0000
python-django (2:2.2.17-1) unstable; urgency=medium
[ Chris Lamb ]
* New upstream bugfix release.
<https://docs.djangoproject.com/en/stable/releases/2.2.17/>
[ Ondřej Nový ]
* d/control: Update Maintainer field with new Debian Python Team
contact address.
* d/control: Update Vcs-* fields with new Debian Python Team Salsa
layout.
-- Chris Lamb <lamby@debian.org> Tue, 03 Nov 2020 10:46:54 +0000
python-django (2:2.2.16-1) unstable; urgency=medium
* New upstream security release to address CVE-2020-24583, CVE-2020-24584.
(Closes: #969367)
<https://www.djangoproject.com/weblog/2020/sep/01/security-releases/>
-- Chris Lamb <lamby@debian.org> Tue, 01 Sep 2020 12:21:39 +0100
python-django (2:2.2.15-2) unstable; urgency=medium
* Set the PYTHONPATH in the autopkgtests in the same way that we do in
debian/rules. (Closes: #968577)
-- Chris Lamb <lamby@debian.org> Mon, 17 Aug 2020 23:02:17 +0100
python-django (2:2.2.15-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/3.0/releases/2.2.15/>
* Move to compat level 13.
-- Chris Lamb <lamby@debian.org> Mon, 03 Aug 2020 10:30:30 +0100
python-django (2:2.2.14-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/3.0/releases/2.2.14/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Wed, 01 Jul 2020 15:23:50 +0100
python-django (2:2.2.13-2) unstable; urgency=medium
* Backport a regression in the handling of CVE-2020-13254.
-- Chris Lamb <lamby@debian.org> Fri, 12 Jun 2020 11:08:07 +0100
python-django (2:2.2.13-1) unstable; urgency=medium
* New upstream security release.
<https://www.djangoproject.com/weblog/2020/jun/03/security-releases/>
* Drop from debian/source/include-binaries the file
debian/patches/0006-Fixed-a-missing-pyc-test-file-in-source-distribution.patch.
-- Chris Lamb <lamby@debian.org> Wed, 03 Jun 2020 20:41:57 +0100
python-django (2:2.2.12-1) unstable; urgency=medium
* New upstream release.
<https://docs.djangoproject.com/en/3.0/releases/2.2.12/>
-- Chris Lamb <lamby@debian.org> Wed, 01 Apr 2020 10:43:19 +0100
python-django (2:2.2.11-1) unstable; urgency=medium
[ Chris Lamb ]
* New upstream security release. (Closes: #953102)
<https://www.djangoproject.com/weblog/2020/mar/04/security-releases/>
[ Mattia Rizzolo ]
* Add a Breaks against python3-django-filters (<< 2.1.0).
* Mark python-django-doc as Multi-Arch:foreign (via the Multi-Arch hinter).
-- Chris Lamb <lamby@debian.org> Wed, 04 Mar 2020 08:01:27 -0800
python-django (2:2.2.10-1) unstable; urgency=medium
* New upstream security release. (Closes: #950581)
<https://www.djangoproject.com/weblog/2020/feb/03/security-releases/>
* Bump Standards-Version to 4.5.0.
-- Chris Lamb <lamby@debian.org> Tue, 04 Feb 2020 17:19:01 +0100
python-django (2:2.2.9-2) unstable; urgency=medium
* Add python3-selenium to test-dependencies and to a runtime "Suggests".
(Closes: #947549)
-- Chris Lamb <lamby@debian.org> Sat, 28 Dec 2019 11:11:37 +0000
python-django (2:2.2.9-1) unstable; urgency=medium
* New upstream security release. (Closes: #946937)
<https://www.djangoproject.com/weblog/2019/dec/18/security-releases/>
-- Chris Lamb <lamby@debian.org> Sat, 28 Dec 2019 11:11:32 +0000
python-django (2:2.2.8-1) unstable; urgency=medium
* New upstream security release.
<https://www.djangoproject.com/weblog/2019/dec/02/security-releases/>
-- Chris Lamb <lamby@debian.org> Mon, 02 Dec 2019 12:36:34 +0000
python-django (2:2.2.7-1) unstable; urgency=medium
[ Chris Lamb ]
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.2/releases/2.2.7/>
[ Ondřej Nový ]
* Bump Standards-Version to 4.4.1.
-- Chris Lamb <lamby@debian.org> Mon, 04 Nov 2019 10:59:01 -0800
python-django (2:2.2.6-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.2/releases/2.2.6/>
-- Chris Lamb <lamby@debian.org> Tue, 01 Oct 2019 10:44:50 +0100
python-django (2:2.2.5-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.2/releases/2.2.5/>
-- Chris Lamb <lamby@debian.org> Mon, 02 Sep 2019 14:07:48 +0100
python-django (2:2.2.4-1) unstable; urgency=medium
* New upstream security release. (Closes: #934026)
<https://www.djangoproject.com/weblog/2019/aug/01/security-releases/>
-- Chris Lamb <lamby@debian.org> Mon, 02 Sep 2019 14:02:43 +0100
python-django (2:2.2.3-5) unstable; urgency=medium
[ Chris Lamb ]
* Drop Pre-Depends on version of dpkg that is now satisfied in oldoldstable.
[ Ondřej Nový ]
* Bump Standards-Version to 4.4.0
-- Chris Lamb <lamby@debian.org> Wed, 24 Jul 2019 11:36:15 -0300
python-django (2:2.2.3-4) unstable; urgency=medium
* Fixup debian/python-django-doc.doc-base to refer to the new location(s) of
the documentation. (Closes: #931652)
-- Chris Lamb <lamby@debian.org> Mon, 08 Jul 2019 21:49:47 -0300
python-django (2:2.2.3-3) unstable; urgency=medium
* python3-mysqlclient 1.3.13 or newer is now required so add a "Breaks" on
versions older than this. Thanks to Zhang Jingqiang for the report.
(Closes: #931592)
* Drop "Python 3 version" from package description; we only have this
version now.
* Run `wrap-and-sort -sa`.
-- Chris Lamb <lamby@debian.org> Mon, 08 Jul 2019 09:57:25 -0300
python-django (2:2.2.3-2) unstable; urgency=medium
* Upload (Python 3.x-only) branch to unstable after the release of
Debian "buster".
* Update debian/gbp.conf to refer to debian/sid after merge.
-- Chris Lamb <lamby@debian.org> Sun, 07 Jul 2019 11:59:04 -0300
python-django (2:2.2.3-1) experimental; urgency=medium
* New upstream security release.
<https://www.djangoproject.com/weblog/2019/jul/01/security-releases/>
(Closes: #931316)
-- Chris Lamb <lamby@debian.org> Mon, 01 Jul 2019 16:56:16 -0300
python-django (2:2.2.1-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.2/releases/2.2.1/>
-- Chris Lamb <lamby@debian.org> Wed, 01 May 2019 10:53:33 +0100
python-django (2:2.2-1) experimental; urgency=medium
* New upstream realease.
<https://docs.djangoproject.com/en/2.2/releases/2.2/>
-- Chris Lamb <lamby@debian.org> Mon, 01 Apr 2019 21:45:56 +0200
python-django (2:2.2~rc1-1) experimental; urgency=medium
* New upstream release candidate release.
<https://www.djangoproject.com/weblog/2019/mar/18/django-22-rc1/>
* Drop a test that fails with "OverflowError: timestamp out of range for
platform time_t" on 32-bit platforms. (Closes: #924784)
-- Chris Lamb <lamby@debian.org> Mon, 18 Mar 2019 10:30:05 -0400
python-django (2:2.2~beta1-1) experimental; urgency=medium
* New upstream beta release.
<https://www.djangoproject.com/weblog/2019/feb/11/django-22-beta-1-released/>
-- Chris Lamb <lamby@debian.org> Mon, 11 Feb 2019 14:47:30 +0100
python-django (2:2.2~alpha1-1) experimental; urgency=medium
* New upstream alpha release.
<https://www.djangoproject.com/weblog/2019/jan/17/django-22-alpha-1/>
-- Chris Lamb <lamby@debian.org> Thu, 17 Jan 2019 18:19:06 +0000
python-django (2:2.1.5-1) experimental; urgency=medium
* New upstream security release:
- CVE-2019-3498: Content spoofing possibility in the default 404 page.
(Closes: #918230)
<https://www.djangoproject.com/weblog/2019/jan/04/security-releases/>
* Drop 0007-Fixed-29182-Adjusted-SQLite-schema-table-alteration-.patch;
applied upstream. (re. #915626)
* Move to debhelper-compat virtual package.
* debian/control:
- Bump debhelper compatibility level to 12.
- Bump Standards-Version to 4.3.0.
-- Chris Lamb <lamby@debian.org> Fri, 04 Jan 2019 18:49:35 +0100
python-django (2:2.1.4-2) experimental; urgency=medium
* Apply patch from upstream to fix compatibility with SQLite 3.26.
(Closes: #915626)
-- Chris Lamb <lamby@debian.org> Fri, 07 Dec 2018 13:53:33 +0100
python-django (2:2.1.4-1) experimental; urgency=medium
* New upstream bugfix release:
<https://docs.djangoproject.com/en/stable/releases/2.1.4/>
* Refresh patches.
-- Chris Lamb <lamby@debian.org> Mon, 03 Dec 2018 22:57:24 +0100
python-django (2:2.1.3-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.1/releases/2.1.3/>
-- Chris Lamb <lamby@debian.org> Thu, 01 Nov 2018 15:39:14 +0000
python-django (2:2.1.2-2) experimental; urgency=medium
* Default to supporting Spatialite >= 4.2. (Closes: #910240)
* debian/control: Update libgdal's SONAME in Suggests.
* Add libsqlite3-mod-spatialite to Suggests.
-- Chris Lamb <lamby@debian.org> Thu, 04 Oct 2018 10:22:37 +0100
python-django (2:2.1.2-1) experimental; urgency=medium
* New upstream security release.
CVE-2018-16984: Password hash disclosure to "view only" admin users. If an
admin user has the change permission to the user model, only part of the
password hash is displayed in the change form. Admin users with the view
(but not change) permission to the user model were displayed the entire
hash. While it's typically infeasible to reverse a strong password hash,
if a site uses weaker password hashing algorithms such as MD5 or SHA1,
it could be a problem. (Closes: #910016)
* Move all documentation to /usr/share/doc.
* Really remove all license files (eg. LICENSE-SELECT2.md).
* debian/tests/control: Drop deprecated needs-recommends test restriction.
-- Chris Lamb <lamby@debian.org> Mon, 01 Oct 2018 14:23:27 +0100
python-django (2:2.1.1-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.1/releases/2.1.1/>
* Bump Standards-Version to 4.2.1.
-- Chris Lamb <lamby@debian.org> Sat, 01 Sep 2018 09:28:27 +0100
python-django (2:2.1-1) experimental; urgency=medium
* New upstream release.
- CVE-2018-14574: Open redirect possibility in CommonMiddleware.
(Closes: #905216)
-- Chris Lamb <lamby@debian.org> Wed, 01 Aug 2018 22:59:20 +0800
python-django (2:2.1~rc1-1) experimental; urgency=medium
* New upstream RC release.
<https://www.djangoproject.com/weblog/2018/jul/18/django-21-rc1/>
* Bump Standards-Version to 4.1.5.
-- Chris Lamb <lamby@debian.org> Thu, 19 Jul 2018 12:11:45 +0800
python-django (2:2.1~beta1-1) experimental; urgency=medium
* New upstream beta release. (Closes: #901526)
<https://www.djangoproject.com/weblog/2018/jun/18/django-21-beta-1-released/>.
* Patches:
- Drop 0006-Fixed-a-missing-pyc-test-file-in-source-distribution.patch;
applied upstream.
- Refresh all patches.
- Set gbp-pq's --abbrev's default to 12 in gbp.conf.
* Drop "old" X-Python-Version header in debian/control.
* debian/rules:
- Also remove LICENSE.md files.
- Delete all extra license files, not just the ones in the main package.
- Move dropping of extra license files to dh_installdocs.
-- Chris Lamb <lamby@debian.org> Tue, 19 Jun 2018 09:10:39 +0200
python-django (2:2.1~alpha1-1) experimental; urgency=medium
* New upstream alpha release.
<https://docs.djangoproject.com/en/dev/releases/2.1/>.
- Refresh 0002-use_debian_geoip_database_as_default.diff.
-- Chris Lamb <lamby@debian.org> Fri, 18 May 2018 10:52:01 +0200
python-django (2:2.0.5-1) experimental; urgency=medium
* New upstream bugfix release
<https://docs.djangoproject.com/en/2.0/releases/2.0.5/>.
- Rebase and refresh patches.
* Bump Standards-Version to 4.1.4.
-- Chris Lamb <lamby@debian.org> Wed, 02 May 2018 09:30:23 -0700
python-django (2:2.0.4-1) experimental; urgency=medium
* New upstream bugfix release
<https://docs.djangoproject.com/en/2.0/releases/2.0.4/>.
* Update Vcs-Git and Vcs-Browser to salsa.
* Bump debhelper compatibility level to 11.
* Drop debian/python-django-doc.examples.
-- Chris Lamb <lamby@debian.org> Tue, 03 Apr 2018 09:29:46 +0100
python-django (2:2.0.3-1) experimental; urgency=medium
* New upstream security release:
- CVE-2018-7536: Denial-of-service possibility in urlize and urlizetrunc
template filters.
- CVE-2018-7537: Denial-of-service possibility in truncatechars_html and
truncatewords_html template filters
-- Chris Lamb <lamby@debian.org> Tue, 06 Mar 2018 22:19:24 -0800
python-django (2:2.0.2-1) experimental; urgency=medium
* New upstream security release:
- CVE-2018-6188: A regression in Django 1.11.8 made
django.contrib.auth.forms.AuthenticationForm run its
confirm_login_allowed() method even if an incorrect password is entered.
This can leak information about a user, depending on what messages
confirm_login_allowed() raises. If confirm_login_allowed() isn't
overridden, an attacker enter an arbitrary username and see if that user
has been set to is_active=False. If confirm_login_allowed() is
overridden, more sensitive details could be leaked.
* Use HTTPS Format: URI in debian/copyright.
-- Chris Lamb <lamby@debian.org> Thu, 01 Feb 2018 17:57:13 +0000
python-django (2:2.0.1-1) experimental; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.0/releases/2.0.1/>
* Bump Standards-Version to 4.1.3.
-- Chris Lamb <lamby@debian.org> Tue, 02 Jan 2018 10:53:43 +0000
python-django (2:2.0-1) experimental; urgency=medium
* New upstream stable release.
https://docs.djangoproject.com/en/2.0/releases/2.0/
-- Chris Lamb <lamby@debian.org> Sat, 02 Dec 2017 18:36:33 +0000
python-django (1:2.0~rc1-1) experimental; urgency=medium
* New upstream release candidate.
<https://www.djangoproject.com/weblog/2017/nov/15/django-20-release-candidate-1-released/>
* Drop trailing whitespace in debian/changelog.
-- Chris Lamb <lamby@debian.org> Thu, 16 Nov 2017 09:55:14 +0900
python-django (1:2.0~beta1-1) experimental; urgency=medium
* New upstream beta release of Django 2.0.
<https://www.djangoproject.com/weblog/2017/oct/16/django-20-beta-1-released/>
* debian/watch:
- Use HTTPS URI to avoid debian-watch-uses-insecure-uri warning.
- uversionmangle alpha releases prefixed with "a" (eg. 2.0a1 → 2.0~alpha1)
* Bump Standards-Version to 4.1.1.
-- Chris Lamb <lamby@debian.org> Mon, 16 Oct 2017 23:26:52 -0400
python-django (1:2.0~alpha1-2) experimental; urgency=medium
New upstream alpha release of Django 2.0.
<https://docs.djangoproject.com/en/dev/releases/2.0/>
* Drop Python 2.x support:
- Remove python-django and python-django-common binary packages and
splitting logic.
- Drop our local debian/django-admin wrapper, making /usr/bin/django-admin
a symlink to the version under dist-packages.
- Consolidate a number of files under debian/.
- Simplify autopkgtests to reflect lack of Python 2.x support.
* deban/control:
- Add Replaces/Breaks on python-django and python-django-common.
- Add Replaces/Breaks/Provodes on python-django-common.
- Bump X-Python-Version to 3.5.
- Bump Standards-Version to 4.1.0.
- Move python-doc Depends to python3-doc.
- Drop extra whitespaces.
- Move sphinx-doc Build-Dependency to python3-sphinx.
* debian/rules:
- Correct find(1) call to delete all license files.
- Drop explicitly excluding .js and objects.inv files; this is done by
dh_compress now.
- Be explicit when removing embedded Javascript libraries.
* debian/patches/*:
- Update 0002-use_debian_geoip_database_as_default.diff to reflect new
location of base.py.
- Drop 0003-Fixed-test_middleware_classes_headers-if-Django-sour.patch;
merged upstream.
- Refresh 0004-Use-locally-installed-documentation-sources.patch.
- Ensure the default shebang for new projects uses Python 3.x.
- Make patches "pq import -> pq export clean".
* Lintian:
- Add "python-script-but-no-python-dep" override for "manage.py-tpl". This
is not a true Python script, it's a template only.
- Add source overrides for "source-contains-prebuilt-javascript-object"
files under django/contrib/admin/static/admin/js. These are not bugs
and/or upstream will not remove them from the orig tarball anyway.
- Add overrides for "no-upstream-changelog"; we ship upstream's excellent
release notes in the python-django-doc package.
- Drop unnecessary overrides.
-- Chris Lamb <lamby@debian.org> Tue, 26 Sep 2017 18:01:30 +0100
python-django (1:1.11.22-1) unstable; urgency=medium
* New upstream security release.
<https://www.djangoproject.com/weblog/2019/jul/01/security-releases/>
(Closes: #931316)
-- Chris Lamb <lamby@debian.org> Mon, 01 Jul 2019 17:09:52 -0300
python-django (1:1.11.21-1) unstable; urgency=medium
* New upstream security release.
- CVE-2019-12308: XSS in Django admin via AdminURLFieldWidget
(Closes: #929927)
-- Luke W Faraone <lfaraone@debian.org> Wed, 05 Jun 2019 00:07:07 +0000
python-django (1:1.11.20-1) unstable; urgency=medium
* New upstream security release.
- CVE-2019-6975: Fix memory exhaustion in utils.numberformat.format().
(Closes: #922027)
-- Chris Lamb <lamby@debian.org> Mon, 11 Feb 2019 19:08:53 +0100
python-django (1:1.11.18-1) unstable; urgency=medium
* New upstream security release:
- CVE-2019-3498: Content spoofing possibility in the default 404 page.
(Closes: #918230)
<https://www.djangoproject.com/weblog/2019/jan/04/security-releases/>
* Move to debhelper-compat virtual package.
* Bump debhelper compatibility level to 12.
* Bump Standards-Version to 4.3.0.
* 0007-Fixed-29182-Adjusted-SQLite-schema-table-.patch: Fix grammar/spelling
error in upstream patch.
-- Chris Lamb <lamby@debian.org> Fri, 04 Jan 2019 18:23:06 +0100
python-django (1:1.11.17-2) unstable; urgency=medium
* Backport patch from upstream to fix compatibility with SQLite 3.26.
(Closes: #915626)
-- Chris Lamb <lamby@debian.org> Fri, 07 Dec 2018 14:14:22 +0100
python-django (1:1.11.17-1) unstable; urgency=medium
* New upstream bugfix release.
- https://docs.djangoproject.com/en/stable/releases/1.11.17/
* Drop patches that have been applied upstream:
- 0005-Fix-SyntaxError-Generator-expression-must-be-parenth.patch,
- 0007-Refs-28814-Fixed-migrations-crash-with-namespace-pac.patch
- 0008-Refs-28814-Fixed-test_runner-failure-on-Python-3.7.patch
-- Chris Lamb <lamby@debian.org> Mon, 03 Dec 2018 22:34:53 +0100
python-django (1:1.11.16-4) unstable; urgency=medium
* Cherry-pick two patches from upstream to fix test failures under Python
3.7. Thanks to Gaudenz Steinlin for the in-depth investigation.
(Closes: #891753)
* Add libsqlite3-mod-spatialite to Build-Depends to ensure we test our patch
for Spatialite 4.2 introduced as part of the fix for #910240.
-- Chris Lamb <lamby@debian.org> Sun, 02 Dec 2018 23:13:07 +0100
python-django (1:1.11.16-3) unstable; urgency=medium
* Default to supporting Spatialite >= 4.2. (Closes: #910240)
* debian/control:
- Update libgdal's SONAME in Suggests.
- Add libsqlite3-mod-spatialite to Suggests.
-- Chris Lamb <lamby@debian.org> Thu, 04 Oct 2018 10:38:34 +0100
python-django (1:1.11.16-2) unstable; urgency=medium
* Fix broken contrib/admin/static/admin/{img,fonts}/README.txt symlinks.
(Closes: #910120)
* debian/rules:
- Rename PREFIX -> PREFIX2 variable for clarity.
- Use variables for the Python 2.x and 3.x "dist-packages" directories.
-- Chris Lamb <lamby@debian.org> Thu, 04 Oct 2018 09:31:33 +0100
python-django (1:1.11.16-1) unstable; urgency=medium
* New upstream bugfix release:
- Fix a race condition in QuerySet.update_or_create() that could result in
data loss. <https://code.djangoproject.com/ticket/29499>
* debian/tests/control: Drop deprecated needs-recommends test restriction.
* Move "fonts" and "img" README documentation to /usr/share/doc.
* Bump Standards-Version to 4.2.1.
-- Chris Lamb <lamby@debian.org> Mon, 01 Oct 2018 13:39:15 +0100
python-django (1:1.11.15-1) unstable; urgency=medium
* New upstream security release.
- CVE-2018-14574: Open redirect possibility in CommonMiddleware.
(Closes: #905216)
-- Chris Lamb <lamby@debian.org> Wed, 01 Aug 2018 23:06:03 +0800
python-django (1:1.11.14-1) unstable; urgency=medium
* New upstrem bugfix release.
<https://docs.djangoproject.com/en/2.0/releases/1.11.14/>
-- Chris Lamb <lamby@debian.org> Mon, 02 Jul 2018 17:49:29 +0100
python-django (1:1.11.13-2) unstable; urgency=medium
[ Chris Lamb ]
* Fix "SyntaxError: Generator expression must be parenthesized with
python3.7". (Closes: #902761)
[ Ondřej Nový ]
* d/control: Remove ancient X-Python-Version field
-- Chris Lamb <lamby@debian.org> Sat, 30 Jun 2018 19:37:08 +0100
python-django (1:1.11.13-1) unstable; urgency=medium
[ Chris Lamb ]
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.0/releases/1.11.13/>.
* Bump Standards-Version to 4.1.4.
[ Ondřej Nový ]
* d/tests: Use AUTOPKGTEST_TMP instead of ADTTMP
-- Chris Lamb <lamby@debian.org> Wed, 02 May 2018 08:51:18 -0700
python-django (1:1.11.12-1) unstable; urgency=medium
* New upstream bugfix release
<https://docs.djangoproject.com/en/2.0/releases/1.11.12/>.
* Bump debhelper compatibility level to 11.
* Drop debian/python-django-doc.examples.
* python-django-doc.doc-base: Update locations of documentation files as they
are installed to /usr/share/doc/python-django, not [...]/python-django-doc.
-- Chris Lamb <lamby@debian.org> Tue, 03 Apr 2018 09:51:51 +0100
python-django (1:1.11.11-1) unstable; urgency=medium
[ Chris Lamb ]
* New upstream security release:
- CVE-2018-7536: Denial-of-service possibility in urlize and urlizetrunc
template filters.
- CVE-2018-7537: Denial-of-service possibility in truncatechars_html and
truncatewords_html template filters
[ Ondřej Nový ]
* d/control: Set Vcs-* to salsa.debian.org
-- Chris Lamb <lamby@debian.org> Tue, 06 Mar 2018 22:44:12 -0800
python-django (1:1.11.10-1) unstable; urgency=medium
* New upstream security release:
- CVE-2018-6188: A regression in Django 1.11.8 made
django.contrib.auth.forms.AuthenticationForm run its
confirm_login_allowed() method even if an incorrect password is entered.
This can leak information about a user, depending on what messages
confirm_login_allowed() raises. If confirm_login_allowed() isn't
overridden, an attacker enter an arbitrary username and see if that user
has been set to is_active=False. If confirm_login_allowed() is
overridden, more sensitive details could be leaked.
* Use HTTPS "Format" URI in debian/copyright.
-- Chris Lamb <lamby@debian.org> Thu, 01 Feb 2018 17:42:06 +0000
python-django (1:1.11.9-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/2.0/releases/1.11.9/>
* Bump Standards-Version to 4.1.3.
* Update debian/python-django-common.lintian-overrides for updated Lintian
output.
-- Chris Lamb <lamby@debian.org> Tue, 02 Jan 2018 11:12:54 +0000
python-django (1:1.11.7-1) unstable; urgency=medium
* New upstream bugfix release.
<https://www.djangoproject.com/weblog/2017/nov/01/bugfix-release/>
* debian/watch: Only match 1.x versions on this branch.
-- Chris Lamb <lamby@debian.org> Thu, 02 Nov 2017 07:47:22 +0100
python-django (1:1.11.6-2) unstable; urgency=medium
* Add Breaks: openstack-dashboard (<< 3:12) to ensure this package gets
upgraded (etc.) first. The version in experimental (3:12.x) is supposed to
work with the newer python-django. (Closes: #880409)
* wrap-and-sort -sa.
* Use HTTPS URI in debian/watch.
* Tidy whitespace in debian/changelog.
-- Chris Lamb <lamby@debian.org> Wed, 01 Nov 2017 11:35:53 +0100
python-django (1:1.11.6-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/1.11/releases/1.11.6/>
* Build documentation using the Python 3 version of Sphinx to ease the
Python 2.x migration.
-- Chris Lamb <lamby@debian.org> Fri, 06 Oct 2017 15:45:44 +0100
python-django (1:1.11.5-2) unstable; urgency=medium
* Fix QuerySet.defer() with super and subclass fields. (Closes: #876816)
* Use --abbrev=7 when using git pq export.
-- Chris Lamb <lamby@debian.org> Tue, 26 Sep 2017 17:51:23 +0100
python-django (1:1.11.5-1) unstable; urgency=medium
* CVE-2017-12794: New upstream security release. (Closes: #874415)
<https://docs.djangoproject.com/en/dev/releases/1.11.5/>
-- Chris Lamb <lamby@debian.org> Tue, 05 Sep 2017 21:39:37 +0100
python-django (1:1.11.4-1) unstable; urgency=medium
* New upstream bugfix release.
<https://docs.djangoproject.com/en/1.11/releases/1.11.4/>
-- Chris Lamb <lamby@debian.org> Tue, 01 Aug 2017 14:27:31 -0400
python-django (1:1.11.3-1) unstable; urgency=medium
[ Chris Lamb ]
* New upstream bugfix release.
- Drop 0003-Fixed-test_middleware_classes_headers-if-Django-sour.patch as
it was merged upstream.
* Check DEB_BUILD_PROFILES consistently, not DEB_BUILD_OPTIONS.
[ Brian May ]
* Use locally installed intersphinx mapping sources. (Closes: #852512)
-- Chris Lamb <lamby@debian.org> Sun, 02 Jul 2017 15:56:22 +0100
python-django (1:1.11.2-2) unstable; urgency=medium
* Upload (LTS) release to unstable.
- Incorporate Python 3.6 compatibility. (Closes: #865053)
* Use !nocheck profile for build dependencies that are only required for
tests.
* Move to debhelper compatibility level 10.
* Bump Standards-Version to 4.0.0.
* wrap-and-sort -sa.
-- Chris Lamb <lamby@debian.org> Mon, 19 Jun 2017 11:27:46 +0800
python-django (1:1.11.2-1) experimental; urgency=medium
[ Chris Lamb ]
* New upstream minor release.
<https://docs.djangoproject.com/en/1.11/releases/1.11.2/>
* Backport patch from <https://code.djangoproject.com/ticket/26755> to
prevent test_middleware_classes_headers from failing if the Django source
is not writable. This should fix the autopkgtests. (Closes: #816435)
* Refresh all patches with ``pq import && pq export --renumber``.
[ Raphaël Hertzog ]
* Update README.source and debian/gbp.conf.
* Document a minimal Django packaging policy in
README.Django-packaging-policy. (Closes: #863514)
* Remove README.Debian which contained only outdated information.
* Drop FastCGI initscript, it's obsolete, WSGI is required nowadays.
* Drop migrate-south helper script as south is gone for a long time already.
* Add same documentation in python3-django as in python-django.
(Closes: #831838)
-- Chris Lamb <lamby@debian.org> Fri, 02 Jun 2017 09:38:16 +0100
python-django (1:1.11.1-3) experimental; urgency=medium
* Really add Build-Depends on libgdal-dev.
-- Chris Lamb <lamby@debian.org> Sat, 06 May 2017 20:32:33 +0200
python-django (1:1.11.1-2) experimental; urgency=medium
* Add missing Build-Depends on libgdal-dev due to new GIS tests.
-- Chris Lamb <lamby@debian.org> Sat, 06 May 2017 19:18:47 +0200
python-django (1:1.11.1-1) experimental; urgency=medium
* New upstream minor release.
<https://docs.djangoproject.com/en/1.11/releases/1.11.1/>
-- Chris Lamb <lamby@debian.org> Sat, 06 May 2017 16:33:25 +0200
python-django (1:1.11-1) experimental; urgency=medium
* New upstream stable release. (Closes: #859515, #859516)
-- Chris Lamb <lamby@debian.org> Wed, 05 Apr 2017 09:54:00 +0200
python-django (1:1.11~rc1-1) experimental; urgency=medium
* New upstream beta release.
-- Chris Lamb <lamby@debian.org> Wed, 22 Mar 2017 20:53:02 +0000
python-django (1:1.11~beta1-1) experimental; urgency=medium
* New upstream beta release.
* Update debian/gbp.conf.
* Drop taskset calls when running testsuite now that
<https://code.djangoproject.com/ticket/27741> has been resolved.
-- Chris Lamb <lamby@debian.org> Wed, 22 Feb 2017 07:43:29 +0800
python-django (1:1.11~alpha1-1) experimental; urgency=medium
* New upstream alpha release.
* Match/mangle upstream versions using (eg.) "b1" instead of "beta1" in
debian/watch.
* Drop now-unused source-is-missing Lintian overrides.
* Limit parallelism in testsuite to avoid FTBFS. See:
<https://code.djangoproject.com/ticket/27741>
-- Chris Lamb <lamby@debian.org> Wed, 25 Jan 2017 14:30:58 +1300
python-django (1:1.10~beta1-2) experimental; urgency=medium
* Need to bump Debian revision due to change of .dsc contents.
-- Chris Lamb <lamby@debian.org> Sun, 26 Jun 2016 12:22:46 +0200
python-django (1:1.10~beta1-1) experimental; urgency=medium
* New upstream beta release.
-- Chris Lamb <lamby@debian.org> Sun, 26 Jun 2016 10:24:45 +0200
python-django (1:1.9.7-2) unstable; urgency=medium
* Re-upload 1.9.7 to unstable with epoch.
-- Chris Lamb <lamby@debian.org> Sun, 26 Jun 2016 09:58:19 +0200
python-django (1.10~beta1-1) unstable; urgency=medium
[ Chris Lamb ]
* New upstream beta release.
* Drop fix-25761-add-traceback-attribute.patch; applied upstream.
[ Raphaël Hertzog ]
* Remove obsolete /etc/bash_completion.d/django_bash_completion on upgrade.
Closes: #801744
-- Chris Lamb <lamby@debian.org> Sat, 25 Jun 2016 19:17:49 +0200
python-django (1.9.7-1) unstable; urgency=medium
[ Raphaël Hertzog ]
* New upstream bugfix release.
* Bump python-sphinx build dependency to >= 1.3. Closes: #824108
* Drop build dependency on locales. C.UTF-8 that we currently use is part of
libc-bin.
[ Chris Lamb ]
* Remove duplicated "of of" in python-django's README.Debian.
-- Raphaël Hertzog <hertzog@debian.org> Tue, 14 Jun 2016 00:05:22 +0200
python-django (1.9.6-1) unstable; urgency=medium
* New upstream bugfix release.
-- Chris Lamb <lamby@debian.org> Sat, 07 May 2016 07:01:17 +0100
python-django (1.9.5-2) unstable; urgency=medium
* Drop the dir_to_symlink transition that was only really needed
for upgrades between versions 1.9~rc2 and 1.9.4. Closes: #821789
-- Raphaël Hertzog <hertzog@debian.org> Wed, 20 Apr 2016 17:47:05 +0200
python-django (1.9.5-1) unstable; urgency=medium
* New upstream bugfix release:
https://docs.djangoproject.com/en/1.9/releases/1.9.5/
* Fix the DEP-8 test suite (django-admin --with python3 failing
because ./manage.py does not have a good shebang).
* Update Standards-Version to 3.9.8.
* Add some lintian overrides.
* Tweak Vcs-Browser to use https.
* Drop obsolete parts of the copyright file.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 06 Apr 2016 18:05:42 +0200
python-django (1.9.4-1) unstable; urgency=high
[ Luke Faraone ]
* New upstream security release:
https://www.djangoproject.com/weblog/2016/mar/01/security-releases/
- CVE-2016-2512: Malicious redirect and possible XSS via user-supplied
redirect URLs containing basic auth
- CVE-2016-2513: User enumeration through timing difference on password
hasher work factor upgrade
Closes: #816434
[ Raphaël Hertzog ]
* Fix rules file to no longer mess with *_templates directories. They no
longer contain invalid .py files but only *-tpl template files that are
instantiated at runtime.
-- Luke Faraone <lfaraone@debian.org> Mon, 07 Mar 2016 17:09:54 +0000
python-django (1.9.2-1) unstable; urgency=medium
* New upstream security release fixing:
- CVE-2016-2048: User with "change" but not "add" permission can create
objects for ModelAdmin objects with save_as=True
Closes: #813448
-- Raphaël Hertzog <hertzog@debian.org> Tue, 02 Feb 2016 09:06:46 +0100
python-django (1.9.1-1) unstable; urgency=medium
* New upstream release.
-- Chris Lamb <lamby@debian.org> Mon, 04 Jan 2016 17:51:40 +0000
python-django (1.9-2) unstable; urgency=medium
[ Chris Lamb ]
* Use dpkg-maintscript-helper's dir_to_symlink to correctly replace the
app_template and project_template symlinks added in 1.9~rc2-2.
(Closes: #807683)
[ Raphaël Hertzog ]
* Add some DEP-8 tests testing "django-admin" and running the test suite
against the installed package. In both cases, we do it with python2 and
python3.
* Add python-tblib and python3-tblib to Build-Depends for the benefit of
the parallel testing feature of the test suite.
* Add "set -e" in the command line running the tests with all supported
versions so that it actually fails as soon as one version is failing
(and thus disallow later successes to shadow earlier failures).
-- Raphaël Hertzog <hertzog@debian.org> Wed, 30 Dec 2015 16:44:04 +0100
python-django (1.9-1) unstable; urgency=medium
* Upload to unstable
* Adjust uversionmangle in debian/watch to mangle "1.9rc2" scheme
(previously only "1.9-rc-2" would have matched).
-- Chris Lamb <lamby@debian.org> Thu, 03 Dec 2015 16:48:30 +0200
python-django (1.9~rc2-2) experimental; urgency=medium
* Move {app,project}_template to python-django-common to prevent
byte-compilation (via pycompile) on installation, causing failure. They are
not valid Python files until variables have been interpolated.
-- Chris Lamb <lamby@debian.org> Thu, 26 Nov 2015 14:53:11 +0200
python-django (1.9~rc2-1) experimental; urgency=medium
* New upstream release candidate.
* Add myself to Uploaders.
-- Chris Lamb <lamby@debian.org> Thu, 26 Nov 2015 10:14:15 +0200
python-django (1.8.7-2) unstable; urgency=high
* Rely on C.UTF-8 to run the tests instead of building our locale ourselves.
* Add debian/patches/fix-25761-add-traceback-attribute.patch:
new patch to ensure exceptions registered in __cause__ attributes
have a __traceback__ attribute. Closes: #802677
* Extend lintian overrides to cover more false positives of
source-is-missing.
* Cleanup debian/copyright for dropped/renamed files.
* Run tests for all supported Python versions.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 25 Nov 2015 16:16:10 +0100
python-django (1.8.7-1) unstable; urgency=high
* New upstream security release:
https://www.djangoproject.com/weblog/2015/nov/24/security-releases-issued/
It fixes:
- CVE-2015-8213: settings leak possibility in date template filter
-- Luke Faraone <lfaraone@debian.org> Wed, 25 Nov 2015 04:24:27 +0000
python-django (1.8.6-1) unstable; urgency=medium
* New upstream bugfix release.
-- Raphaël Hertzog <hertzog@debian.org> Sun, 15 Nov 2015 18:29:11 +0100
python-django (1.8.5-2) unstable; urgency=medium
* Upload to unstable.
-- Raphaël Hertzog <hertzog@debian.org> Mon, 02 Nov 2015 15:56:10 +0100
python-django (1.8.5-1) experimental; urgency=medium
* New upstream bugfix release:
https://www.djangoproject.com/weblog/2015/oct/03/bugfix-release-issued/
-- Raphaël Hertzog <hertzog@debian.org> Tue, 13 Oct 2015 11:37:24 +0200
python-django (1.8.4-1) experimental; urgency=medium
* New upstream security release:
https://www.djangoproject.com/weblog/2015/aug/18/security-releases/
It fixes:
- CVE-2015-5964: possible denial-of-service in logout() view
* Update debian/copyright to copyright-format 1.0.
-- Luke Faraone <lfaraone@debian.org> Wed, 19 Aug 2015 03:55:47 +0000
python-django (1.8.3-1) experimental; urgency=medium
* New upstream security release:
https://www.djangoproject.com/weblog/2015/jul/08/security-releases/
It fixes:
- CVE-2015-5143: possible denial-of-service by filling session store
- CVE-2015-5144: possible header injection since validators accept
newlines in input
- CVE-2015-5145: possible denial-of-service in URL validation
* Drop fix-assertRaisesMessage.patch and
fix-test-extended-length-storage.patch which have been merged upstream.
-- Raphaël Hertzog <hertzog@debian.org> Thu, 09 Jul 2015 01:53:02 +0200
python-django (1.8.2-1) experimental; urgency=medium
* New upstream security release:
https://www.djangoproject.com/weblog/2015/may/20/security-release/
* Install bash completion file into /usr/share/bash-completion/completions/
-- Raphaël Hertzog <hertzog@debian.org> Thu, 21 May 2015 15:59:36 +0200
python-django (1.8.1-1) experimental; urgency=medium
* New major upstream release:
https://docs.djangoproject.com/en/1.8/releases/1.8/
https://docs.djangoproject.com/en/1.8/releases/1.8.1/
* Refresh all patches.
* Drop 03_manpage.diff, merged upstream.
* Clean up rules since we can use the pristine docs directory, now
that they refer to django-admin and not django-admin.py
* Add jinja2 and mock as build dependencies required by the test
suite.
* Add fix-assertRaisesMessage.patch to make the package build with
python 2.7.10~rc1 which is affected by
https://bugs.python.org/issue24134
* Add fix-test-extended-length-storage.patch to make the package build
even when AUFS is in use (and when the max length of a filename is
shorter than usual).
-- Raphaël Hertzog <hertzog@debian.org> Wed, 20 May 2015 09:54:47 +0200
python-django (1.7.10-1) unstable; urgency=medium
* Fix Python 3.5 HTMLParseError issue. Closes: #800137.
* New upstream version. Fixes CVE-2015-5963, CVE-2015-5964. Closes: #796104.
* Add numpy 1.9 support. Closes: #801554.
-- Brian May <bam@debian.org> Mon, 12 Oct 2015 12:59:43 +1100
python-django (1.7.9-1) unstable; urgency=medium
* New upstream security release:
https://www.djangoproject.com/weblog/2015/jul/08/security-releases/
It fixes:
- CVE-2015-5143: possible denial-of-service by filling session store
- CVE-2015-5144: possible header injection since validators accept
newlines in input
-- Raphaël Hertzog <hertzog@debian.org> Thu, 09 Jul 2015 01:33:31 +0200
python-django (1.7.7-1) unstable; urgency=high
* New upstream security and bugfix release:
https://www.djangoproject.com/weblog/2015/mar/18/security-releases/
It fixes:
- CVE-2015-2317: possible XSS attack via user-supplied redirect URLs
Closes: #780873
- CVE-2015-2316: Denial-of-service possibility with strip_tags()
Closes: #780874
-- Raphaël Hertzog <hertzog@debian.org> Mon, 23 Mar 2015 20:41:13 +0100
python-django (1.7.6-1) unstable; urgency=high
* New upstream security release:
https://www.djangoproject.com/weblog/2015/mar/09/security-releases/
* Fixes CVE-2015-2241: XSS attack via properties in
ModelAdmin.readonly_fields
-- Raphaël Hertzog <hertzog@debian.org> Mon, 09 Mar 2015 21:40:34 +0100
python-django (1.7.5-1) unstable; urgency=medium
[ Chris Lamb ]
* Remove myself from Uploaders.
[ Raphaël Hertzog ]
* New upstream bugfix release:
https://docs.djangoproject.com/en/1.7/releases/1.7.5/
-- Raphaël Hertzog <hertzog@debian.org> Fri, 06 Mar 2015 21:13:54 +0100
python-django (1.7.4-1) unstable; urgency=medium
* Release to unstable and hopefully to Jessie too.
-- Raphaël Hertzog <hertzog@debian.org> Mon, 09 Feb 2015 10:39:15 +0100
python-django (1.7.4-1~exp1) experimental; urgency=medium
* New upstream bugfix release.
* Drop fix-24193-python34-test-failure.diff, merged upstream.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 28 Jan 2015 09:38:24 +0100
python-django (1.7.3-1~exp1) experimental; urgency=high
[ Luke Faraone ]
* New upstream security release.
- WSGI header spoofing via underscore/dash conflation (CVE-2015-0219)
- Possible XSS attack via user-supplied redirect URLs (CVE-2015-0220)
- DoS attack against django.views.static.serve (CVE-2015-0221)
- Database DoS with ModelMultipleChoiceField (CVE-2015-0222)
Closes: #775375
[ Raphaël Hertzog ]
* Add patch fix-24193-python34-test-failure.diff to fix a test failure with
Python3.4.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 21 Jan 2015 09:56:19 +0100
python-django (1.7.2-1) experimental; urgency=medium
[ Raphaël Hertzog ]
* Add geoip-database-extra as an alternative to geoip-database-contrib.
[ Brian May ]
* New upstream version.
-- Brian May <bam@debian.org> Mon, 05 Jan 2015 13:57:16 +1100
python-django (1.7.1-1) unstable; urgency=medium
[ Raphaël Hertzog ]
* New upstream bugfix release.
* Drop 01_fix_test_loaddata_not_existant_fixture_file.patch, merged
upstream.
* Update Standards-Version to 3.9.6.
* Add lintian overrides for package-contains-timestamped-gzip (false
positive).
[ Brian May ]
* Fix django-admin wrapper to not even consider using python 2.6 as
that version is unsupported with Django 1.7.
-- Raphaël Hertzog <hertzog@debian.org> Mon, 27 Oct 2014 16:37:41 +0100
python-django (1.7-3) unstable; urgency=medium
* Add 01_fix_test_loaddata_not_existant_fixture_file.patch
to fix FTBFS with Python 3.4.2. Closes: #765117
* Improve migrate-south script to look for Python files in the current dir.
./manage.py implicitely has the current directory but when we use
django-admin it's not the case. Thanks to Uwe Kleine-Koenig for the
report.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 15 Oct 2014 10:45:27 +0200
python-django (1.7-2) unstable; urgency=medium
* Release to unstable.
* Add a migrate-south sample script to help users apply their South
migrations. Thanks to Brian May.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 17 Sep 2014 14:15:11 +0200
python-django (1.7-1) experimental; urgency=medium
* New major upstream release.
* Add a NEWS file to document the incompatibility with South.
-- Raphaël Hertzog <hertzog@debian.org> Mon, 08 Sep 2014 10:19:12 +0200
python-django (1.7~c3-1) experimental; urgency=medium
* New upstream release candidate with security fixes:
https://www.djangoproject.com/weblog/2014/aug/20/security/
-- Raphaël Hertzog <hertzog@debian.org> Fri, 22 Aug 2014 22:50:32 +0200
python-django (1.7~c2-2) experimental; urgency=medium
* Merge changes from 1.6.5-4:
* Don't output stuff to stdout in django-admin. Closes: #757145
* Update Vcs-* fields since the packaging repository moved to git.
-- Raphaël Hertzog <hertzog@debian.org> Fri, 08 Aug 2014 14:26:47 +0200
python-django (1.7~c2-1) experimental; urgency=medium
* New upstream release candidate.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 30 Jul 2014 20:47:10 +0200
python-django (1.7~c1+20140722-2) experimental; urgency=medium
* Move django-admin manual page in python-django-common. Bump version
constraint in Breaks/Replaces accordingly.
* Drop conflicting django-admin in python-django and python3-django that
were not removed as usual because upstream stopped installing them as
django-admin.py.
* Drop extra license files.
* Fix shebang lines in python3-django.
* Drop empty left-over /usr/bin directories in python-django/python3-django.
-- Raphaël Hertzog <hertzog@debian.org> Tue, 22 Jul 2014 23:29:30 +0200
python-django (1.7~c1+20140722-1) experimental; urgency=medium
* New upstream release candidate. We want this version in jessie so we
should prepare now.
* Snapshot tarball generated with "python setup.py sdist" after having
applied fix submitted in https://code.djangoproject.com/ticket/23072
* Added python-sqlparse, python-tz to Recommends
* Added other optional dependencies (python-memcache, python-pil,
python-bcrypt) to Suggests
* Add all those dependencies in Build-Depends for the benefit of the
test suite.
* Run the test suite for python2 and python3.
* Differentiate descriptions of python2 and python3 packages.
-- Raphaël Hertzog <hertzog@debian.org> Mon, 21 Jul 2014 21:57:07 +0200
python-django (1.6.6-1) unstable; urgency=high
* New upstream security release.
- reverse() can generate URLs pointing to other hosts (CVE-2014-0480)
- file upload denial of service (CVE-2014-0481)
- RemoteUserMiddleware session hijacking (CVE-2014-0482)
- data leakage via querystring manipulation in admin (CVE-2014-0483)
[ Brian May ]
* Don't output stuff to stdout in django-admin. Closes: #757145
[ Raphaël Hertzog ]
* Update Vcs-* fields since the packaging repository moved to git.
-- Luke Faraone <lfaraone@debian.org> Wed, 20 Aug 2014 19:30:21 -0700
python-django (1.6.5-3) unstable; urgency=low
* Replace django-admin with script that can be run as python and shell.
This means we can autodetect which python version to use when run as
shell, while maintaining compatability with processes that try to run it
with a specific python version.
e.g. See bugs #755341 and #755321.
-- Brian May <bam@debian.org> Mon, 21 Jul 2014 10:18:39 +1000
python-django (1.6.5-2) unstable; urgency=low
* python3-django package. Closes: #736878.
-- Brian May <bam@debian.org> Tue, 24 Jun 2014 10:51:47 +1000
python-django (1.6.5-1) unstable; urgency=high
* New upstream security release.
- Caches may be allowed to store and serve private data (CVE-2014-1418)
- Malformed URLs from user input incorrectly validated
* Drop partial_functions_reverse.patch (merged upstream).
-- Raphaël Hertzog <hertzog@debian.org> Wed, 14 May 2014 22:49:59 +0200
python-django (1.6.3-2) unstable; urgency=high
* Fix regression of reverse() and partial views. (LP: #1311433)
Thanks Preston Timmons.
-- Luke Faraone <lfaraone@debian.org> Tue, 22 Apr 2014 20:44:18 -0700
python-django (1.6.3-1) unstable; urgency=high
* New upstream security release.
- Unexpected code execution using ``reverse()``
- CVE-2014-0472
- Caching of anonymous pages could reveal CSRF token
- CVE-2014-0473
- MySQL typecasting could result in unexpected matches
- CVE-2014-0474
* Drop patches 07_translation_encoding_fix and ticket21869.diff; merged
upstream
-- Luke Faraone <lfaraone@debian.org> Mon, 21 Apr 2014 16:47:14 -0700
python-django (1.6.1-2) unstable; urgency=medium
* Team upload.
* d/patches/ticket21869.diff: Cherry pick upstream fix for building
documentation against Sphinx 1.2.1.
-- Barry Warsaw <barry@debian.org> Wed, 29 Jan 2014 18:37:51 +0000
python-django (1.6.1-1) unstable; urgency=medium
* New upstream version.
* Fix broken encoding in translations attribution. (Closes: #729194)
-- Luke Faraone <lfaraone@debian.org> Thu, 12 Dec 2013 15:46:01 -0500
python-django (1.6-1) unstable; urgency=low
* New upstream version. Closes: #557474, #724637.
* python-django now also suggests the installation of ipython,
bpython, python-django-doc, and libgdal1.
Closes: #636511, #686333, #704203
* Set package maintainer to Debian Python Modules Team.
* Bump standards version to 3.9.5, no changes needed.
-- Luke Faraone <lfaraone@debian.org> Thu, 07 Nov 2013 15:33:49 -0500
python-django (1.5.4-1) unstable; urgency=high
* New upstream security release. Fixes CVE-2013-1443. Closes: #723043.
https://www.djangoproject.com/weblog/2013/sep/15/security/
- Denial-of-service via large passwords. CVE-2013-1443
-- Luke Faraone <lfaraone@debian.org> Sun, 15 Sep 2013 15:50:10 -0400
python-django (1.5.3-1) unstable; urgency=high
* New upstream security release. Fixes CVE-2013-4315. Closes: #722605
https://www.djangoproject.com/weblog/2013/sep/10/security-releases-issued/
- Directory traversal with ssi template tag
* Update doc-base file to drop some removed directory in the HTML doc.
* Update Standards-Version to 3.9.4.
* Bump debhelper compat level to 9.
-- Raphaël Hertzog <hertzog@debian.org> Fri, 13 Sep 2013 00:05:19 +0200
python-django (1.5.2-1) unstable; urgency=high
* New upstream security release.
https://www.djangoproject.com/weblog/2013/aug/13/security-releases-issued/
- Cross-site scripting (XSS) in admin interface
- Possible XSS via is_safe_url
-- Luke Faraone <lfaraone@debian.org> Tue, 13 Aug 2013 16:49:39 -0400
python-django (1.5.1-2) unstable; urgency=low
[ Jakub Wilk ]
* Use canonical URIs for Vcs-* fields.
[ Luke Faraone ]
* Upload to unstable.
-- Luke Faraone <lfaraone@debian.org> Thu, 09 May 2013 15:10:47 -0400
python-django (1.5.1-1) experimental; urgency=low
* New upstream release.
* Add self to uploaders field.
-- Luke Faraone <lfaraone@debian.org> Thu, 28 Mar 2013 17:17:10 -0400
python-django (1.5-1) experimental; urgency=low
* New upstream release. Closes: #646634, #663230, #436983
-- Luke Faraone <lfaraone@debian.org> Fri, 22 Mar 2013 17:52:30 -0400
python-django (1.4.5-1) unstable; urgency=high
* New upstream maintenance release dropping some undesired .pyc files
and fixing a documentation link.
* High urgency due to former security updates.
-- Raphaël Hertzog <hertzog@debian.org> Sun, 24 Feb 2013 10:28:08 +0100
python-django (1.4.4-1) unstable; urgency=low
* New upstream security and maintenance release. Closes: #701186
https://www.djangoproject.com/weblog/2013/feb/19/security/
Fixes mulptiple security issues:
- Further fixes for Host header poisoning. CVE-2012-4520
- XML attacks via entity expansion. CVE-2013-1665
- Data leakage via admin history log. CVE-2013-0305
- Formset denial-of-service. CVE-2013-0306
* Add gettext to Suggests since it's required for django-admin
compilemessages / makemessages. Closes: #700483
-- Raphaël Hertzog <hertzog@debian.org> Sat, 23 Feb 2013 09:33:13 +0100
python-django (1.4.3-1) unstable; urgency=high
* New upstream security and maintenance release. Closes: #696535
https://www.djangoproject.com/weblog/2012/dec/10/security/
* Drop debian/patches/01_fix-self-tests.diff, merged upstream.
-- Raphaël Hertzog <hertzog@debian.org> Wed, 26 Dec 2012 15:49:32 +0100
python-django (1.4.2-2) unstable; urgency=low
* Don't fail self-tests if MANAGERS or ADMINS is defined in settings.py.
Add upstream patch debian/patches/01_fix-self-tests.diff.
Thanks to Jamie Strandboge <jamie@ubuntu.com> for the report.
Closes: #693752 LP: #1080204
-- Raphaël Hertzog <hertzog@debian.org> Tue, 20 Nov 2012 08:28:37 +0100
python-django (1.4.2-1) unstable; urgency=high
* New upstream security and maintenance release. Closes: #691145
Fixes: CVE-2012-4520
* Drop 01_use_stdlib_htmlparser_when_possible.diff which has been
merged upstream.
-- Raphaël Hertzog <hertzog@debian.org> Mon, 22 Oct 2012 10:53:30 +0200
python-django (1.4.1-2) unstable; urgency=low
* New patch 01_use_stdlib_htmlparser_when_possible.diff to not override
Python stdlib's HTMLParser with Python versions which are unaffected by
http://bugs.python.org/issue670664 Closes: #683648
Thanks to David Watson <david@planetwatson.co.uk> for the patch.
* Update the above patch to use the version committed upstream (commit
57d9ccc).
-- Raphaël Hertzog <hertzog@debian.org> Tue, 21 Aug 2012 08:42:10 +0200
python-django (1.4.1-1) unstable; urgency=low
* New upstream security and maintenance release. Closes: #683364
Fixes: CVE-2012-3442 CVE-2012-3443 CVE-2012-3444
* Drop 01_disable_broken_test.diff and 04_hyphen-manpage.diff which
have been merged upstream.
-- Raphaël Hertzog <hertzog@debian.org> Thu, 02 Aug 2012 10:44:02 +0200
python-django (1.4-1) unstable; urgency=low
* New upstream release. Closes: #666003
* Fix watch file to correctly extract the version number from the URL.
* Updated Standards-Version to 3.9.3 (no change needed).
* Drop 01_disable_url_verify_regression_tests.diff since upstream test
suite has been modified to work even without internet connection.
* Update 04_hyphen-manpage.diff to apply again.
* Drop 05_fix_djangodocs_sphinx_ext.diff which has been merged
upstream.
* Update 06_use_debian_geoip_database_as_default.diff to apply on
renamed file.
* Drop 07_fix_for_sphinx1.1.2.diff merged upstream.
* Drop 08_fix_test_week_view_allow_future.diff, merged upstream.
* Add 01_disable_broken_test.diff to disable a test that fails with
the current python 2.7 version in Debian.
-- Raphaël Hertzog <hertzog@debian.org> Sat, 31 Mar 2012 14:48:00 +0200
python-django (1.3.1-4) unstable; urgency=medium
* Add 08_fix_test_week_view_allow_future.diff to fix a regression test that
only worked in 2011. Closes: #655666
-- Raphaël Hertzog <hertzog@debian.org> Tue, 17 Jan 2012 08:55:58 +0100
python-django (1.3.1-3) unstable; urgency=low
* Add 06_use_debian_geoip_database_as_default.diff to use the default
location of the GeoIP database used by the Debian package
geoip-database-contrib. Closes: #645094
Add this package to suggests. Thanks to Tapio Rantala
<tapio.rantala@iki.fi> for the patch.
* Bump build-dep on python-sphinx to 1.0.8 to ensure we have a version
where #641710 is fixed. Closes: #647134
* Add 07_fix_for_sphinx1.1.2.diff to fix build with Sphinx 1.1.2. Thanks to
Jakub Wilk for the advance warning. Closes: #649624
-- Raphaël Hertzog <hertzog@debian.org> Mon, 28 Nov 2011 09:03:13 +0100
python-django (1.3.1-2) unstable; urgency=low
* Update Build-Depends on locales to included a version requirement
so that locales-all cannot satisfy it with its Provides: locales.
Thanks to Jakub Wilk for the suggestion.
* Enable 02_disable-sources-in-sphinxdoc.diff since #641710 has been
fixed.
* Add 05_fix_djangodocs_sphinx_ext.diff to support Sphinx 1.0.8.
Closes: #643758
-- Raphaël Hertzog <hertzog@debian.org> Wed, 12 Oct 2011 08:45:26 +0200
python-django (1.3.1-1) unstable; urgency=low
* New upstream release. It includes security updates described here:
https://www.djangoproject.com/weblog/2011/sep/09/security-releases-issued/
Closes: #641405
* Update 01_disable_url_verify_regression_tests.diff and merge
07_disable_url_verify_model_tests.diff into it.
* Update patch headers to conform to DEP-3.
* Apply patch from Steve Langasek to dynamically build the UTF-8
locale required by the test-suite instead of build-depending on
locales-all. Closes: #630421
* Use "dh --with sphinxdoc" to clean up the Sphinx generated documentation
and avoid the embedded-javascript-library lintian warning. Build-Depends
on python-sphinx >= 1.0.7+dfsg-1 for this and also add
${sphinxdoc:Depends} to python-django-doc Depends field.
* Cleanup build-dependencies now that even oldstable has python 2.5.
* Switch to dh_python2 as python helper tool. Drop legacy files
debian/pyversions and debian/pycompat.
* New patch 02_disable-sources-in-sphinxdoc.diff to not generate
the _sources directory that we used to remove manually within the rules
file. But must be kept disabled until #641710 is fixed.
* Properly support DEB_BUILD_OPTIONS=nocheck despite the override
of dh_auto_test.
-- Raphaël Hertzog <hertzog@debian.org> Thu, 15 Sep 2011 12:43:51 +0200
python-django (1.3-2) unstable; urgency=low
* Team upload.
[ Chris Lamb ]
* Don't remove "backup~" test file - upstream did ship it; we were just
removing it with dh_clean.
[ Piotr Ożarowski ]
* Fix builds with non-default Python versions installed
* Bump Standards-Version to 3.9.2 (no changes needed)
-- Piotr Ożarowski <piotr@debian.org> Mon, 02 May 2011 22:23:37 +0200
python-django (1.3-1) unstable; urgency=low
* New upstream release.
- Update 01_disable_url_verify_regression_tests.diff.
- Update 07_disable_url_verify_model_tests.diff.
- Merge patch from Krzysztof Klimonda to disable more network access tests.
(Closes: #598674)
* Add workaround for missing "backup~" file in release tarball. See
<http://code.djangoproject.com/ticket/15677>.
-- Chris Lamb <lamby@debian.org> Thu, 24 Mar 2011 15:04:53 +0000
python-django (1.2.5-1) unstable; urgency=low
* New upstream release.
* Do not compress objects.inv used by Sphinx generated documentation.
Thanks to Michael Fladischer for the report. Closes: #608769
-- Raphaël Hertzog <hertzog@debian.org> Sat, 12 Feb 2011 08:59:33 +0100
python-django (1.2.4-1) unstable; urgency=high
* New bugfix-only upstream release. It includes security fixes.
http://www.djangoproject.com/weblog/2010/dec/22/security/
* Drop patches merged upstream:
- debian/patches/05_fix_regression_tests.diff
- debian/patches/06_fix_regression_tests.diff
* Update 01_disable_url_verify_regression_tests.diff to cope with the
updated regressions tests.
* Update 03_manpage.diff and 04_hyphen-manpage.diff to cope with changes in
the manual page.
-- Raphaël Hertzog <hertzog@debian.org> Fri, 31 Dec 2010 11:40:28 +0100
python-django (1.2.3-2) unstable; urgency=low
* Team upload.
* Disable model tests that require an internet connection.
Closes: #601070
* Include python.mk conditionally as explained in its header.
Helps backports to Lenny which has no python.mk.
Closes: #601608
-- Evgeni Golov <evgeni@debian.org> Thu, 28 Oct 2010 12:37:15 +0200
python-django (1.2.3-1) unstable; urgency=low
[ Krzysztof Klimonda ]
* New upstream release. Closes: #596893 LP: #636482
* Fixes both a XSS vulnerability introduced in 1.2 series and
the regressions caused by 1.2.2 release. Closes: #596205
* debian/control:
- depend on language packs for en_US.utf8 locales required for unit tests.
* debian/rules:
- re-enable build time tests.
- set LC_ALL to en_US.utf8 for test suite.
* debian/patches/series:
- two new patches: 05_fix_regression_tests.diff and
06_fix_regression_tests.diff backported from 1.2.x branch to fix
test suite failures.
[ Raphaël Hertzog ]
* Update Standards-Version to 3.9.1.
* Drop "--with quilt" and quilt build-dependency since the package is
already using source format "3.0 (quilt)".
-- Raphaël Hertzog <hertzog@debian.org> Sat, 18 Sep 2010 19:37:03 +0200
python-django (1.2.1-1) unstable; urgency=low
* New upstream bugfix release.
-- Chris Lamb <lamby@debian.org> Mon, 24 May 2010 22:44:32 +0100
python-django (1.2-1) unstable; urgency=low
* New upstream stable release.
-- Chris Lamb <lamby@debian.org> Fri, 21 May 2010 07:52:55 +0100
python-django (1.2~rc1-1) experimental; urgency=low
* New upstream release candidate.
* Remove "02-embedded_code_copies.diff" - not needed anymore.
* Refresh "01_disable_url_verify_regression_tests.diff".
* Refresh "04_hyphen-manpage.diff".
* Temporarily disable test runner due to failing date-related tests.
-- Chris Lamb <lamby@debian.org> Thu, 06 May 2010 10:25:10 +0100
python-django (1.2~beta1-1) experimental; urgency=low
* New upstream development release.
* Switch to dpkg-source 3.0 (quilt) format
* Bump Standards-Version to 3.8.4.
* Remove "0.96 -> 1.x" NEWS entry.
* jQuery added to admin system upstream:
- Add libjs-jquery to python-django's Recommends
- Use symlinks so we use the version from libjs-query over an embedded code
copy.
-- Chris Lamb <lamby@debian.org> Tue, 09 Feb 2010 13:47:34 +0000
python-django (1.2~alpha1-1) experimental; urgency=low
* New upstream development release:
This is the first in a series of preview/development releases leading up
to the eventual release of Django 1.2, currently scheduled to take place
in March 2010.
<http://docs.djangoproject.com/en/dev//releases/1.2-alpha-1/>
* Update "01_disable_url_verify_regression_tests.diff" - tests now use the
unittest module instead of doctests.
* Update "02-embedded_code_copies.diff".
* Remove "05_ftbfs_in_november.diff" - applied upstream.
* Remove "06_python_2.6.3_regression.diff" - applied upstream.
* Update dh_auto_test - database engine is set differently in 1.2.
* Remove useless ._DS_Store files.
-- Chris Lamb <lamby@debian.org> Wed, 06 Jan 2010 14:34:37 +0000
python-django (1.1.1-2) unstable; urgency=low
* Remove embedded "decimal" code copy and use system version instead. The
"doctest" code copy cannot be removed as parts of Django depend on modified
behaviour. (Closes: #555419)
* Fix FTBFS in November by applying patch from upstream bug #12125.
(Closes: #555931)
* Fix FTBFS under Python 2.6.3 by applying patch from upstream bug #11993.
(Closes: #555969)
-- Chris Lamb <lamby@debian.org> Tue, 01 Dec 2009 23:46:22 +0000
python-django (1.1.1-1) unstable; urgency=high
* New upstream security release - fixes pathological regular expression
backtracking performance in URL and email fields which can be used as part
of a denial of service attack.
* Set Maintainer: to myself with thanks to Brett Parker.
* Bump versioned build dependency on quilt to help backporters.
(Closes: #547955)
-- Chris Lamb <lamby@debian.org> Sat, 10 Oct 2009 10:17:52 +0100
python-django (1.1-4) unstable; urgency=low
* Sourceful upload to drop dependency on Python 2.4.
-- Chris Lamb <lamby@debian.org> Mon, 24 Aug 2009 08:16:11 +0100
python-django (1.1-3) unstable; urgency=low
* Disable regression tests that require an internet connection. Patch by
Krzysztof Klimonda <kklimonda@syntaxhighlighted.com>. (Closes: #542996)
* Bump Standards-Version to 3.8.3.
-- Chris Lamb <lamby@debian.org> Sun, 23 Aug 2009 18:13:18 +0100
python-django (1.1-2) unstable; urgency=low
* Run testsuite on build.
* Use "--with quilt" over specifying $(QUILT_STAMPFN)/unpatch dependencies.
* Override clean target correctly.
-- Chris Lamb <lamby@debian.org> Fri, 14 Aug 2009 08:06:29 +0100
python-django (1.1-1) unstable; urgency=low
* New upstream release.
* Merge from experimental:
- Ship FastCGI initscript and /etc/default file in python-django's examples
directory (Closes: #538863)
- Drop "05_10539-sphinx06-compatibility.diff"; it has been applied
upstream.
- Bump Standards-Version to 3.8.2.
-- Chris Lamb <lamby@debian.org> Wed, 29 Jul 2009 11:26:28 +0200
python-django (1.0.2-7) unstable; urgency=low
* Fix compatibility with Python 2.6 and Python transitions in general.
Thanks to Krzysztof Klimonda <kklimonda@syntaxhighlighted.com>.
-- Chris Lamb <lamby@debian.org> Sat, 16 May 2009 00:09:47 +0100
python-django (1.0.2-6) unstable; urgency=low
* Backport patch from <http://code.djangoproject.com/ticket/10539> to fix
FTBFS when using python-sphinx >= 0.6. (Closes: #527492)
-- Chris Lamb <lamby@debian.org> Sun, 10 May 2009 22:11:09 +0100
python-django (1.0.2-5) unstable; urgency=low
* Fix issue where newly created projects do not have their manage.py file
executable.
-- Chris Lamb <lamby@debian.org> Thu, 26 Mar 2009 23:42:14 +0000
python-django (1.0.2-4) unstable; urgency=low
* Programatically replace most references to "django-admin.py" with
"django-admin" in the generated documentation. (Closes: #519937)
* Bump Standards-Version to 3.8.1; no changes.
-- Chris Lamb <lamby@debian.org> Tue, 24 Mar 2009 00:50:26 +0000
python-django (1.0.2-3) unstable; urgency=low
* Split documentation into a separate python-django-doc package due to size
(approximately 6Mb).
-- Chris Lamb <lamby@debian.org> Tue, 10 Mar 2009 21:13:57 +0000
python-django (1.0.2-2) unstable; urgency=low
* Don't rely on the internal layout of python-support. (Closes: #517052)
* Move to debhelper-based packaging for operational clarity:
- Remove bashisms from binary-post-install.
- Use quilt instead of simple-patchsys.mk and adjust existing patches so
that we can apply with -p1 for the "quilt" source package type.
* Adjust Build-Depends:
- Bump debhelper requirement 7.0.50 for override_* feature.
- Drop cdbs, python-dev and python-setuptools requirement.
- Just Build-Depend on `python', not `python-dev'.
- Drop versions on Build-Depends where they are satisfied in current
oldstable (ie. etch).
* debian/control:
- Add python-sqlite to Suggests.
- Remove repeated 'Priority' line in binary package stanza.
- Update crufty long and short descriptions.
- Add ${misc:Depends} in binary stanza for debhelper-using package.
-- Chris Lamb <lamby@debian.org> Sun, 08 Mar 2009 06:01:59 +0000
python-django (1.0.2-1) unstable; urgency=low
[ Chris Lamb ]
* New upstream bugfix release. Closes: #505783
* Add myself to Uploaders with ACK from Brett.
[ David Spreen ]
* Remove python-pysqlite2 from Recommends because Python 2.5 includes
sqlite library used by Django. Closes: 497886
[ Sandro Tosi ]
* debian/control
- switch Vcs-Browser field to viewsvn
-- Chris Lamb <lamby@debian.org> Wed, 19 Nov 2008 21:31:00 +0000
python-django (1.0-1) unstable; urgency=low
[ David Spreen ]
* New _stable_ upstream release.
[ Raphael Hertzog ]
* This version fixes the latest security issue:
http://www.djangoproject.com/weblog/2008/sep/02/security/
Closes: #497765
* Don't include source files of documentation in the binary package,
keep only the HTML version.
* Updated README.Debian with information about the switch from 0.96 to
1.0.
* Remove execute right on /etc/bash_completion.d/django_bash_completion
* Add debian/patches/04_hyphen-manpage.diff to fix a lintian message
(hyphen-used-as-minus-sign usr/share/man/man1/django-admin.1.gz:156).
* Don't compress javascript files.
* Add libjs-jquery to Recommends since it's used by the HTML
documentation.
-- Raphael Hertzog <hertzog@debian.org> Thu, 04 Sep 2008 08:33:32 +0200
python-django (1.0~beta2+ds-1) unstable; urgency=low
* Bumping up upstream version to push sources into unstable.
(Thanks to Raphael Hertzog).
-- David Spreen <netzwurm@debian.org> Sat, 30 Aug 2008 20:56:09 -0700
python-django (1.0~beta2-3) unstable; urgency=low
[ David Spreen ]
* Updated the copyright information to include copyright and
licenses for individual contributions.
* Added the documentation to the main python-django package:
* debian/python-django.install
- Added installation of html documentation.
* debian/python-django.doc-base
- Added.
* debian/control
- Added Build-Depends-Indep on python-sphinx and libjs-jquery.
* debian/rules
- Readded code to build documentation.
- Readded code to link to libjs-jquery.
* debian/NEWS
- Fixed format.
- Added more comprehensive list of changes and references to
local documentation as well as the wiki pages for
backwards-incompatible changes.
* debian/python-django.docs
- Removed docs/*.txt since those are templates for the
generated docs now included with doc-base.
-- David Spreen <netzwurm@debian.org> Fri, 29 Aug 2008 09:20:45 -0700
python-django (1.0~beta2-2) unstable; urgency=low
[ David Spreen ]
* Removed all -doc related files temporarily to push beta2 into
unstable for extensive testing. The -doc package will be
readded once this package is in unstable as recommended in
http://lists.debian.org/debian-release/2008/08/msg01475.html.
* debian/python-django-doc.install
- Removed.
* debian/python-django-doc.doc-base
- Removed.
* debian/python-django-doc.examples
- Moved to python-django.examples.
* debian/rules
- Removed python-doc related build and post-installation.
* debian/control
- Removed binary package python-django-doc.
- Removed Build-Depends-Indep on python-sphinx and libjs-jquery.
* debian/python-django.install:
- Removed multiple package related issues.
-- David Spreen <netzwurm@debian.org> Thu, 28 Aug 2008 20:15:21 -0700
python-django (1.0~beta2-1) experimental; urgency=low
[ David Spreen ]
* The `hooray for the documentation' release!
* New upstream beta release.
* debian/control
- Updated standards version.
- Added python-sphinx and libjs-jquery.
- Added python-django-doc package depending on libjs-jquery.
* debian/docs
- Moved to debian/python-django.docs.
* debian/install
- Moved to debian/python-django.install.
* debian/manpages
- Moved to debian/python-django.manpages.
* debian/examples
- Moved to debian/python-django-doc.examples
* debian/README.Debian
- Moved to debian/python-django.README.Debian
* debian/python-django-doc.doc-base:
- Added doc-base file for the documentation.
* debian/python-django-doc.install:
- Added install file for sphinx generated documentation.
* debian/rules:
- Added code to generate documentation with sphinx and
replace convenience file of jquery.js with the respective
symlink to libjs-jquery.
-- David Spreen <netzwurm@debian.org> Thu, 28 Aug 2008 10:22:29 -0700
python-django (1.0~beta1-1) experimental; urgency=low
[ David Spreen ]
* New upstream beta release. Closes: #492956
* debian/control: Added myself to Uploaders field.
* debian/watch: Added mangling for filename and version. Old watch file would
name the download 'tarball'. Also added mangling to handle alpha and beta
versioning.
* Drop debian/patches/01_add_shebang.diff as this has been fixed upstream.
* Drop debian/patches/02_bash_completion.diff as this has been committed
upstream http://code.djangoproject.com/ticket/7268.
* debian/control: Added python-flup to the Suggest field. Closes: #488123
* debian/patches/03_manpage.diff: Adapted patch to new upstream version.
[ Jan Dittberner ]
* add debian/watch file.
-- David Spreen <netzwurm@debian.org> Fri, 15 Aug 2008 16:05:07 -0700
python-django (0.97~svn7534-1) experimental; urgency=low
* New upstream snapshot. Closes: #409565, #481051
- Include an XSS security fix (CVE-2008-2302). Closes: #481164
* Drop debian/patches/04_pg_version_fix.diff as another fix
has been committed upstream (see http://code.djangoproject.com/ticket/6433
and http://code.djangoproject.com/changeset/7415).
* Add some headers to the remaining patches.
-- Raphael Hertzog <hertzog@debian.org> Mon, 19 May 2008 23:41:50 +0200
python-django (0.97~svn7189-1) experimental; urgency=low
* New upstream snapshot including bash completion fix
Closes: #450913
-- Brett Parker <iDunno@sommitrealweird.co.uk> Sun, 02 Mar 2008 12:59:03 +0000
python-django (0.97~svn7047-2) experimental; urgency=low
[ Brett Parker ]
* Patch for postgresql version issue with 8.3 beta/rc releases
Closes: #462058
[ Raphael Hertzog ]
* Updated Standards-Version to 3.7.3.
* Adjusted build-dependency on python-setuptools to strip the -1 part.
-- Brett Parker <iDunno@sommitrealweird.co.uk> Wed, 6 Feb 2008 15:15:37 +0000
python-django (0.97~svn7047-1) experimental; urgency=low
* New upstream snapshot (rev 7047)
- tarball prepared by Gabriel Falcão Gonçalves de Moura
<gabriel@guake-terminal.org>
-- Gustavo Noronha Silva <kov@debian.org> Tue, 29 Jan 2008 10:54:47 -0200
python-django (0.97~svn6996-1) experimental; urgency=low
* New upstream snapshot
* debian/control:
- added myself to Uploaders
-- Gustavo Noronha Silva <kov@debian.org> Sat, 05 Jan 2008 20:53:23 -0200
python-django (0.97~svn6668-2) UNRELEASED; urgency=low
[ Raphael Hertzog ]
* Install examples with dh_installexamples instead of dh_installdocs
(change done by Ubuntu) as empty files are kept.
[ Sandro Tosi ]
* debian/control
- uniforming Vcs-Browser field
-- Raphael Hertzog <hertzog@debian.org> Mon, 17 Dec 2007 09:09:16 +0100
python-django (0.97~svn6668-1) experimental; urgency=low
* New SVN snapshot (rev 6668)
- Auth system delegations
- Apps can now have thier own management commands
- Fix for CVE-2007-5712 remote denial of service
Closes: #448838
* Fix missing upstream info in changelog
Closes: #450659
-- Brett Parker <iDunno@sommitrealweird.co.uk> Sun, 11 Nov 2007 10:15:55 +0000
python-django (0.96+svn6373-1) experimental; urgency=low
[ Raphael Hertzog ]
* New SVN snapshot (rev 6373, a few days after the last Django sprint).
* Note: The version 0.96+svn6034-1 never got uploaded.
* Rename XS-Vcs* fields to Vcs-* since they are now supported by dpkg.
[ Piotr Ożarowski ]
* XS-Vcs-Browser and Homepage fields added
-- Raphael Hertzog <hertzog@debian.org> Thu, 04 Oct 2007 14:59:01 +0200
python-django (0.96+svn6034-1) experimental; urgency=low
[ Brett Parker]
* New SVN snapshot (rev 6034).
* validate and runserver commands now display the number of errors
(returning back to previous functionality).
* Small documentation fixes
* assertRedirects handling for paths with get data
* start{project,app} no make sure files created are writable
* Add man page for django-admin to the debian package
-- Brett Parker <iDunno@sommitrealweird.co.uk> Sat, 8 Sep 2007 10:37:00 +0100
python-django (0.96+svn6020-1) experimental; urgency=low
* New SVN snapshot (rev 6020).
-- Raphael Hertzog <hertzog@debian.org> Sun, 26 Aug 2007 18:16:08 +0200
python-django (0.96+svn5779-1) experimental; urgency=low
* SVN snapshot (rev 5779) packaged to experimental as many interesting
Django applications rely on newer unreleased features.
-- Raphael Hertzog <hertzog@debian.org> Tue, 31 Jul 2007 13:40:18 +0200
python-django (0.96-1) unstable; urgency=low
[ Brett Parker ]
* New upstream release - introduces some backwards incompatible changes, see
README.Debian or the backwards incompatible changes page at
http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges
* Add documentation from upstream to /usr/share/doc/python-django
Closes: #411249
* Install the bash completion file from extras in to
/etc/bash_completion.d/django_bash_completion
Closes: #414399
* Egg support dropped as it's been dropped by upstream.
-- Brett Parker <iDunno@sommitrealweird.co.uk> Sun, 25 Mar 2007 19:18:39 +0100
python-django (0.95.1-1) unstable; urgency=low
[ Brett Parker ]
* New upstream minor release for security bugs:
- http://www.djangoproject.com/weblog/2007/jan/21/0951/
- Fixes a small security vulnerability in the script Django's
internationalization system uses to compile translation files
(changeset 4360 in the "0.95-bugfixes" branch).
- fix for a bug in Django's authentication middleware which could cause
apparent "caching" of a logged-in user (changeset 4361).
- patch which disables debugging mode in the flup FastCGI package Django
uses to launch its FastCGI server, which prevents tracebacks from
bubbling up during production use (changeset 4363).
Closes: #407786, #407607
* Sets Recommends to python-psycopg and moves other database engines to
the Suggests field.
[ Raphael Hertzog ]
* Use python-pysqlite2 as default database engine in Recommends. Others are
in Suggests. Closes: #403761
* Add python-psycopg2 in Suggests. Closes: #407489
-- Raphael Hertzog <hertzog@debian.org> Sun, 21 Jan 2007 17:45:50 +0100
python-django (0.95-3) unstable; urgency=low
* Integrate 2 upstream changesets:
- http://code.djangoproject.com/changeset/3754 as
debian/patches/04_sec_fix_auth.diff
Fixes a possible case of mis-authentication due to bad caching.
Closes: #407521
- http://code.djangoproject.com/changeset/3592 as
debian/patches/03_sec_fix_compile-messages.diff
Fixes an (unlikely) arbitrary command execution if the user is blindly
running compile-messages.py on a untrusted set of *.po files.
Closes: #407519
-- Raphael Hertzog <hertzog@debian.org> Sat, 16 Dec 2006 15:13:29 +0100
python-django (0.95-2) unstable; urgency=low
[ Piotr Ozarowski ]
* Added XS-Vcs-Svn field
[ Brett Parker ]
* Made manage.py get a shebang with the version of python
used when running django-admin (closes: #401616)
* Created a convenience /usr/lib/python-django/bin symlink.
[ Raphael Hertzog ]
* Adapted Brett's work to better fit my views of the packaging.
-- Raphael Hertzog <hertzog@debian.org> Sat, 16 Dec 2006 11:03:20 +0100
python-django (0.95-1) unstable; urgency=low
[ Brett Parker ]
* 0.95 release - initial packaging
[ Raphael Hertzog ]
* Fix recommends: s/python-sqlite/python-pysqlite2/
* Add debian/pyversions to ensure that we have at least python 2.3 (and to
work around bug #391689 of python-support).
-- Raphael Hertzog <hertzog@debian.org> Mon, 9 Oct 2006 12:10:27 +0200
|