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
|
php-codecoverage (9.2.26+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Improve the legend on the file pages of the HTML code coverage report
* Prepare release
* Rename ChangeLog to prevent conflicts
[ David Prévot ]
* Update current branch name
* Adapt to changed upstream changelog filename
-- David Prévot <taffit@debian.org> Mon, 06 Mar 2023 19:15:56 +0100
php-codecoverage (9.2.25+dfsg-1) unstable; urgency=medium
[ Sebastian Bergmann ]
* Prepare release
[ David Prévot ]
* Track version 9 for Bookworm
-- David Prévot <taffit@debian.org> Sun, 26 Feb 2023 09:43:06 +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
|