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
|
mediawiki (1:1.43.3+dfsg-1) unstable; urgency=medium
[ Lucas Werkmeister ]
* Update package description.
[ Taavi Väänänen ]
* New upstream version 1.43.3, fixing CVE-2025-6926, CVE-2025-6927,
CVE-2025-6589, CVE-2025-6590, CVE-2025-6591, CVE-2025-6592, CVE-2025-6593,
CVE-2025-6594, CVE-2025-6595, CVE-2025-6596, CVE-2025-6597.
* Drop merged patches.
* Drop exclusions for files no longer included in the upstream releases.
* Use different $wgFooterIcons key to fix display issues on modern skins.
-- Taavi Väänänen <taavi@debian.org> Tue, 01 Jul 2025 19:08:37 +0300
mediawiki (1:1.43.1+dfsg-2) unstable; urgency=medium
* Cherry-pick upstream patch for CVE-2025-32072
-- Kunal Mehta <legoktm@debian.org> Fri, 18 Apr 2025 01:10:38 -0400
mediawiki (1:1.43.1+dfsg-1) unstable; urgency=medium
* New upstream version 1.43.1, fixing CVE-2025-3469, CVE-2025-32696,
CVE-2025-32697, CVE-2025-32698, CVE-2025-32699 and CVE-2025-32700.
* Stop fixing permissions during build time for files that no longer
exist.
-- Taavi Väänänen <taavi@debian.org> Thu, 10 Apr 2025 21:48:49 +0300
mediawiki (1:1.43.0+dfsg-2) unstable; urgency=medium
* Make php-gmp a dependency.
-- Taavi Väänänen <taavi@debian.org> Sat, 05 Apr 2025 16:00:04 +0300
mediawiki (1:1.43.0+dfsg-1) unstable; urgency=medium
[ Kunal Mehta ]
* New upstream version 1.43.0 (Closes: #1089725)
* Synchronize upstream/signing-key.asc with
<https://www.mediawiki.org/keys/keys.txt>
[ наб ]
* d/control: Build-Depends: remove dh-buildinfo (see #1068809)
[ Taavi Väänänen ]
* Disable MathJax and Special:RestSandbox support due to DSFG issues.
* Update embedded DomPurify to 2.5.7. (Closes: #1085453)
* Update policy version to 4.7.2, no changes needed.
-- Taavi Väänänen <taavi@debian.org> Fri, 04 Apr 2025 21:11:28 +0300
mediawiki (1:1.39.10-1) unstable; urgency=medium
* New upstream version 1.39.10
-- Taavi Väänänen <taavi@debian.org> Tue, 01 Oct 2024 18:45:38 +0300
mediawiki (1:1.39.8-1) unstable; urgency=medium
[ Taavi Väänänen ]
* Update my email address
[ Kunal Mehta ]
* New upstream version 1.39.8
-- Kunal Mehta <legoktm@debian.org> Sun, 30 Jun 2024 00:01:52 -0400
mediawiki (1:1.39.7-1) unstable; urgency=medium
* New upstream version 1.39.7, fixing CVE-2024-34506
and CVE-2024-34507. (Closes: #1064797)
* Drop obsolete Lintian override for
package-supports-alternative-init-but-no-init.d-script.
* Fix ordering in debian/changelog to fix the
globbing-patterns-out-of-order lintian warning.
-- Taavi Väänänen <hi@taavi.wtf> Fri, 29 Mar 2024 13:30:00 +0200
mediawiki (1:1.39.6-1) unstable; urgency=medium
* New upstream version 1.39.6, fixing CVE-2023-51704.
-- Taavi Väänänen <hi@taavi.wtf> Wed, 27 Dec 2023 22:39:20 +0200
mediawiki (1:1.39.5-1) unstable; urgency=medium
* New upstream version 1.39.5, fixing CVE-2023-3550,
CVE-2023-45359, CVE-2023-45360, CVE-2023-45361, CVE-2023-45362,
CVE-2023-45363, CVE-2023-45364.
-- Kunal Mehta <legoktm@debian.org> Mon, 09 Oct 2023 15:00:33 -0400
mediawiki (1:1.39.4-2) unstable; urgency=medium
* Set Breaks/Replaces for mediawiki-extensions-math (Closes: #1039075)
-- Kunal Mehta <legoktm@debian.org> Tue, 04 Jul 2023 02:42:01 -0400
mediawiki (1:1.39.4-1) unstable; urgency=medium
[ Kunal Mehta ]
* Update apache2 config for PHP 8
* Set "X-Content-Type-Options: nosniff" header for image directories
* Remove pre-Apache 2.3 support
[ Taavi Väänänen ]
* New upstream version 1.39.4, fixing CVE-2023-29141, CVE-2023-36674
and CVE-2023-36675.
* The bundled guzzlehttp/guzzle library was updated to 2.4.5 to fix
CVE-2023-29197.
-- Taavi Väänänen <hi@taavi.wtf> Fri, 30 Jun 2023 19:44:00 +0300
mediawiki (1:1.39.2-1) unstable; urgency=medium
* New upstream version 1.39.2
* d/control: Raise minimum PHP version to 7.4
-- Taavi Väänänen <hi@taavi.wtf> Thu, 23 Feb 2023 15:13:02 +0200
mediawiki (1:1.39.1-2) unstable; urgency=medium
* d/copyright: Remove stale entry for vendor/wikimedia/dodo/*
* d/rules: Raise Standards-Version to 4.6.2, no changes needed
* d/control: Add a Breaks: for old GreyStuff versions
-- Taavi Väänänen <hi@taavi.wtf> Tue, 27 Dec 2022 12:34:25 +0200
mediawiki (1:1.39.1-1) unstable; urgency=medium
* New upstream version 1.39.1
-- Taavi Väänänen <hi@taavi.wtf> Fri, 23 Dec 2022 12:09:19 +0200
mediawiki (1:1.39.0-2) unstable; urgency=medium
* Cherry-pick upstream patch to fix 32-bit issues in wikimedia/idle-dom
-- Kunal Mehta <legoktm@debian.org> Sun, 11 Dec 2022 20:10:05 -0500
mediawiki (1:1.39.0-1) unstable; urgency=medium
* New upstream version 1.39.0
-- Taavi Väänänen <hi@taavi.wtf> Sun, 04 Dec 2022 22:20:45 +0200
mediawiki (1:1.39.0~rc.1-1) experimental; urgency=medium
* New upstream version 1.39.0~rc.1
* Drop patch merged upstream
-- Kunal Mehta <legoktm@debian.org> Sun, 16 Oct 2022 16:34:30 -0400
mediawiki (1:1.39.0~rc.0-1) experimental; urgency=medium
[ Taavi Väänänen ]
* New upstream version 1.39.0~rc.0
* Update packaging for 1.39 changes
* php-intl is now required
* Add patch to drop symfony/php73-polyfill dependency
* Standards-Version: 4.6.1, no changes needed
[ Kunal Mehta ]
* Have SyntaxHighlight use packaged pygmentize, rather than bundled
* Promote imagemagick to Recommends, remove from Suggests
-- Kunal Mehta <legoktm@debian.org> Sun, 25 Sep 2022 19:32:19 -0400
mediawiki (1:1.35.7-1) unstable; urgency=medium
[ Taavi Väänänen ]
* New upstream release 1.35.7, fixing CVE-2022-27776 and
CVE-2022-29248 in the embedded guzzlehttp/guzzle library.
[ Kunal Mehta ]
* Officially switch to team maintenance, add Taavi to uploaders
-- Kunal Mehta <legoktm@debian.org> Sun, 03 Jul 2022 11:14:52 -0700
mediawiki (1:1.35.6-1) unstable; urgency=medium
* Team upload.
* New upstream version 1.35.6, fixing CVE-2022-28201, CVE-2022-28202,
CVE-2022-28203. This version is not affected by CVE-2022-28204.
* Update php extension recommends from composer.json
-- Taavi Väänänen <hi@taavi.wtf> Fri, 01 Apr 2022 16:49:04 +0300
mediawiki (1:1.35.5-2) unstable; urgency=medium
[ Lucas Werkmeister ]
* Remove PHP 5 support from mediawiki.conf
[ Kunal Mehta ]
* Make it easier to debug autopkgtest failures
* Increase PHP's max_execution_time for autopkgtests to 300s, thanks
to Paul Gevers and Bryce Harrington for input and helping test.
-- Kunal Mehta <legoktm@debian.org> Thu, 27 Jan 2022 00:46:22 -0800
mediawiki (1:1.35.5-1) unstable; urgency=high
[ Kunal Mehta ]
* New upstream version 1.35.5, fixing CVE-2021-44854, CVE-2021-44855,
CVE-2021-44856, CVE-2021-44857, CVE-2021-44858, CVE-2021-45038.
[ Debian Janitor ]
* Remove constraints unnecessary since buster
-- Kunal Mehta <legoktm@debian.org> Thu, 30 Sep 2021 20:42:36 -0700
mediawiki (1:1.35.4-1) unstable; urgency=medium
* New upstream version 1.35.4, fixing CVE-2021-41798, CVE-2021-41799,
CVE-2021-41800, CVE-2021-41801.
-- Kunal Mehta <legoktm@debian.org> Thu, 30 Sep 2021 10:49:49 -0700
mediawiki (1:1.35.3-1) unstable; urgency=medium
[ Kunal Mehta ]
* New upstream version 1.35.3, fixing CVE-2021-35197.
[ Tobias Wiese ]
* d/tests: update test restrictions (Closes: #987976)
* d/tests: Add systemd as test dependency
-- Kunal Mehta <legoktm@debian.org> Fri, 20 Aug 2021 23:56:23 -0700
mediawiki (1:1.35.2-1) unstable; urgency=high
* New upstream version 1.35.2, fixing CVE-2021-30152, CVE-2021-30153,
CVE-2021-30154, CVE-2021-30155, CVE-2021-30157, CVE-2021-30158,
CVE-2021-30159, CVE-2021-30458.
* Bundled pygments was updated to fix CVE-2021-20270, CVE-2021-27291.
-- Kunal Mehta <legoktm@debian.org> Thu, 08 Apr 2021 13:41:18 -0700
mediawiki (1:1.35.1-2) unstable; urgency=medium
* Make it easier to install for use with SQLite (Closes: #979686)
-- Kunal Mehta <legoktm@debian.org> Wed, 03 Feb 2021 15:01:01 -0800
mediawiki (1:1.35.1-1) unstable; urgency=medium
* New upstream version 1.35.1, fixing CVE-2020-35474, CVE-2020-35475,
CVE-2020-35477, CVE-2020-35478, CVE-2020-35479, CVE-2020-35480.
* Respect $wgRedirectOnLogin configuration setting (Closes: #971986).
* Flatten footer links without triggering a PHP warning (Closes: #971985).
* Drop patches merged upstream
-- Kunal Mehta <legoktm@debian.org> Thu, 17 Dec 2020 17:53:57 -0800
mediawiki (1:1.35.0-2) unstable; urgency=medium
* Refactor autopkgtests to make easier to reuse
* Fixup lintian overrides
* d/watch: Switch to version=4
* Add patches for PHP 8.0 and newer Postgres compatibility
* Standards-Version: 4.5.1, no changes needed
-- Kunal Mehta <legoktm@debian.org> Mon, 14 Dec 2020 10:56:11 -0800
mediawiki (1:1.35.0-1) unstable; urgency=medium
* Upload to unstable.
* New upstream version 1.35.0, fixing CVE-2020-25812,
CVE-2020-25813, CVE-2020-25814, CVE-2020-25815,
CVE-2020-25827, CVE-2020-25828.
* Additionally, mitigations for firejail's CVE-2020-17367,
CVE-2020-17368 are included as well.
* Require PHP 7.3+ (thanks to Platonides for the suggestion).
-- Kunal Mehta <legoktm@debian.org> Sun, 27 Sep 2020 04:16:53 -0700
mediawiki (1:1.35.0~rc.3-1) experimental; urgency=medium
* New upstream version 1.35.0~rc.3
-- Kunal Mehta <legoktm@debian.org> Sat, 05 Sep 2020 02:48:24 -0700
mediawiki (1:1.35.0~rc.2-1) experimental; urgency=medium
* New upstream version 1.35.0~rc.2
* Avoid installing more sets of PHPUnit tests
* Don't have logrotate create files as root:adm
* Recommend php-gmp for a performance boost
-- Kunal Mehta <legoktm@debian.org> Fri, 21 Aug 2020 23:49:28 -0700
mediawiki (1:1.35.0~rc.1-1) experimental; urgency=medium
* New upstream version 1.35.0~rc.1
* Drop legacy /etc/mediawiki-extensions/extensions-available/ directory
* Log errors, exceptions and fatals by default
* Stop installing legacy /etc/mediawiki/mediawiki.conf
* Use mime.types provided by MediaWiki (Closes: #903876)
* Set $wgCacheDirectory = '/var/cache/mediawiki' by default
-- Kunal Mehta <legoktm@debian.org> Fri, 07 Aug 2020 14:50:37 -0700
mediawiki (1:1.35.0~rc.0-1) experimental; urgency=medium
* New upstream version 1.35.0~rc.0
* Recommend php-luasandbox/lua5.1 for the Scribunto extension
* Includes Parsoid library (Closes: #831424)
* Switch to debhelper compat 13
* Fix autopkgtests by using a "stronger" password and explicitly
passing --scriptpath to the installer.
-- Kunal Mehta <legoktm@debian.org> Sat, 01 Aug 2020 01:40:37 -0700
mediawiki (1:1.31.8-1) unstable; urgency=medium
* New upstream version 1.31.8, fixing CVE-2020-15005.
* Use debhelper 12 and dh_installsystemd.
-- Kunal Mehta <legoktm@debian.org> Wed, 24 Jun 2020 14:25:22 -0700
mediawiki (1:1.31.7-1) unstable; urgency=medium
* New upstream version 1.31.7, fixing CVE-2020-10960.
CVE-2020-10959 does not affect this version of MediaWiki.
* A hardening fix was included for the OATHAuth extension to
limit access of user-controlled JavaScript.
* Standards-Version: 4.5.0, no changes needed
-- Kunal Mehta <legoktm@debian.org> Thu, 26 Mar 2020 15:30:16 -0700
mediawiki (1:1.31.6-1) unstable; urgency=medium
* New upstream version 1.31.6, fixing CVE-2019-19709.
* Drop Postgres patches merged upstream
* Suppress a bunch of lintian warnings that are ignored on purpose
* Sync d/upstream/signing-key.asc with upstream
* autopkgtests: set allow-stderr for all tests that use sudo. Thanks
to Mathieu Trudel-Lapierre for reporting and fixing in Ubuntu.
(Closes: #946665)
-- Kunal Mehta <legoktm@debian.org> Thu, 19 Dec 2019 13:20:56 -0800
mediawiki (1:1.31.5-3) unstable; urgency=medium
* In autopkgtests, skip testing against mysql-server if it
isn't available, such as in Debian testing
* Move packaging git repository to Salsa and update relevant
documentation
* Set up and configure Salsa CI
* Sync d/upstream/signing-key.asc with upstream
-- Kunal Mehta <legoktm@debian.org> Mon, 25 Nov 2019 00:59:49 -0800
mediawiki (1:1.31.5-2) unstable; urgency=medium
* Add extra debugging information to autopkgtests
* Backport patches from upstream for Postgresql 12 compatibility
(Closes: #944650)
-- Kunal Mehta <legoktm@debian.org> Fri, 15 Nov 2019 15:28:16 -0800
mediawiki (1:1.31.5-1) unstable; urgency=medium
* New upstream version 1.31.5
* Incorporate MySQL autopkgtest improvements from Lars Tangvald
and Robie Basak from Ubuntu:
* Use a different method besides MySQL 8.0's default authentication
because PHP doesn't currently support it.
* Explicitly test MySQL and MariaDB regardless of which one is the
default.
* Standards-Version: 4.4.1, no changes needed
-- Kunal Mehta <legoktm@debian.org> Sat, 26 Oct 2019 18:01:59 -0700
mediawiki (1:1.31.4-1) unstable; urgency=medium
* New upstream version 1.31.4 (security release), fixing
CVE-2019-16738.
-- Kunal Mehta <legoktm@debian.org> Fri, 11 Oct 2019 14:47:07 -0700
mediawiki (1:1.31.2-1) unstable; urgency=medium
[ Kunal Mehta ]
* New upstream version 1.31.2 (security release), fixing
CVE-2019-12466, CVE-2019-12467, CVE-2019-12468, CVE-2019-12469,
CVE-2019-12470, CVE-2019-12471, CVE-2019-12472, CVE-2019-12473,
CVE-2019-12474. The bundled jQuery was also updated, fixing
CVE-2019-11358.
* Fix regex that was breaking file uploads in PHP 7.3
(Closes: #928716).
* Sync upstream/signing-key.asc with mediawiki.org.
* Drop patch merged upstream.
* Revert "Temporarily add allow-stderr restriction to autopkgtests",
as it was fixed upstream.
[ Mark A. Hershberger ]
* Fix indentation in README.Debian
-- Kunal Mehta <legoktm@debian.org> Wed, 05 Jun 2019 22:40:28 -0400
mediawiki (1:1.31.1-4) unstable; urgency=medium
* Update my email address
* Temporarily add allow-stderr restriction to autopkgtests (Closes: #911829)
-- Kunal Mehta <legoktm@debian.org> Thu, 25 Oct 2018 23:19:40 -0700
mediawiki (1:1.31.1-3) unstable; urgency=medium
* Document removal of CologneBlue and Modern in NEWS (Closes: #909589)
* Document filesystem structure in README.Debian
-- Kunal Mehta <legoktm@member.fsf.org> Wed, 26 Sep 2018 20:41:24 -0700
mediawiki (1:1.31.1-2) unstable; urgency=medium
* Fix SQLite autopkgtests.
* Remove bogus version dependency upon php-common.
* Fix some package-contains-documentation-outside-usr-share-doc issues.
-- Kunal Mehta <legoktm@member.fsf.org> Sat, 22 Sep 2018 16:16:02 -0700
mediawiki (1:1.31.1-1) unstable; urgency=medium
* New upstream version 1.31.1, including fixes for CVE-2018-0503,
CVE-2018-0505, CVE-2018-0504.
* Use PlatformSettings.php instead of LocalSettingsGenerator, see NEWS
for details on how to migrate.
* Wrap $wgFooterIcons custom config in an $wgExtensionFunctions, so the
resources path is read after config. (Closes: #863332)
* SyntaxHighlight extension now uses Python 3.
-- Kunal Mehta <legoktm@member.fsf.org> Fri, 21 Sep 2018 23:13:24 -0700
mediawiki (1:1.30.0-1) unstable; urgency=medium
* New upstream version 1.30.0
* Update Vcs-Browser to use Gerrit/Gitiles as repository viewer
* Update d/watch for 1.30
* Update d/copyright for 1.30
* Rebase patches, dropping php-jwt-fix-shebang.diff
* Don't try to install any *.phtml
* Drop Suggests on hhvm
* Suppress and fix some lintian issues
* Refer to newly available `/usr/share/common-licenses/CC0-1.0`
* Standards-Version: 4.1.4
* Update mediawiki.NEWS for 1.30 release
* Install composer.json to avoid update.php warning
-- Kunal Mehta <legoktm@member.fsf.org> Thu, 12 Apr 2018 21:26:19 -0700
mediawiki (1:1.27.4-3) unstable; urgency=medium
* Add basic tests via autopkgtest
* Document mediawiki-jobrunner systemd unit in README.Debian
-- Kunal Mehta <legoktm@member.fsf.org> Sun, 03 Dec 2017 00:20:33 -0800
mediawiki (1:1.27.4-2) unstable; urgency=medium
* Bump Standards-Version to 4.1.1
* Set Rules-Requires-Root: no
* Remove unused lintian overrides
* Upgrade php-apcu to a Recommends
* Use debhelper compat 10
* Add a systemd unit to run runJobs.php as a service
* Get rid of unnecessary dh_installdeb override
* Remove dead code to mess with $wgVersion
* Synchronise upstream/signing-key.asc
* Remove broken ConfirmEdit/Asirra.php & Vector/Vector.php symlinks
(Closes: #857773)
* Document descriptions and forwarded status for all patches
* Remove unused GPL-3.0 paragraph from debian/copyright
* Override composer-package-without-pkg-php-tools-builddep lintian warning
-- Kunal Mehta <legoktm@member.fsf.org> Thu, 23 Nov 2017 01:22:51 -0800
mediawiki (1:1.27.4-1) unstable; urgency=medium
* Imported Upstream version 1.27.4 (security release), fixing
CVE-2017-8809, CVE-2017-8810, CVE-2017-8808, CVE-2017-8811,
CVE-2017-8812, CVE-2017-8814, CVE-2017-8815.
* Users who used the default configuration should not be affected
by CVE-2017-9841, but an extra .htaccess file will restrict
web access to the vendor/ directory.
-- Kunal Mehta <legoktm@member.fsf.org> Tue, 14 Nov 2017 15:52:47 -0800
mediawiki (1:1.27.3-1) unstable; urgency=medium
* Imported Upstream version 1.27.3 (security release), that
actually contains the fix for CVE-2017-0372 (Closes: #861585)
-- Kunal Mehta <legoktm@member.fsf.org> Mon, 01 May 2017 13:20:11 -0700
mediawiki (1:1.27.2-1) unstable; urgency=medium
* Improve NEWS file (Closes: #852862, #854352)
* Imported Upstream version 1.27.2 (security release), fixing
CVE-2017-0363, CVE-2017-0364, CVE-2017-0365, CVE-2017-0361,
CVE-2017-0362, CVE-2017-0368, CVE-2017-0366, CVE-2017-0370,
CVE-2017-0369, CVE-2017-0367
-- Kunal Mehta <legoktm@member.fsf.org> Thu, 06 Apr 2017 14:04:24 -0700
mediawiki (1:1.27.1-3) unstable; urgency=medium
* Ensure mediawiki depends upon the same version of mediawiki-classes
* Add powered by Debian icon in footer
* Add NEWS for major version upgrade (Closes: #838965)
* Add README for mediawiki-classes
* Add RELEASE-NOTES-* as documentation for mediawiki
* Recommend default-mysql-server | virtual-mysql-server instead of
just mysql-server (Closes: #843994, #848441)
* Use bundled jQuery (version 1) instead of Debian's jQuery, which is
now the incompatible version 3
* Add Provides for extensions now included in this one (Closes: #845281)
-- Kunal Mehta <legoktm@member.fsf.org> Tue, 13 Sep 2016 04:17:42 -0700
mediawiki (1:1.27.1-2) unstable; urgency=high
* Add missing php-xml dependency (Closes: #835912)
-- Kunal Mehta <legoktm@member.fsf.org> Mon, 29 Aug 2016 20:44:17 -0700
mediawiki (1:1.27.1-1) unstable; urgency=medium
* Add gbp.conf for git-buildpackage
* Improve Breaks/Replaces for mediawiki-extensions-* packages
(Closes: #831227)
* Update apache config for mod_php7
* Don't add custom PHP session configuration (Closes: #831874)
* Imported Upstream version 1.27.1 (security release), fixing
CVE-2016-6335, CVE-2016-6334, CVE-2016-6333, CVE-2016-6333,
CVE-2016-6336, CVE-2016-6332, CVE-2016-6332, CVE-2016-6331,
CVE-2016-6337
-- Kunal Mehta <legoktm@member.fsf.org> Mon, 22 Aug 2016 20:08:40 -0700
mediawiki (1:1.27.0-1) unstable; urgency=medium
* New upstream release
* Update dependencies to be PHP version agnostic
* Switch to new 1.27 MediaWiki Installer overrides system, drop old patches
* Local patch to remove newline before shebang in php-jwt/run-tests.sh
* Local patch to fix pear/mail_mime/scripts/phail.php shebang
* Remove permission fixes that were addressed upstream, add new ones
* Properly override source-is-missing lintian warning
* Drop AdminSettings.php support
* Add php-curl, php-intl, and php-wikidiff2 as Recommends
* Add python as recommended for SyntaxHighlighting (via pygments)
* Remove unnecessary Build-Depends packages
* Update watch file for 1.27
* Standards version 3.9.8
* Include serialized/ folder in install, MediaWiki now needs it at runtime
* Rewrite and simplify README
-- Kunal Mehta <legoktm@member.fsf.org> Thu, 30 Jun 2016 22:48:23 +0000
mediawiki (1:1.25.5-1) unstable; urgency=medium
* Upgraded to new upstream release
* Remove unneeded patches
* Remove redrawn CC images; images provided by upstream are free
* Fixed lintian warnings
-- Kunal Mehta <legoktm@member.fsf.org> Sun, 09 Aug 2015 23:49:36 +0000
mediawiki (1:1.19.20+dfsg-2.3) unstable; urgency=high
* Non-maintainer upload.
* Add patch fixing several security issues:
- (bug T85848, bug T71210) SECURITY: Don't parse XMP blocks that
contain XML entities, to prevent various DoS attacks.
- (bug T88310) SECURITY: Always expand xml entities when checking
SVG's.
- (bug T73394) SECURITY: Escape > in Html::expandAttributes to
prevent XSS.
- (bug T85855) SECURITY: Don't execute another user's CSS or JS
on preview.
- (bug T85349, bug T85850, bug T86711) SECURITY: Multiple issues
fixed in SVG filtering to prevent XSS and protect viewer's
privacy.
-- Thijs Kinkhorst <thijs@debian.org> Mon, 06 Apr 2015 16:53:54 +0000
mediawiki (1:1.19.20+dfsg-2.2) unstable; urgency=medium
* Non-maintainer upload.
* Add patch fixing T76686: thumb.php outputs wikitext message as raw
HTML, which could lead to xss. Permission to edit MediaWiki namespace
is required to exploit this.
-- Sebastien Delafond <seb@debian.org> Sun, 21 Dec 2014 13:11:10 +0100
mediawiki (1:1.19.20+dfsg-2.1) unstable; urgency=medium
* Non-maintainer upload.
* CVE-2014-9277: The <cross-domain-policy> mangling in OutputHandler.php
poses a potentially severe security problem for API clients written in
PHP, in that format=php is affected (Closes: #772764).
-- Sebastien Delafond <seb@debian.org> Sun, 14 Dec 2014 18:23:47 +0100
mediawiki (1:1.19.20+dfsg-2) unstable; urgency=low
* Team upload.
* Remove myself from Uploaders.
-- Thorsten Glaser <tg@mirbsd.de> Tue, 07 Oct 2014 18:13:52 +0000
mediawiki (1:1.19.20+dfsg-1) unstable; urgency=medium
* Make debian/rules get-orig-source-tg call uscan automatically
* New upstream security release:
- (bug 70672) SECURITY: OutputPage: Remove separation of css
and js module allowance.
-- Thorsten Glaser <tg@mirbsd.de> Thu, 02 Oct 2014 10:50:16 +0200
mediawiki (1:1.19.19+dfsg-1) unstable; urgency=medium
[ Mert Dirik ]
* Update turkish Debconf translation (Closes: #759878)
[ Thorsten Glaser ]
* Remove Romain Beauxis’ bouncing eMail address
* Acknowledge NMU (1:1.19.18+dfsg-0.1) – thanks!
* New upstream security and maintenance release:
- (bug 69008) SECURITY: Enhance CSS filtering in SVG files.
Filter <style> elements; normalize style elements and
attributes before filtering; add checks for attributes that
contain css; add unit tests for html5sec and reported bugs.
* Bump Policy (no change required)
* Update lintian overrides
-- Thorsten Glaser <tg@mirbsd.de> Thu, 25 Sep 2014 16:55:58 +0200
mediawiki (1:1.19.18+dfsg-0.1) unstable; urgency=high
* Non-maintainer upload with maintainers approval.
* Imported Upstream version 1.19.18+dfsg
(Closes: #758510)
- CVE-2014-5241 (bug 68187) SECURITY: Prepend jsonp callback with comment.
- CVE-2014-5243 (bug 65778) SECURITY: Copy prevent-clickjacking between
OutputPage and ParserOutput.
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 24 Aug 2014 06:47:35 +0200
mediawiki (1:1.19.17+dfsg-1) unstable; urgency=medium
* New upstream security and maintenance release:
- (bug 65839) SECURITY: Prevent external resources in SVG files.
- (bug 66428) MimeMagic: Don't seek before BOF. This has weird
side effects like only extracting the tail of the file partially
or not at all.
* Update lintian overrides
-- Thorsten Glaser <tg@mirbsd.de> Thu, 26 Jun 2014 09:57:03 +0200
mediawiki (1:1.19.16+dfsg-1) unstable; urgency=medium
* New upstream security and maintenance release:
- CVE-2014-3966 (bug 65501) SECURITY: Don't parse usernames as
wikitext on Special:PasswordReset.
* Update debian/upstream/signing-key.asc
-- Thorsten Glaser <tg@mirbsd.de> Wed, 11 Jun 2014 16:35:39 +0200
mediawiki (1:1.19.15+dfsg-2) unstable; urgency=high
* Depend on recent enough php5-common version to be able to use
php5{en,dis}mod in maintainer scripts (Closes: #743893)
* Urgency high because this rides on the previous security fix
-- Thorsten Glaser <tg@mirbsd.de> Tue, 08 Apr 2014 09:46:46 +0200
mediawiki (1:1.19.15+dfsg-1) unstable; urgency=medium
* New upstream security and maintenance release:
- Fixed resetting passwords
- (bug 58640) Fixed compatibility issue with PCRE 8.34 that
caused pages to appear blank or with missing text
-- Thorsten Glaser <tg@mirbsd.de> Thu, 03 Apr 2014 10:11:51 +0200
mediawiki (1:1.19.14+dfsg-1) unstable; urgency=medium
* New upstream security fix release (Closes: #742857):
- (bug 62497) SECURITY: Add CSRF token on Special:ChangePassword
- (bug 62467) Set a title for the context during import on the cli
* Use upstream-provided signing key bundle
-- Thorsten Glaser <tg@mirbsd.de> Fri, 28 Mar 2014 09:56:29 +0100
mediawiki (1:1.19.13+dfsg-1) unstable; urgency=medium
* New upstream security fix release:
- (bug 61362) Don't find links in the middle of api.php links
* Raise session max lifetime (Closes: #648823)
-- Thorsten Glaser <tg@mirbsd.de> Mon, 24 Mar 2014 09:42:23 +0100
mediawiki (1:1.19.12+dfsg-1) unstable; urgency=medium
[ Florian Weimer ]
* Add “Replaces: mediawiki-extensions-confirmedit”
[ Thorsten Glaser ]
* debian/watch: Change download location – the one we were using
didn’t have the new release, and the announcement pointed to a
different location – needs clarification which download URI is
canonical…
* debian/upstream/signing-key.asc: Add mah’s key, too…
* New upstream security fix release:
- (bug 60771) disallow iframe and unusual namespaces in SVG
- (bug 61346) make token comparison use constant time
* Fix stuff lintian pointed out (thanks)
-- Thorsten Glaser <tg@mirbsd.de> Fri, 28 Feb 2014 18:49:08 +0100
mediawiki (1:1.19.11+dfsg-1) unstable; urgency=medium
* New upstream security fix release:
- CVE-2014-1610 (bug 60339) remote code exec in Djvu thumbnailer
* Update upstream signing key location to devscript maintainers’
latest whim…
* Rely on uscan in get-orig-source instead of downloading manually
-- Thorsten Glaser <tg@mirbsd.de> Wed, 29 Jan 2014 10:10:39 +0100
mediawiki (1:1.19.10+dfsg-1) unstable; urgency=high
* New upstream security fix release:
- CVE-2013-4568 (bug 58088) Don't normalize U+FF3C to \ in CSS Checks
- CVE-2013-6452 (bug 57550) Disallow stylesheets in SVG Uploads
- CVE-2013-6453 (bug 58553) Return error on invalid XML for SVG Uploads
- CVE-2013-6454 (bug 58472) Disallow -o-link in styles
- CVE-2013-6472 (bug 58699) Fix RevDel log entry information leaks
-- Thorsten Glaser <tg@mirbsd.de> Tue, 14 Jan 2014 10:51:35 +0100
mediawiki (1:1.19.9+dfsg-2) unstable; urgency=medium
* Ship files in /etc/mediawiki-extensions/extensions-available/
for extensions shipped with the mediawiki core
* Correct typo in changelog for 1:1.19.9+dfsg-1
-- Thorsten Glaser <tg@mirbsd.de> Tue, 31 Dec 2013 14:00:37 +0100
mediawiki (1:1.19.9+dfsg-1) unstable; urgency=medium
[ Jonathan Wiltshire ]
* Re-work debian/rule:get-orig-source:
- use more conventional tools
- improve legibility
- safer use of temporary directories
* Guard against missing mod_php5 in Apache configuration
(Closes: #725162)
[ Thorsten Glaser ]
* Refresh patches against 1.19.9
* Handle /var/lib/mediawiki/extensions/* always as symlinks, for
both core and extra extensions, with upgrade path (Closes: #719208)
* Address updated lintian tags
* Update copyright file with things noted by Paul Tagliamonte, thanks!
-- Thorsten Glaser <tg@mirbsd.de> Tue, 31 Dec 2013 12:18:56 +0100
mediawiki (1:1.19.8+dfsg-2.2) unstable; urgency=high
* Non-maintainer upload
* Security fixes (Closes: #729629):
- Kevin Israel (Wikipedia user PleaseStand) identified and reported two
vectors for injecting Javascript in CSS that bypassed MediaWiki's
blacklist [CVE-2013-4567, CVE-2013-4568]
- Internal review while debugging a site issue discovered that MediaWiki
and the CentralNotice extension were incorrectly setting cache headers
when a user was autocreated, causing the user's session cookies to be
cached, and returned to other users [CVE-2013-4572]
* New Polish debconf translation, thanks to Magdalena Z. Kubot
(Closes: #731381)
-- David Prévot <taffit@debian.org> Sun, 08 Dec 2013 16:13:40 -0400
mediawiki (1:1.19.8+dfsg-2.1) unstable; urgency=low
* Provide includes/libs in mediawiki-classes (Closes: #703837)
-- David Prévot <taffit@debian.org> Wed, 23 Oct 2013 11:29:27 -0400
mediawiki (1:1.19.8+dfsg-2) unstable; urgency=low
[ Thorsten Glaser ]
* debian/rules: get-orig-source now leaves the repacked origtgz
in ./ ipv in ./debian/ according to Policy §4.9 (noticed by
Natureshadow)
* Add version guards to apache.conf
[ Jonathan Wiltshire ]
* Update apache.conf for Apache 2.4 syntax changes, and document
in debian/NEWS (Closes: #723620, #669832)
-- Jonathan Wiltshire <jmw@debian.org> Tue, 24 Sep 2013 19:04:42 +0100
mediawiki (1:1.19.8+dfsg-1) unstable; urgency=low
* mediawiki-math is now called mediawiki-extensions-math
⇒ update the package relationship fields
* Make my self-drawn CC images nicer and more consistent
* New upstream security release
* Secure the default images directory (Closes: #716884)
* Allow PDF upload (Closes: #716957)
* Nuke ref to ENOENT dir (Closes: #705107)
* Update debian/copyright information
* Pull upstream patch to fix variables (Closes: #709943)
* Sort patches ASCIIbetically; refresh them against new version
* For Apache 2.4, move configuration file (Closes: #669832)
-- Thorsten Glaser <tg@mirbsd.de> Thu, 05 Sep 2013 17:07:53 +0200
mediawiki (1:1.19.7+dfsg-1) unstable; urgency=low
* New low-impact upstream security release
* Refresh patches
* Change watch file to track upstream LTS version
* Replace trademarked image files by self-drawn Free ones
* Fix VCS-* URLs – prodded by lintian from experimental
* Policy 3.9.4 with no further changes needed
-- Thorsten Glaser <tg@mirbsd.de> Thu, 23 May 2013 11:03:39 +0000
mediawiki (1:1.19.6-1) unstable; urgency=low
* New upstream security release (Closes: #706601):
- SVG script filtering could be bypassed for Chrome and Firefox
clients by using an encoding that MediaWiki understood, but these
browsers interpreted as UTF-8. (CVE-2013-2031)
- Internal review discovered that extensions were not given the
opportunity to disable a password reset, which could lead to
circumvention of two-factor authentication (CVE-2013-2032)
-- Jonathan Wiltshire <jmw@debian.org> Sat, 11 May 2013 16:07:43 +0100
mediawiki (1:1.19.5-1) unstable; urgency=high
[ Platonides ]
* Update config URL in README.Debian (Closes: #703804)
[ Thorsten Glaser ]
* Re-add LocalSettings creation snippet for support of the
mediawiki-extensions Debian packaging (Closes: #703852)
* New upstream security-only release:
- (bug 47251) SECURITY: Disable external entities in Import
- (bug 46859) SECURITY: Disable external entities in XMLReader
- (bug 46084) SECURITY: Sanitize $limitReport before outputting
- (bug 43594) Fix notices displayed on PHP 5.4
- (bug 40585) Don't drop 'step="any"' in HTML input fields.
* Refresh patches against new upstream code
-- Thorsten Glaser <tg@mirbsd.de> Tue, 16 Apr 2013 11:04:05 +0200
mediawiki (1:1.19.4-1) unstable; urgency=high
* Urgency high for security fix
* New upstream release:
- New preference type - 'api'. Preferences of this type are not shown
on Special:Preferences, but are still available via the
action=options API.
- (bug 44010) Context is passed to UserGetLanguageObject.
- The recursion guard on RequestContext::getLanguage() was weakened.
- (bug 44135/bug 42441) Pass '2' instead of 'true' to CURLOPT_SSL_VERIFYHOST
- (bug 43518) API action=unblock should return the user name, not the
full user object (Closes: #702305)
- Increase timeout values for some tests
-- Jonathan Wiltshire <jmw@debian.org> Mon, 04 Mar 2013 23:06:30 +0000
mediawiki (1:1.19.3-2) unstable; urgency=low
* Add missing changelog entries to 1:1.19.3-1 upload (oops…)
* Upstream patch to fix XHTML issue in Special:Upload (BZ#40889)
* Upstream patch to fix another MySQLism (BZ#39635) (Closes: #700595)
* Update lintian overrides
-- Thorsten Glaser <tg@mirbsd.de> Mon, 18 Feb 2013 10:24:08 +0100
mediawiki (1:1.19.3-1) unstable; urgency=high
[ Thorsten Glaser ]
* Note: these changes were part of this upload, even though
they were not detailed in this changelog entry when uploading:
* <img> tags must always have an alt attribute
* fix DB upgrade FUBAR issue for PostgreSQL (BZ#29635)
* allow MySQL users to choose either PHP5 client library (Closes: #689758)
[ Dominik George ]
* Team upload
* New upstream version fixes security issues (Closes: #694998)
+ Prevent session fixation in Special:UserLogin (CVE-2012-5391)
https://bugzilla.wikimedia.org/show_bug.cgi?id=40995
+ Prevent linker regex from exceeding PCRE backtrack limit
https://bugzilla.wikimedia.org/show_bug.cgi?id=41400
[ Thorsten Glaser ]
* Fix spelling error in README.Debian (thanks lintian!)
-- Dominik George <nik@naturalnet.de> Wed, 12 Dec 2012 09:44:08 +0100
mediawiki (1:1.19.2-2) unstable; urgency=low
* debian/watch: mangle the epoch away so DDPO is green again
* Break mw-ext-fckeditor, it doesn’t work with 1.19 (Closes: #689375)
-- Thorsten Glaser <tg@mirbsd.de> Tue, 02 Oct 2012 14:09:42 +0200
mediawiki (1:1.19.2-1) unstable; urgency=low
[ Thorsten Glaser ]
* New upstream: security fixes for CVE-2012-4377, CVE-2012-4378,
CVE-2012-4379, CVE-2012-4380, CVE-2012-4381, CVE-2012-4382
(Closes: #686330)
* Prevent <table></table> without any <tr /> inside, globally
* Fix more cases of not checking $wgHtml5
* MW’s ID (XML) sanitiser is there for a reason, use it!
* Prevent <ul></ul> without any <li /> inside in MonoBook
* Fix invalid XHTML caused by code not honouring $wgHtml5
* Quell some PHP warnings from sloppy code
* Do the wfSuppressWarnings patch used with FusionForge right
* Add myself to Uploaders and quieten lintian a bit
* Do not replace patched jquery-tablesorter with unpatched one;
unbreaks sortable tables (Closes: #687519)
* Update versioned Breaks against fusionforge and mw-extensions
[ Jonathan Wiltshire ]
* Add Recommends on mediawiki-extensions-base and php-wikidiff2
-- Thorsten Glaser <tg@mirbsd.de> Thu, 20 Sep 2012 13:40:12 +0200
mediawiki (1:1.19.1-1) unstable; urgency=low
* New upstream bug fix release
Closes: #672818, 677895 (CVE-2012-2698)
- debian/rules: remove all .gitignore files too, since upstream
switched to git VCS
* Remove last traces of mediaiki-math binary package
* Remove CDBS logic and dependencies and use dh
auto-sequencer instead
* Depend on debhelper >=9 and use compat level 9; this
stops dh_pysupport adding files to the build
* Do not run update debconf translations on clean
* Disable patch texvc_location.patch; this really belongs in mediawiki-math
now and especially considering <1632437115.20120612191230@gmail.com>
* Add a versioned Breaks on fusionforge-plugin-mediawiki
* Upload to unstable
-- Jonathan Wiltshire <jmw@debian.org> Mon, 18 Jun 2012 15:25:25 +0100
mediawiki (1:1.19.0-1) experimental; urgency=low
* New upstream release
* Standards version 3.9.3 (no changes)
* Update debian/NEWS version
-- Jonathan Wiltshire <jmw@debian.org> Mon, 04 Jun 2012 20:14:14 +0100
mediawiki (1:1.18.1-1) experimental; urgency=low
* New upstream release (Closes: #613791, #619159, #550940, #460831)
* Remove patches integrated upstream in this version
* Standards version 3.9.2
* Drop mediawiki-math binary package, it is no longer shipped upstream
* Add sqlite3 to Recommends (Closes: #612212)
* Use system copies of javascript libraries where available
* Document upgrade procedure in debian/NEWS
* Debconf translation to Danish (Closes: #627848)
-- Jonathan Wiltshire <jmw@debian.org> Sun, 15 Jan 2012 00:10:18 +0000
mediawiki (1:1.15.5-10) unstable; urgency=low
* Team upload.
* Apply SQL fix for schema search paths by Roland Mas (#673125)
-- Thorsten Glaser <tg@mirbsd.de> Wed, 30 May 2012 16:50:36 +0200
mediawiki (1:1.15.5-9) unstable; urgency=high
* Team upload.
* Address MW security release 1.18.1-1 (Closes: #666269)
- CVE-2012-1578 MW#34212: doesn’t affect 1.15
- CVE-2012-1579 MW#34907: doesn’t affect 1.15
- CVE-2012-1580 MW#35317: doesn’t affect 1.15
- CVE-2012-1581 MW#35078: fix backported
- CVE-2012-1582 MW#35315: fix backported
* Apply some lintian cleanup
-- Thorsten Glaser <tg@mirbsd.de> Wed, 16 May 2012 15:01:06 +0200
mediawiki (1:1.15.5-8) unstable; urgency=low
* Fix reversing IPv4 address for SORBS blacklist; patch from
Nye Liu <nyet@nyet.org> (Closes: #658672)
* Backport a method called by CVE-2011-1580.patch (Closes: #658682)
* Fix warnings issued by PHP 5.4 (Closes: #661682)
* Suggest librsvg-bin (Closes: #644731)
* Demote database server to Suggests (Closes: #617561)
* Add dansk translation (Closes: #627848)
-- Thorsten Glaser <tg@mirbsd.de> Thu, 15 Mar 2012 12:52:09 +0100
mediawiki (1:1.15.5-7) unstable; urgency=high
* debian/patches/CVE-2011-4360.patch: remove – the information
disclosure does not happen on 1.15 and the patch would not
work anyway because the OutputPage object has no setTitle
method (this prevents a PHP fatal error when someone has no
permissions, instead reverting to the pre-1:1.15.5-4 behaviour
of showing a page asking the user to log in)
-- Thorsten Glaser <tg@mirbsd.de> Fri, 20 Jan 2012 17:13:28 +0100
mediawiki (1:1.15.5-6) unstable; urgency=low
[ Thorsten Glaser ]
* debian/patches/khtml_not_ff9.patch: new (Closes: #652948)
[ Jonathan Wiltshire ]
* debian/patches/CVE-2012-0046.patch: security fix for unintended exposure
of hidden content through cache pollution, CVE-2012-0046 (Closes: #655694)
-- Jonathan Wiltshire <jmw@debian.org> Fri, 13 Jan 2012 09:54:41 +0000
mediawiki (1:1.15.5-5) unstable; urgency=high
* Security fixes from upstream:
CVE-2011-1578 - XSS for IE <= 6
CVE-2011-1579 - CSS validation error in wikitext parser
CVE-2011-1580 - access control checks on transwiki import feature
CVE-2011-1587 - fix incomplete patch for CVE-2011-1578
-- Jonathan Wiltshire <jmw@debian.org> Sun, 18 Dec 2011 23:48:18 +0000
mediawiki (1:1.15.5-4) unstable; urgency=low
[ Thorsten Glaser ]
* debian/patches/fix_invalid_sql.patch: new (Closes: #615983)
[ Jonathan Wiltshire ]
* Security fixes from upstream (Closes: #650434):
CVE-2011-4360 - page titles on private wikis could be exposed
bypassing different page ids to index.php
CVE-2011-4361 - action=ajax requests were dispatched to the
relevant function without any read permission checks being done
-- Jonathan Wiltshire <jmw@debian.org> Wed, 30 Nov 2011 22:42:52 +0000
mediawiki (1:1.15.5-3) unstable; urgency=high
[ Thorsten Glaser ]
* debian/patches/fix_datetime.patch: new, convert argument into
the format expected by other methods, fixes date/time output
in e.g. the News/RSS extensions
[ Jonathan Wiltshire ]
* CVE-2011-0047: Protect against a CSS injection vulnerability
(closes: #611787)
* Update my email address
-- Jonathan Wiltshire <jmw@debian.org> Sun, 06 Feb 2011 15:53:48 +0000
mediawiki (1:1.15.5-2) testing-security; urgency=high
* CVE-2011-0003: Protect against clickjacking by sending the
X-Frame-Options header in all pages (except normal page views
and a few selected special pages). Patch as released by upstream
-- Jonathan Wiltshire <debian@jwiltshire.org.uk> Tue, 04 Jan 2011 22:39:26 +0000
mediawiki (1:1.15.5-1) unstable; urgency=high
[ Thorsten Glaser ]
* debian/patches/suppress_warnings.patch: new, suppress warnings
about session_start() being called twice also in the PHP error
log, not just MediaWiki’s, for example run from FusionForge
[ Jonathan Wiltshire ]
* New upstream security release:
- correctly set caching headers to prevent private data leakage
(closes: #590660, LP: #610782)
- fix XSS vulnerability in profileinfo.php
(closes: #590669, LP: #610819)
-- Jonathan Wiltshire <debian@jwiltshire.org.uk> Wed, 28 Jul 2010 12:23:04 +0100
mediawiki (1:1.15.4-2) unstable; urgency=low
[ Thorsten Glaser ]
* debian/control: add Vcs-SVN and Vcs-Browser
[ Jonathan Wiltshire ]
* debian/source/format: Switch to source format 3.0 (quilt)
* debian/rules: Drop CDBS quilt logic
* debian_specific_config.patch: Don't just redefine MW_INSTALL_PATH,
remove the original definition (LP: #406358)
* debian/README.source: document use of quilt and format 3.0 (quilt)
* New patch backup_documentation.patch improves documentation of
maintenance/dumpBackup.php (closes: #572355)
* Standards version 3.9.0 (no changes)
-- Jonathan Wiltshire <debian@jwiltshire.org.uk> Tue, 29 Jun 2010 14:20:35 +0100
mediawiki (1:1.15.4-1) unstable; urgency=high
[ Jonathan Wiltshire ]
* New upstream security release (closes: #585918).
* CVE-2010-1647:
Fix a cross-site scripting (XSS) vulnerability which allows
remote attackers to inject arbitrary web script or HTML via crafted
Cascading Style Sheets (CSS) strings that are processed as script by
Internet Explorer.
* CVE-2010-1648:
Fix a cross-site request forgery (CSRF) vulnerability in the login interface
which allows remote attackers to hijack the authentication of users for
requests that (1) create accounts or (2) reset passwords, related to the
Special:Userlogin form.
[ Romain Beauxis ]
* Put debian's package version in declared version.
Should help sysadmins to keep track of installed
versions, in particular with regard to security
updates.
* Added Jonathan Wiltshire to uploaders.
* Do not clan math dir if it does not exist (for instance
when running clean from SVN).
-- Romain Beauxis <toots@rastageeks.org> Mon, 21 Jun 2010 23:41:29 +0200
mediawiki (1:1.15.3-1) unstable; urgency=high
* New upstream release.
* Fixes security issue:
"MediaWiki was found to be vulnerable to login CSRF. An attacker who
controls a user account on the target wiki can force the victim to log
in as the attacker, via a script on an external website. If the wiki is
configured to allow user scripts, say with "$wgAllowUserJs = true" in
LocalSettings.php, then the attacker can proceed to mount a
phishing-style attack against the victim to obtain their password."
-- Romain Beauxis <toots@rastageeks.org> Fri, 16 Apr 2010 14:44:09 -0500
mediawiki (1:1.15.2-1) unstable; urgency=high
* New upstream release.
* Fixes security issue:
"Two security issues were discovered:
A CSS validation issue was discovered which allows editors to display
external images in wiki pages. This is a privacy concern on public
wikis, since a malicious user may link to an image on a server they
control, which would allow that attacker to gather IP addresses and
other information from users of the public wiki. All sites running
publicly-editable MediaWiki installations are advised to upgrade. All
versions of MediaWiki (prior to this one) are affected.
A data leakage vulnerability was discovered in thumb.php which affects
wikis which restrict access to private files using img_auth.php, or
some similar scheme. All versions of MediaWiki since 1.5 are affected."
* Updated standards.
* Removed section about upgrading from mediawiki1.x packages
in README.Debian since they do not exist in any supported distribution
anymore.
* Switched php5-gd and imagemagick in Suggests. Closes: #542008
* Backported patch from revision 51083 to fix a bug with invalid titles.
Closes: #537134
* Backported patch from revision 61090 to add a unique guid per RSS
feed element.
Closes: #383130
* Refreshed patches.
-- Romain Beauxis <toots@rastageeks.org> Mon, 15 Mar 2010 11:41:07 -0500
mediawiki (1:1.15.1-1) unstable; urgency=low
* New upstream release.
* Ack previous NMU, thanks to Nico Golde for taking care
of this.
-- Romain Beauxis <toots@rastageeks.org> Sun, 09 Aug 2009 10:46:41 -0500
mediawiki (1:1.15.0-1.1) unstable; urgency=high
* Non-maintainer upload by the Security Team.
* Fix cross-site scripting in [[Special:Block]]
(No CVE id yet; XSS-no-CVE.patch; Closes: #537634).
-- Nico Golde <nion@debian.org> Sun, 26 Jul 2009 18:11:07 +0200
mediawiki (1:1.15.0-1) unstable; urgency=low
* New upstream release.
* Upstream added support for OASIS documents.
Closes: #530328
* Refreshed quilt patches
* Bumped standards versions to 3.8.2
* Bumped compat to 7
* Pointed to GPL-2 in debian/copyright
* Added php5-sqlite to possible DB backend dependencies.
Closes: #501569
* Proofread README.Debian, upgrade is documented there.
Closes: #520121
-- Romain Beauxis <toots@rastageeks.org> Fri, 19 Jun 2009 01:38:50 +0200
mediawiki (1:1.14.0-1) unstable; urgency=low
* New upstream release.
* Fixed issues in the installer:
"A number of cross-site scripting (XSS) security vulnerabilities were
discovered in the web-based installer (config/index.php).
These vulnerabilities all require a live installer once the installer
has been used to install a wiki, it is deactivated.
Note that cross-site scripting vulnerabilities can be used to attack
any website in the same cookie domain. So if you have an uninstalled
copy of MediaWiki on the same site as an active web service, MediaWiki
could be used to attack the active service."
Closes: #514547
* Fixed typo in README.Debian
Closes: #515192
* Updated japanese debconf translation, thanks to Hideki Yamane
Closes: #510896
* Added a file in debian/copyright
-- Romain Beauxis <toots@rastageeks.org> Fri, 06 Mar 2009 20:29:17 +0100
mediawiki (1:1.13.3-1) unstable; urgency=low
* New upstream release.
* Fix CVE-2008-5249: XSS vulnerability in MediaWiki:
"An XSS vulnerability affecting all MediaWiki installations between
1.13.0 and 1.13.2."
Closes: #508868
* Fix CVE-2008-5250: several local script injection vulnerabilities
in MediaWiki:
"o A local script injection vulnerability affecting Internet Explorer
clients for all MediaWiki installations with uploads enabled.
o A local script injection vulnerability affecting clients with SVG
scripting capability (such as Firefox 1.5+), for all MediaWiki
installations with SVG uploads enabled."
Closes: #508869
* Fix CVE-2008-5252: CSRF vulnerability affecting the Special:Import
feature in MediaWiki:
"A CSRF vulnerability affecting the Special:Import feature, for all
MediaWiki installations since the feature was introduced in 1.3.0."
Closes: #508870
-- Romain Beauxis <toots@rastageeks.org> Thu, 18 Dec 2008 02:37:58 +0100
mediawiki (1:1.13.2-1) unstable; urgency=low
* New upstream release
* Fix CVE-2008-4408: XSS in mediawiki:
"Cross-site scripting (XSS) vulnerability allows remote attackers
to inject arbitrary web script or HTML via the useskin parameter
to an unspecified component."
Closes: #501115
-- Romain Beauxis <toots@rastageeks.org> Sat, 11 Oct 2008 15:02:39 +0200
mediawiki (1:1.13.0-2) unstable; urgency=low
* Removed buggy postgresql patch
Closes: #497042
-- Romain Beauxis <toots@rastageeks.org> Sat, 30 Aug 2008 14:06:47 +0200
mediawiki (1:1.13.0-1) unstable; urgency=low
* New upstream release
* Fixed watch file. Closes: #490009
* Refreshed patches
* Bumped standard-version to 3.8.0
* Fixed latex-related dependencies in mediawiki-math
* Removed obsolete linda override, thanks lintian !
-- Romain Beauxis <toots@rastageeks.org> Sun, 17 Aug 2008 11:01:43 +0200
mediawiki (1:1.12.0-2) unstable; urgency=low
* Fixed postgresql dependency
Closes: #472987
* Added instructions to install and upgrade
Closes: #472990, #472831
-- Romain Beauxis <toots@rastageeks.org> Mon, 24 Mar 2008 02:49:15 +0100
mediawiki (1:1.12.0-1) unstable; urgency=low
* New upstream release
* Updated patch for postfix support: dropped what
has been implemented upstream
* Refreshed other patches, thanks to quilt
* Changed postgresql recommends to "postgresql" package
Closes: #469582
-- Romain Beauxis <toots@rastageeks.org> Mon, 24 Mar 2008 02:20:12 +0100
mediawiki (1:1.11.2-2) unstable; urgency=high
* Added patch to fix pgsql select, thanks to Marc Dequènes
Closes: #469841
* Upated README.Debian to mention php5-gd instead of php5-gd2
and texlive-latex-base instead to tetex-bin.
Closes: #469558
* still setting urgency to high since previous upload didn't make it
to testing.
-- Romain Beauxis <toots@rastageeks.org> Mon, 03 Mar 2008 13:58:57 +0100
mediawiki (1:1.11.2-1) unstable; urgency=high
* New upstream release
* Security fix:
"Possible cross-site information leaks using the callback
parameter for JSON-formatted results in the API are prevented by
dropping user credentials."
* Added informations on LocalSettings.php in README.Debian
Closes: #462609
-- Romain Beauxis <toots@rastageeks.org> Mon, 03 Mar 2008 13:16:27 +0100
mediawiki (1:1.11.1-1) unstable; urgency=high
* New upstream release
* A potential XSS injection vector affecting
Microsoft Internet Explorer users has been
closed.
-- Romain Beauxis <toots@rastageeks.org> Sat, 26 Jan 2008 02:57:53 +0100
mediawiki (1:1.11.0-4) unstable; urgency=low
* Really add the patch for #459312
* Added also patch to fix #459617
Closes: #459617
* Merged two previous patches
-- Romain Beauxis <toots@rastageeks.org> Fri, 18 Jan 2008 16:14:59 +0100
mediawiki (1:1.11.0-3) unstable; urgency=low
* Really remove debian specific scripts
* Backported patch to fix unserialize with postgre
Closes: #459312
* Added finnish translation of the debconf templates, thanks to Esko
Arajärvi. Closes: #456983
* Updated standards to 3.7.3 (no changes)
-- Romain Beauxis <toots@rastageeks.org> Mon, 07 Jan 2008 15:03:15 +0100
mediawiki (1:1.11.0-2) unstable; urgency=low
* Initial upload of 1.11.0 to unstable
-- Romain Beauxis <toots@rastageeks.org> Sat, 03 Nov 2007 16:39:47 +0100
mediawiki (1:1.11.0-1) experimental; urgency=low
* Removed mediawikiX versioned packages
* Updated to mediawiki 1.11
* Removed automatic upgrade script
* Updated README.Debian (Closes: #442311, #442302)
* Changed default upload directory (Closes: #444445)
-- Romain Beauxis <toots@rastageeks.org> Sun, 21 Oct 2007 20:54:00 +0200
mediawiki (1:1.10) unstable; urgency=low
* Switched to mediawiki1.10
* Mediawiki1.10 recommends mediawiki-math (Closes: #428021)
-- Romain Beauxis <toots@rastageeks.org> Tue, 10 Jul 2007 19:29:01 +0200
mediawiki (1:1.9) unstable; urgency=low
* Switched to mediawiki1.9, closes: #392932
* Corrected typo in control, closes: #414121
* Seperated -math extension to a single package, closes: #401714
-- Romain Beauxis <toots@rastageeks.org> Thu, 12 Apr 2007 17:02:05 +0200
mediawiki (1:1.7) unstable; urgency=low
* Initial Release
-- Romain Beauxis <toots@rastageeks.org> Mon, 6 Nov 2006 15:36:44 +0100
|