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
|
php-codecoverage (12.3.1+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Do not use common ligatures
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 19 Jun 2025 22:10:21 +0200
php-codecoverage (12.3.0+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Validate generated Clover XML against Clover XSD
* Prepare release
[ David Prévot ]
* Update copyright
-- David Prévot <taffit@debian.org> Sun, 25 May 2025 12:18:55 +0200
php-codecoverage (12.2.1+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Use SHA-256 instead of MD5 to generate cache keys for static analysis
cache (as SHA-256 is significantly faster than MD5 with PHP >= 8.4 on
modern CPUs)
* Reduce number of file_get_contents() and hash() calls
* Prepare release
[ Markus Staab ]
* Use more efficient AttributeParentConnectingVisitor
[ François Gannaz ]
* report dashboard uses lib billboard for charts
[ David Prévot ]
* Update embedded source
-- David Prévot <taffit@debian.org> Mon, 05 May 2025 08:46:09 +0200
php-codecoverage (12.1.2+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Consider child classes of child classes for ClassesThatExtendClass target
* Prepare release
[ David Prévot ]
* Mimic install path for tests
-- David Prévot <taffit@debian.org> Sun, 06 Apr 2025 11:40:31 +0200
php-codecoverage (12.1.0+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Return the number of cache hits and cache misses
* Rename
[ David Prévot ]
* Update Standards-Version to 4.7.2
-- David Prévot <taffit@debian.org> Wed, 19 Mar 2025 08:23:53 +0100
php-codecoverage (12.0.4+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 27 Feb 2025 13:23:02 +0100
php-codecoverage (12.0.3+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Target parent class(es) with #[CoversClass] attribute
* Prepare release
[ David Prévot ]
* Build with PHPUnit 12
-- David Prévot <taffit@debian.org> Wed, 19 Feb 2025 18:26:25 +0100
php-codecoverage (12.0.2+dfsg-1) experimental; urgency=medium
* Upload new major to experimental
[ Sebastian Bergmann ]
* Implement CodeCoverage::validate(TargetCollection)
* Do not depend on sebastian/code-unit-reverse-lookup
* Bump copyright year
* Treat enumerations as classes
* Use Version::id() instead of "MD5 over source code" for encoding static
analysis cache format in cache keys for static analysis cache
* Prepare release
[ David Prévot ]
* Update copyright (years)
* Update autoload for tests
* Drop phpunit-code-unit-reverse-lookup from Build-Depends
-- David Prévot <taffit@debian.org> Sat, 08 Feb 2025 20:00:10 +0100
php-codecoverage (11.0.8+dfsg-3) unstable; urgency=medium
* Source-only upload for testing migration
-- David Prévot <taffit@debian.org> Fri, 10 Jan 2025 12:06:43 +0100
php-codecoverage (11.0.8+dfsg-2) unstable; urgency=medium
* Upload to unstable in sync with PHPUnit 11
-- David Prévot <taffit@debian.org> Fri, 10 Jan 2025 09:19:24 +0100
php-codecoverage (11.0.8+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ uncaught ]
* Switch to click event for toggling coverage popover (closes #1053).
-- David Prévot <taffit@debian.org> Wed, 25 Dec 2024 13:41:54 +0100
php-codecoverage (11.0.7+dfsg-1) experimental; urgency=medium
[ Jeremy Postlethwaite ]
* GH-1036 - Bootstrap 5 upgrade without theme feature.
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Upgrade Bootstrap to version 5
-- David Prévot <taffit@debian.org> Sun, 13 Oct 2024 11:00:10 +0100
php-codecoverage (11.0.6+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Bump dependencies (so that users that install using Composer's
--prefer-lowest CLI option also get recent versions)
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 02 Sep 2024 13:57:29 +0200
php-codecoverage (11.0.5+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.7.0
* Drop break satisfied in oldstable
-- David Prévot <taffit@debian.org> Mon, 08 Jul 2024 23:12:30 +0200
php-codecoverage (11.0.3+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 14 Mar 2024 07:57:20 +0100
php-codecoverage (11.0.2+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Andreas Möller ]
* Fix: Pad lines in code coverage report only when colors are shown
-- David Prévot <taffit@debian.org> Sun, 10 Mar 2024 17:32:09 +0100
php-codecoverage (11.0.1+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Do not use implicitly nullable parameters and prepare release
[ David Prévot ]
* Force system dependencies loading
-- David Prévot <taffit@debian.org> Sun, 03 Mar 2024 09:10:23 +0100
php-codecoverage (11.0.0+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Start development of next major version
* Remove support for PHP-Parser 4
* Bump copyright year
* Prepare release
[ David Prévot ]
* Update copyright (years)
-- David Prévot <taffit@debian.org> Sun, 04 Feb 2024 14:04:33 +0100
php-codecoverage (10.1.11+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Support nikic/php-parser ^5.0
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 22 Dec 2023 13:53:51 +0100
php-codecoverage (10.1.10+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Doug Wright ]
* Fixes #1023 Strip Xdebug annotations from function names in traits
-- David Prévot <taffit@debian.org> Tue, 12 Dec 2023 07:47:43 +0100
php-codecoverage (10.1.9+dfsg-1) experimental; urgency=medium
[ Filippo Tessarotto ]
* Fix one-line method for anonymous classes
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 26 Nov 2023 11:47:23 +0100
php-codecoverage (10.1.8+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Filippo Tessarotto ]
* Fix interface precedence over method handling
-- David Prévot <taffit@debian.org> Sat, 18 Nov 2023 14:56:04 +0100
php-codecoverage (10.1.7+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Filippo Tessarotto ]
* Fix `new` in initializers
-- David Prévot <taffit@debian.org> Thu, 05 Oct 2023 13:27:47 +0200
php-codecoverage (10.1.6+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Doug Wright ]
* #1012 Cobertura report pulls functions from report scope, not the
individual element
-- David Prévot <taffit@debian.org> Wed, 20 Sep 2023 08:53:35 +0530
php-codecoverage (10.1.5+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Filippo Tessarotto ]
* Avoid serialization of cache data in PHP report
-- David Prévot <taffit@debian.org> Tue, 12 Sep 2023 20:32:53 +0530
php-codecoverage (10.1.4+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 03 Sep 2023 03:12:53 +0530
php-codecoverage (10.1.3+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Include configuration settings that affect source code parsing in static
analysis cache keys
* Do not (try to) create a directory when the target contains "://"
* Prepare release
[ Rui Filipe Da Cunha Alves ]
* Add cache to Coverage Report Directory in order to avoid issues with
multiple reporter when using fibers.
-- David Prévot <taffit@debian.org> Thu, 27 Jul 2023 07:44:12 +0200
php-codecoverage (10.1.2+dfsg-1) experimental; urgency=medium
[ Filippo Tessarotto ]
* Fix GroupUse
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 24 May 2023 01:08:33 +0200
php-codecoverage (10.1.1+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Migrate to PHPUnit 10.1
* Prepare release
[ David Prévot ]
* Bump phpunit minimal version
-- David Prévot <taffit@debian.org> Mon, 17 Apr 2023 21:17:19 +0200
php-codecoverage (10.1.0+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Deprecate methods that are no longer used by PHPUnit
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 15 Apr 2023 09:19:43 +0200
php-codecoverage (10.0.2+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Improve the legend on the file pages of the HTML code coverage report
* Rename ChangeLog to prevent conflicts
* Prepare release
[ David Prévot ]
* Adapt to changed upstream changelog filename
-- David Prévot <taffit@debian.org> Mon, 06 Mar 2023 19:06:42 +0100
php-codecoverage (10.0.1+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 26 Feb 2023 09:32:19 +0100
php-codecoverage (10.0.0+dfsg-1) experimental; urgency=medium
* Upload new major version to experimental
[ Sebastian Bergmann ]
* Drop support for PHP 7.4
* Drop support for PHP 8.0
* Add Security Policy
* Prepare release
[ David Prévot ]
* Ship security notice
* d/copyright: Syntax fix
* Set upstream metadata fields: Security-Contact.
* Use phpunit 10 for tests
-- David Prévot <taffit@debian.org> Tue, 07 Feb 2023 13:27:54 +0100
php-codecoverage (9.2.24+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Reformat so that tools recognize the license
* Bump copyright year
* Prepare release
[ David Prévot ]
* Update standards version to 4.6.2, no changes needed.
* Update copyright (years and license)
-- David Prévot <taffit@debian.org> Mon, 30 Jan 2023 13:18:41 +0100
php-codecoverage (9.2.23+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Thu, 29 Dec 2022 13:19:57 +0100
php-codecoverage (9.2.22+dfsg-1) unstable; urgency=medium
[ Filippo Tessarotto ]
* Throw: mark as executable expression line regardless of type
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 21 Dec 2022 06:33:58 +0100
php-codecoverage (9.2.21+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 17 Dec 2022 10:30:09 +0100
php-codecoverage (9.2.19+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Michael Voříšek ]
* Fix executable lines analysis
-- David Prévot <taffit@debian.org> Tue, 22 Nov 2022 07:32:07 +0100
php-codecoverage (9.2.18+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Andrew Nagy ]
* Fix cobertura package name
[ Michael Voříšek ]
* Fix test for improved float comparison
[ Filippo Tessarotto ]
* Fix: return with multiline constant expr only must contain the last line
-- David Prévot <taffit@debian.org> Sat, 29 Oct 2022 11:04:49 +0200
php-codecoverage (9.2.17+dfsg-2) unstable; urgency=medium
* Fix test for improved float comparison (Closes: #1020113)
-- David Prévot <taffit@debian.org> Sun, 18 Sep 2022 23:13:16 +0200
php-codecoverage (9.2.17+dfsg-1) unstable; urgency=medium
[ Michael Voříšek ]
* Fix FS caching with open_basedir
* Check isFile in Filter::isExcluded if really included
* Use md5 for cache hashing instead of weak crc32
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 31 Aug 2022 08:34:39 +0200
php-codecoverage (9.2.16+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ Dan Hemberger ]
* Use consistent color in first column of HTML Report
[ David Prévot ]
* Drop now useless debian/pkg-php-tools-* files
* Set XDEBUG_MODE=coverage
-- David Prévot <taffit@debian.org> Thu, 25 Aug 2022 06:21:53 +0200
php-codecoverage (9.2.15+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.6.1
-- David Prévot <taffit@debian.org> Sat, 28 May 2022 20:42:27 +0200
php-codecoverage (9.2.14+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 05 Mar 2022 15:18:40 +0100
php-codecoverage (9.2.11+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update copyright (years)
-- David Prévot <taffit@debian.org> Sat, 19 Feb 2022 15:17:20 -0400
php-codecoverage (9.2.10+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 06 Dec 2021 21:51:48 -0400
php-codecoverage (9.2.9+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Closes #882
-- David Prévot <taffit@debian.org> Fri, 19 Nov 2021 15:32:02 -0400
php-codecoverage (9.2.8+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 30 Oct 2021 15:36:23 -0400
php-codecoverage (9.2.7+dfsg-1) unstable; urgency=medium
* Upload to unstable now that Bullseye has been released
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update standards version to 4.6.0, no changes needed.
* Drop pkg-php-tools overrides for php-parser
-- David Prévot <taffit@debian.org> Thu, 07 Oct 2021 14:29:05 -0400
php-codecoverage (9.2.6+dfsg-1) experimental; urgency=medium
* Upload to experimental during the freeze
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Provide phpunit-php-code-coverage
* Simplify gbp import-orig (and check signature)
* Generate phpabtpl at build time
* Use dh-sequence-phpcomposer instead of pkg-php-tools
* Update copyright (years)
* Extend clean up
-- David Prévot <taffit@debian.org> Thu, 08 Apr 2021 21:00:45 -0400
php-codecoverage (9.2.5+dfsg-3) unstable; urgency=medium
* Use minify instead of uglifyjs (Closes: #979928)
* Install /u/s/p/autoloaders file
* Install /u/s/p/overrides file
-- David Prévot <taffit@debian.org> Tue, 12 Jan 2021 09:50:42 -0400
php-codecoverage (9.2.5+dfsg-2) unstable; urgency=medium
* Source upload now that everything is in place
-- David Prévot <taffit@debian.org> Sun, 20 Dec 2020 17:25:54 -0400
php-codecoverage (9.2.5+dfsg-2~stage1) unstable; urgency=medium
* Upload to unstable in sync with PHPUnit 9
-- David Prévot <taffit@debian.org> Sun, 20 Dec 2020 15:40:50 -0400
php-codecoverage (9.2.5+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
* Update watch file format version to 4.
* Update Standards-Version to 4.5.1
-- David Prévot <taffit@debian.org> Thu, 10 Dec 2020 10:25:39 -0400
php-codecoverage (9.2.0+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 04 Oct 2020 11:29:47 -0400
php-codecoverage (9.1.11+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 19 Sep 2020 06:55:35 -0400
php-codecoverage (9.1.8+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 07 Sep 2020 07:56:37 -0400
php-codecoverage (9.1.7+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 06 Sep 2020 21:58:13 -0400
php-codecoverage (9.1.6+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Rename main branch to debian/latest (DEP-14)
-- David Prévot <taffit@debian.org> Wed, 02 Sep 2020 17:15:02 -0400
php-codecoverage (9.1.5+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 29 Aug 2020 10:28:45 -0400
php-codecoverage (9.1.4+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 17 Aug 2020 19:23:49 +0200
php-codecoverage (9.0.0+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Depend on PHPUnit 9.3
* Update to Bootstrap 4.5.0
* Update to jQuery 3.5.1
* Depend on sebastian/complexity ^2.0
* Prepare release
[ David Prévot ]
* Adapt packaging to updated dependencies
* Set Rules-Requires-Root: no.
* Build-Depend on php-pcov for the testsuite
-- David Prévot <taffit@debian.org> Fri, 07 Aug 2020 11:16:54 +0200
php-codecoverage (8.0.2+dfsg-2) experimental; urgency=medium
* Bump minimal phpunit version to 9
-- David Prévot <taffit@debian.org> Sun, 31 May 2020 11:12:53 -1000
php-codecoverage (8.0.2+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Document gbp import-ref usage
* Use debhelper-compat 13
* Simplify override_dh_auto_test
* Revert "Temporary use installed class for testing"
-- David Prévot <taffit@debian.org> Wed, 27 May 2020 10:24:11 -1000
php-codecoverage (8.0.1+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sun, 23 Feb 2020 11:48:51 -1000
php-codecoverage (8.0.0+dfsg-1) experimental; urgency=medium
* Upload version compatible with PHPUnit 9 to experimental
[ Sebastian Bergmann ]
* Bump copyright year
* Drop support for PHP 7.2
* Update ChangeLog
* Prepare release
[ David Prévot ]
* debian/autoload.php.tpl: Adapt to php-text-template new path
* debian/changelog: Wrap long lines in changelog entries: 5.2.4+dfsg-1.
* debian/control: Update standards version to 4.5.0
* debian/copyright: Update copyright (years)
* debian/rules: Temporary use installed class for testing
* debian/upstream/metadata:
set fields Bug-Database, Bug-Submit, Repository, Repository-Browse
-- David Prévot <taffit@debian.org> Fri, 07 Feb 2020 23:03:41 -1000
php-codecoverage (7.0.10+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 20 Nov 2019 22:08:03 -1000
php-codecoverage (7.0.8+dfsg1-1) unstable; urgency=medium
* Use libjs-d3 instead of embedded copy
* Adapt packaging to libjs-bootstrap4 new install path
* Set upstream metadata fields: Repository.
* Drop versioned dependency satisfied before stable
* Update Standards-Version to 4.4.1
-- David Prévot <taffit@debian.org> Sat, 19 Oct 2019 14:43:59 -1000
php-codecoverage (7.0.8+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Update to Bootstrap 4.3.1
* Update to jQuery 3.4.1
* Update to popper.js 1.15.0
* Prepare release
[ David Prévot ]
* Use libjs-popper.js instead of embedded copy
* Use libjs-bootstrap4 instead of libjs-bootstrap
-- David Prévot <taffit@debian.org> Sat, 21 Sep 2019 17:08:25 -1000
php-codecoverage (7.0.7+dfsg-2) unstable; urgency=medium
* Upload to unstable in sync with PHPUnit 8
* Extend d/clean for PHPUnit 8
-- David Prévot <taffit@debian.org> Fri, 13 Sep 2019 15:14:17 -1000
php-codecoverage (7.0.7+dfsg-1) experimental; urgency=medium
[ Sebastian Bergmann ]
* Bump required version of php-token-stream
[ David Prévot ]
* Add self to Uploaders
-- David Prévot <taffit@debian.org> Fri, 26 Jul 2019 10:08:05 -0300
php-codecoverage (7.0.6+dfsg-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Bump required version of php-token-stream
[ David Prévot ]
* Update Standards-Version to 4.4.0
-- David Prévot <taffit@debian.org> Fri, 12 Jul 2019 01:40:10 -0300
php-codecoverage (7.0.5+dfsg-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Mon, 17 Jun 2019 09:47:00 -1000
php-codecoverage (7.0.3+dfsg-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 27 Feb 2019 21:12:24 -1000
php-codecoverage (7.0.2+dfsg-1) experimental; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 15 Feb 2019 22:22:43 -1000
php-codecoverage (7.0.1+dfsg-1) experimental; urgency=medium
* Team upload to experimental since phpunit/sid currently depends on
php-codecoverage (<< 7~~)
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Adapt testsuite to new version
* Update copyright (years)
* Use debhelper-compat 12
* Update Standards-Version to 4.3.0
-- David Prévot <taffit@debian.org> Fri, 01 Feb 2019 16:52:11 -1000
php-codecoverage (6.1.4+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 02 Nov 2018 07:17:29 +1300
php-codecoverage (6.1.3+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Tue, 23 Oct 2018 18:10:11 -1000
php-codecoverage (6.1.1+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Delete old ChangeLog files
* Allow sebastian/environment ^4.0
* Prepare release
[ Remon van de Kamp ]
* Update bootstrap for HTML coverage to version 4
[ David Prévot ]
* Drop old changelog entries removed upstream
* Update copyright (years)
* Adapt package to removed files (Closes: #908428)
* Add popper.js sources
-- David Prévot <taffit@debian.org> Fri, 19 Oct 2018 11:40:31 -1000
php-codecoverage (6.0.8+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Remove superfluous realpath() call
* Prepare release
[ Netmosfera ]
* Cache the result of `is_file()` calls.
[ David Prévot ]
* Use debhelper-compat 11
* Drop get-orig-source target
* Use https in Format
* Update Standards-Version to 4.2.1
-- David Prévot <taffit@debian.org> Sat, 06 Oct 2018 09:42:13 -1000
php-codecoverage (6.0.7+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Use phpunit/php-file-iterator ^2.0
* Prepare release
[ David Prévot ]
* Adapt homemade autoload to php-file-iterator 2
* Use recent PHPUnit for the tests
-- David Prévot <taffit@debian.org> Wed, 20 Jun 2018 10:31:08 -1000
php-codecoverage (6.0.4+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 16 May 2018 19:03:04 -1000
php-codecoverage (6.0.3+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update Standards-Version to 4.1.4
-- David Prévot <taffit@debian.org> Fri, 20 Apr 2018 09:35:46 -1000
php-codecoverage (6.0.1+dfsg-2) unstable; urgency=medium
* Team upload, to unstable, with the rest of the latest PHPUnit stack
* Drop Luis Uribe from Uploaders (Closes: #894004)
-- David Prévot <taffit@debian.org> Thu, 29 Mar 2018 10:08:15 -1000
php-codecoverage (6.0.1+dfsg-1) experimental; urgency=medium
* Team upload to experimental since phpunit/sid currently depends on
php-codecoverage (<< 6~~)
[ Sebastian Bergmann ]
* Start development of php-code-coverage 6.0
* Update ChangeLog
* Prepare release
[ David Prévot ]
* Move project repository to salsa.d.o
* Update Standards-Version to 4.1.3
-- David Prévot <taffit@debian.org> Sun, 04 Mar 2018 18:44:18 -1000
php-codecoverage (5.3.0+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Bump copyright year
* Add option to ignore forceCoversAnnotation=true for a single test
* Prepare release
[ David Prévot ]
* Update copyright (years)
* Update Standards-Version to 4.1.2
-- David Prévot <taffit@debian.org> Fri, 08 Dec 2017 17:38:18 -1000
php-codecoverage (5.2.4+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Update fixture for php-token-stream ^2.0 (anonymous function ->
anonymousFunction#%d#%d)
* Prepare release
-- David Prévot <taffit@debian.org> Fri, 01 Dec 2017 16:16:16 -1000
php-codecoverage (5.2.2+dfsg-2) unstable; urgency=medium
* Team upload
* Upload to unstable, with the rest of the latest PHPUnit stack
* Build-depend on recent phpunit (Closes: #877245)
* Update Standards-Version to 4.1.1
-- David Prévot <taffit@debian.org> Sat, 25 Nov 2017 16:57:58 -1000
php-codecoverage (5.2.2+dfsg-1) experimental; urgency=medium
* Team upload
* Upload version only compatible with latest PHPUnit to experimental
[ Sebastian Bergmann ]
* Allow phpunit/php-token-stream ^2.0
* Allow sebastian/environment ^3.0
* Prepare release
[ David Prévot ]
* Drop Thomas Goirand from uploaders as he requested
* Adapt package to new php-tokenizer dependency
* Update Standards-Version to 4.1.0
* Adapt test calls to now common build.xml path
* Adapt d/rules to removed build directory upstream
* Ensure the local class takes precedence during tests
-- David Prévot <taffit@debian.org> Wed, 23 Aug 2017 15:44:52 -1000
php-codecoverage (4.0.0+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Initial work on moving to namespaces
* Update HTML assets
* Prepare release
[ David Prévot ]
* Update files path for version 4
* Update copyright and missing sources
-- David Prévot <taffit@debian.org> Sat, 04 Jun 2016 14:06:24 -0400
php-codecoverage (3.3.3+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Sat, 28 May 2016 18:49:14 -0400
php-codecoverage (3.3.1+dfsg-2) unstable; urgency=medium
* Team upload
[ Remi Collet ]
* Fix for phpunit-environment 1.3.6 (Closes: #824047)
-- David Prévot <taffit@debian.org> Wed, 11 May 2016 13:57:19 -0400
php-codecoverage (3.3.1+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Handle lines with declare statements correctly
[ David Prévot ]
* Update Standards-Version to 3.9.8
-- David Prévot <taffit@debian.org> Sun, 10 Apr 2016 20:33:53 -0400
php-codecoverage (3.3.0+dfsg-1) unstable; urgency=medium
* Team upload
* Revert "Workaround #814858", and build with recent pkg-php-tools for the
PHP 7.0 transition.
-- David Prévot <taffit@debian.org> Sat, 05 Mar 2016 19:43:22 -0400
php-codecoverage (3.2.1+dfsg-1) unstable; urgency=medium
* Team upload
[ Marco Pivetta ]
* In order to support PHP 7.0, token stream PHP7 tokens are required
[ David Prévot ]
* Convert build-dependencies to be PHP 7.0 ready (Closes: #814816)
* Workaround #814858.
Workaround the ongoing yet not ready PHP 7.0 transition:
- build-depend on php-cli to use php7.0 at build time;
- pkgtools called with -v triggers a segfault;
-- David Prévot <taffit@debian.org> Mon, 22 Feb 2016 23:03:05 -0400
php-codecoverage (3.2.0+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* New phpunit-code-unit-reverse-lookup dependency
-- David Prévot <taffit@debian.org> Sat, 13 Feb 2016 14:33:53 -0400
php-codecoverage (3.1.1+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Update Standards-Version to 3.9.7
* Simplify lack of PSR-4 support workaround
-- David Prévot <taffit@debian.org> Fri, 05 Feb 2016 15:27:01 -0400
php-codecoverage (3.1.0+dfsg-1) unstable; urgency=medium
* Team upload
[ Maks3w ]
* Remove old feature mapTestClassNameToCoveredClassName
* Add method visibility to Clover report
* Add cyclomatic complexity to Clover report
[ Sebastian Bergmann ]
* Prepare release
[ Christian Rishøj ]
* PHP 7 compatibility
-- David Prévot <taffit@debian.org> Sat, 16 Jan 2016 20:30:44 -0400
php-codecoverage (3.0.2+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Revert "Force loading of xdebug"
-- David Prévot <taffit@debian.org> Sat, 21 Nov 2015 12:07:24 -0400
php-codecoverage (3.0.1+dfsg-3) unstable; urgency=medium
* Binary upload, since phpunit can’t be installed currently.
-- David Prévot <taffit@debian.org> Mon, 02 Nov 2015 14:53:13 -0400
php-codecoverage (3.0.1+dfsg-2) unstable; urgency=medium
* Team upload, to unstable since everything is in place
* Revert "Temporarily drop patch"
* Bump build-dependencies
-- David Prévot <taffit@debian.org> Fri, 30 Oct 2015 15:51:10 -0400
php-codecoverage (3.0.1+dfsg-1) experimental; urgency=medium
* Team upload, to experimental since current phpunit depends on
php-codecoverage (<< 3~~)
[ Sebastian Bergmann ]
* Drop support for PHP < 5.6
* Add ChangeLog for PHP_CodeCoverage 3.0
[ David Prévot ]
* Revert "Track version 2 as currently needed by phpunit"
* Temporarily drop patch and use the installed package for tests
-- David Prévot <taffit@debian.org> Mon, 26 Oct 2015 15:36:57 -0400
php-codecoverage (2.2.4+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Fix CS/WS issues
* Update nv.d3.js
* Initial work on ChangeLog
[ David Prévot ]
* Track version 2 as currently needed by phpunit
* Use now available upstream changelog
* Update copyright and missing sources for nvd3
* Force loading of xdebug (Closes: #796408)
-- David Prévot <taffit@debian.org> Sun, 25 Oct 2015 23:00:24 -0400
php-codecoverage (2.1.7+dfsg-1) unstable; urgency=medium
* Team upload
-- David Prévot <taffit@debian.org> Sat, 11 Jul 2015 17:04:24 -0400
php-codecoverage (2.1.6+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Make threshold configurable
-- David Prévot <taffit@debian.org> Mon, 29 Jun 2015 17:45:35 -0400
php-codecoverage (2.1.5+dfsg-1) unstable; urgency=medium
* Team upload
[ Jeremy Benoist ]
* Restore compatibility with PHP 5.3
-- David Prévot <taffit@debian.org> Sun, 14 Jun 2015 18:05:19 -0400
php-codecoverage (2.1.4+dfsg-1) unstable; urgency=medium
* Team upload
[ Sebastian Bergmann ]
* Prepare release
[ Graham Campbell ]
* Updated holder.js to 2.7.1
* Updated d3 libs
[ David Prévot ]
* Update copyright and missing sources
* Minify JavaScript files at build time
* Minify CSS file from source
* Simplify phpunit call
-- David Prévot <taffit@debian.org> Mon, 08 Jun 2015 17:58:55 -0400
php-codecoverage (2.0.16+dfsg-1) unstable; urgency=medium
* Team upload, to unstable since Jessie is released
[ Sebastian Bergmann ]
* Prepare release
-- David Prévot <taffit@debian.org> Wed, 15 Apr 2015 23:31:14 -0400
php-codecoverage (2.0.15+dfsg-1) experimental; urgency=medium
* Team upload, to experimental to respect the freeze
[ Graham Campbell ]
* Updated to bootstrap 3.3.2
* Updated d3 from 3.4.11 to 3.4.13
* Updated holder from 2.3.2 to 2.4.1
[ Sebastian Bergmann ]
* Prepare release
[ Henrique Moody ]
* Update license and copyright in all files
[ David Prévot ]
* Load dependencies (Closes: #777380)
* Use recent phpunit-environment
* Update missing sources
* Update copyright
-- David Prévot <taffit@debian.org> Tue, 10 Feb 2015 21:19:29 -0400
php-codecoverage (2.0.11+dfsg-3) unstable; urgency=medium
* Team upload
* Use libjs-bootstrap
* Use repacksuffix feature of uscan
-- David Prévot <taffit@debian.org> Sun, 26 Oct 2014 04:54:12 -0400
php-codecoverage (2.0.11+dfsg-2) unstable; urgency=medium
* Team upload
* Upload to unstable, as needed by phpunit 4
* Bump standards version to 3.9.6
-- David Prévot <taffit@debian.org> Sat, 04 Oct 2014 21:01:14 -0400
php-codecoverage (2.0.11+dfsg-1) experimental; urgency=medium
* Team upload
[ Mathieu Parent ]
* Remove me from uploaders
[ David Prévot ]
* Add missing sources
* Update copyright
* Restart packaging for Composer source
* Minify JavaScript files from source
* Update links to external files
* Ship README
* Add upstream changelog
* Enable test during package build
* Add DEP-8 compliant tests
* Upload to experimental because phpunit 3.7.28-1 depends on
php-codecoverage (<= 1.2.99)
-- David Prévot <taffit@debian.org> Sat, 13 Sep 2014 14:32:54 -0400
php-codecoverage (1.2.13+dfsg2-1) unstable; urgency=medium
* Remove sourceless minified Javascript and CSS files
- Update debian/gbp.conf
- Create new +dfsg2 without those files (Closes: #737453)
- Depend on libjs-twitter-bootstrap
- Remove references to embedded libjs-twitter-bootstrap in package.xml
* Change maintainer name to "Debian PHP PEAR Maintainers"
* Update copyright for new upstream version
* Add myself as uploader
-- Prach Pongpanich <prachpub@gmail.com> Sun, 09 Feb 2014 14:55:32 +0700
php-codecoverage (1.2.13+dfsg1-1) unstable; urgency=medium
* New version
- YUI2 is not used anymore (Closes: #733962)
* gbp.conf: Use pristine-tar and remove non-free highcharts.js
* Updated VCS-* fields to canonical
* Add myself to uploaders
* Use ${phppear:Debian-Depends/Recommends/Breaks}
* Remove all patches
* Remove references of Highcharts
* Use ${phppear:summary} and ${phppear:description}
* Update to Standards-Version: 3.9.5 (no change)
* Override PEAR package names
* Move to debhelper 9
* Remove unneeded target delete_nonfree_from_upstream
* Check for non-free files
* Replace jquery.min.js by a symlink
* Depends on php5-cli (>= 5.3.7-1~) which provides PEAR 1.9.4
(Closes: #693679)
* Comment out references to highcharts.js
-- Mathieu Parent <sathieu@debian.org> Wed, 08 Jan 2014 19:45:02 +0100
php-codecoverage (1.1.2+dfsg1-3) unstable; urgency=low
* debian/patches
- Adding remove_highcharts.diff to remove highcharts.js from html
generated report (Closes: #684280).
* README.Debian
- Adding file
-- Luis Uribe <acme@eviled.org> Wed, 05 Sep 2012 13:37:45 -0500
php-codecoverage (1.1.2+dfsg1-2) unstable; urgency=low
* Correctly sets the copyright for YUI files.
-- Thomas Goirand <zigo@debian.org> Fri, 11 May 2012 06:52:21 +0000
php-codecoverage (1.1.2+dfsg1-1) unstable; urgency=low
* Initial release (Closes: #610676).
-- Thomas Goirand <zigo@debian.org> Fri, 09 Mar 2012 10:01:47 +0000
|