Skip to content

Debian Changelog phpunit (3.5.5-2)

2010

phpunit (3.5.5-2) unstable; urgency=low

   * fix doc-base-file-references-missing-file

 -- Ivan Borzenkov <ivan1986@list.ru>  Sat, 11 Dec 2010 18:19:39 +0300

phpunit (3.5.5-1) unstable; urgency=low

   * upload to debian

 -- Ivan Borzenkov <ivan1986@list.ru>  Sat, 11 Dec 2010 14:23:30 +0300

phpunit (3.5.5-0ubuntu1) natty; urgency=low

   * New upstream release
     - Added support for getMockForAbstractClass()
       to the mock builder API.
     - Added a ticket listener that interacts with
       the Trac issue API.
     - Added support for E_USER_NOTICE and E_USER_WARNING
       to PHPUnit_Framework_Error_Notice and
       PHPUnit_Framework_Error_Warning, respectively.
     - Refactored test dependency handling (required for a
       bugfix in PHPUnit_Selenium).
     - Fixed --stop-on-failure.
   * fix watch path

 -- Ivan Borzenkov <ivan1986@list.ru>  Thu, 09 Dec 2010 14:08:50 +0300

phpunit (3.5.3-0ubuntu1) natty; urgency=low

   * New upstream release
     - Fixed GH-13: Result XML inconsistent when
       data provider returns empty array or does not exist.
     - Fixed the skeleton generator for tested classes.
     - Strict mode is now compatible with process isolation.
     - Worked around http://bugs.php.net/bug.php?id=52911
       to make process isolation work on Windows.

 -- Ivan Borzenkov <ivan1986@list.ru>  Mon, 01 Nov 2010 09:29:40 +0300

phpunit (3.5.2-0ubuntu1) natty; urgency=low

   * New upstream release
     - Fixed GH-30: --repeat option does not work.
     - Fixed GH-34: Bogus bootstrap file raises cryptic error.
     - Fixed GH-47: Failure message ignored in assertSelectCount().
     - Fixed GH-48: Remove strict incomplete duplication.
     - Tests that are incomplete or skipped no longer yield
       code coverage in strict mode.

 -- Ivan Borzenkov <ivan1986@list.ru>  Thu, 21 Oct 2010 00:17:20 +0400

phpunit (3.5.0-1) unstable; urgency=low

   * New upstream release
     - Implemented TRAC-834: Refactor collection, processing,
       and rendering of code coverage information using the
       [PHP_CodeCoverage](http://github.com/sebastianbergmann/
       php-code-coverage) component.
     - Implemented TRAC-948: Add D-BUS test listener.
     - Implemented TRAC-967: Only populate whitelist when code
       coverage is used.
     - Implemented TRAC-985: Sort arrays before diff.
     - Implemented TRAC-1033: Supplement commandline option
       `--stop-on-error` and friends.
     - Implemented TRAC-1038: Add `assertInstanceOf()`,
       `assertAttributeInstanceOf()`, `assertNotInstanceOf()`, and
       `assertAttributeNotInstanceOf()` as well as `assertInternalType()`,
       `assertAttributeInternalType()`, `assertNotInternalType()`,
       and `assertAttributeNotInternalType()`.
     - Implemented TRAC-1039: Added support for `regexpi:`
       matcher to Selenium RC driver.
     - Implemented TRAC-1078: Added support for setting
       superglobals via the XML configuration file.
     - Added support for mocking/stubbing of static methods.
       This requires PHP 5.3 and late static binding.
     - Added `assertStringMatchesFormat()` and `assertStringNotMatchesFormat()`
       as well as `assertStringMatchesFormatFile()` and
       `assertStringNotMatchesFormatFile()` for `EXPECTF`-like
       (`run-tests.php`) format string matching.
     - Added `assertEmpty()` and `assertNotEmpty()` as well as
       `assertAttributeEmpty()` and `assertAttributeNotEmpty()`.
     - Added the `@expectedExceptionCode` and
       `@expectedExceptionMessage` annotations.
     - Added support for the [XML format of mysqldump](http://dev.mysql.com
       /doc/refman/5.1/en/mysqldump.html#option_mysqldump_xml) to the
       database extension.
     - Added the `<includePath>` element to the `<php>` section of
       the XML configuration file.
     - Added the `verbose` attribute to the `<phpunit>` element of
       the XML configuration file.
     - Added a ticket listener that interacts with the GitHub issue API.
     - Added a ticket listener that interacts with the GoogleCode issue API.
     - Added a test listener that uses
       [XHProf](http://mirror.facebook.net/facebook/xhprof/doc.html)
       to profile the tested code.
     - Added the `--strict` switch to mark tests that perform
       no assertions as incomplete.
     - The paths in the XML configuration file can now be relative to
       the directory that contains the XML configuration file.
     - The `@author` annotation is now an alias for `@group`
       allowing to filter tests based on their authors.
     - The `PHPUnit_Extensions_SeleniumTestCase::$autoStop`
       flag has been removed, please start Selenium RC with
       `-browserSessionReuse` instead.
     - The `--log-metrics` and `--log-pmd` switches have been removed.
       Their functionality has been or will be merged into
       [PHP_Depend](http://pdepend.org/) and [PHPMD](http://phpmd.org/).
       Details can be found [here](http://sebastian-bergmann.de/archives/
       744-On-PHPUnit-and-Software-Metrics.html).
     - The `--ansi` switch has been removed, please use `--colors` instead.
     - The `--coverage-source` switch has been removed.
     - The `--coverage-xml` switch has been removed, please use
       `--coverage-clover` instead.
     - The `--log-graphviz` switch has been removed.
     - The `--log-xml` switch has been removed, please use
       `--log-junit` instead.
     - The `--report` switch has been removed, please use
       `--coverage-html` instead.
     - The `--skeleton` switch has been removed, please use
       `--skeleton-test` instead.
     - The `TestListener` implementation that logs to
       [PEAR::Log](http://pear.php.net/package/Log) sinks has been removed.
     - The test database functionality has been removed.
     - The shared fixture functionality has been removed.
     - `PHPUnit_Extensions_PerformanceTestCase` has been removed.
     - `PHPUnit_Extensions_TicketListener_Trac` has been removed.
     - The `PHPUnit_Extensions_Story_TestCase` functionality has been deprecated.
     - Replaced `PHPUnit_Framework_MockObject` with the
       [PHPUnit_MockObject](http://github.com/sebastianbergmann/
       phpunit-mock-objects) component.
     - Replaced `PHPUnit_Extensions_Database_TestCase` with the
       [DbUnit](http://github.com/sebastianbergmann/dbunit) component.
     - Replaced `PHPUnit_Extensions_SeleniumTestCase` with the
       [PHPUnit_Selenium](http://github.com/sebastianbergmann/phpunit-selenium)
       component.
     - Replaced `PHPUnit_Util_FilterIterator` with the
       [PHP_FileIterator](http://github.com/sebastianbergmann/php-file-iterator)
       component.
     - Replaced `PHPUnit_Util_Template` with the
       [Text_Template](http://github.com/sebastianbergmann/php-text-template)
       component.
     - Replaced `PHPUnit_Util_Timer` with the
       [PHP_Timer](http://github.com/sebastianbergmann/php-timer) component.
     - Fixed TRAC-1068: `assertSame()` on two floats does not print the error
       message.
     - Fixed GH-7: Code paths that create a `PHPUnit_Framework_Warning`
       end up serializing/unserializing globals unconditionally.
     - PHPUnit now requires PHP 5.2.7 (or later) but PHP 5.3.3 (or later) is
       highly recommended.
   * Bump Standards-Version to 3.9.1, no change needed
   * remove dbunit (LP: #595244)

 -- Ivan Borzenkov <ivan1986@list.ru>  Mon, 27 Sep 2010 20:23:39 +0400

phpunit (3.4.15-1) maverick; urgency=low

   * New upstream release
     F TRAC-939: Missing test classes when using process isolation
     F TRAC-1024: setUpBeforeClass() does not work in process isolation
     F TRAC-1075: empty <file></file> in phpunit.xml causes errors
   * switch to quilt
   * update getDoc

 -- Ivan Borzenkov <ivan1986@list.ru>  Sun, 18 Jul 2010 23:18:44 +0400

phpunit (3.4.14-1) unstable; urgency=low

   * New upstream release
     F TRAC-1057: phpunit_coverage.php deletes all
       files in web server document root
     F TRAC-1062: GlobalState::restoreSuperGlobalArray
       throws error when global isn't an array
     F TRAC-1063: Trailing Whitespace in files
     F TRAC-1056: Badly done data providers cause crashes
   * update manpage (Closes: #586214)

 -- Ivan Borzenkov <ivan1986@list.ru>  Thu, 17 Jun 2010 20:05:03 +0400

phpunit (3.4.13-1) unstable; urgency=low

   * New upstream release
     F TRAC-1035: PostgreSQL MetaData queries are incorrect
     F TRAC-1043: method names in HTML code coverage report
       are not properly escaped
     F TRAC-1045: filter has problems with Umlaut
   * update doc

 -- Ivan Borzenkov <ivan1986@list.ru>  Tue, 25 May 2010 20:20:00 +0400

phpunit (3.4.12-1) unstable; urgency=low

   * New upstream release
     I TRAC-1027: Declare a decent return-type in
       PHPUnit_Framework_TestCase::getMock().
     F TRAC-1013: Undefined index: _ENV running supplied tests.
     F TRAC-1016: Usage of {} to access string offsets is deprecated.
     F TRAC-1021: Depending on a test that uses a data provider does not work.
     F TRAC-1030: Selenese tests cause double escaping of
       Selenium actions and arguments.

 -- Ivan Borzenkov <ivan1986@list.ru>  Sat, 10 Apr 2010 11:20:44 +0400

phpunit (3.4.11-1) unstable; urgency=low

   * New upstream release
     F tearDownAfterClass() irregularly called with @dataProvider
     F Missing include of PHPUnit_Framework_Exception in PHPUnit/Util/Filter.php

 -- Ivan Borzenkov <ivan1986@list.ru>  Wed, 17 Feb 2010 10:55:59 +0300

phpunit (3.4.10-1) unstable; urgency=low

   * New upstream release
   * Bump Standards-Version to 3.8.4, no change needed

 -- Ivan Borzenkov <ivan1986@list.ru>  Fri, 12 Feb 2010 20:40:06 +0300

phpunit (3.4.9-1) unstable; urgency=low

   * New upstream release

 -- Ivan Borzenkov <ivan1986@list.ru>  Wed, 03 Feb 2010 23:20:55 +0300

2009

phpunit (3.4.5-1) unstable; urgency=low

   * New upstream release

 -- Ivan Borzenkov <ivan1986@list.ru>  Sat, 26 Dec 2009 02:42:24 +0300

phpunit (3.4.3-1) unstable; urgency=low

   * New upstream release

 -- Ivan Borzenkov <ivan1986@list.ru>  Sat, 28 Nov 2009 11:44:13 +0300

phpunit (3.4.2+repack-1) unstable; urgency=low

   * New upstream release

 -- Ivan Borzenkov <ivan1986@list.ru>  Wed, 04 Nov 2009 12:02:57 +0300

phpunit (3.4.1+repack-1) unstable; urgency=low

   * New upstream release

 -- Ivan Borzenkov <ivan1986@list.ru>  Mon, 12 Oct 2009 11:13:48 +0400

phpunit (3.4.0+repack-1) unstable; urgency=low

   * New upstream release
   * update documentation
   * update version number in patch and getDoc.sh
   * Bump Standards-Version to 3.8.3, no change needed

 -- Ivan Borzenkov <ivan1986@list.ru>  Thu, 17 Sep 2009 01:50:23 +0400

phpunit (3.3.17+repack-2) unstable; urgency=low

   * Fix debian/copyright - add CC License on doc

 -- Ivan Borzenkov <ivan1986@list.ru>  Tue, 07 Jul 2009 09:58:09 +0400

phpunit (3.3.17+repack-1) unstable; urgency=low

   * New upstream release
   * Fix warnings (Closes: #534485)
   * Fixed manpage (Closes: #529302)
   * Added package phpunit-doc
   * Removed package phpunit2
   * Repacked original source (added documentation)
   * Changed section from web to php
   * Bump Standards-Version to 3.8.2, no change needed

 -- Ivan Borzenkov <ivan1986@list.ru>  Mon, 29 Jun 2009 21:16:47 +0400

phpunit (3.3.16-1) unstable; urgency=low

   * New upstream release
     - fix some bugs
   * debian/control:
     - Standards-Version: 3.8.1
   * Update manpage

 -- Ivan Borzenkov <ivan1986@list.ru>  Thu, 16 Apr 2009 23:13:35 +0400

phpunit (3.3.15-1) unstable; urgency=low

   * New upstream release
     - fix some bugs
   * Update manpage

 -- Ivan Borzenkov <ivan1986@list.ru>  Sun, 01 Mar 2009 01:21:58 +0300

phpunit (3.3.14-1) unstable; urgency=low

   * New upstream release
   * Update manpage to 3.3.14
   * Fix build scpipt - in orig move phpunit to phpunit.php
   * debian/watch: Updated.

 -- Ivan Borzenkov <ivan1986@list.ru>  Mon, 16 Feb 2009 20:34:19 +0300

phpunit (3.3.10-1) unstable; urgency=low

   * New upstream release
   * New mantainer. (Closes: #512687)
   * Remove depend from php5. (Closes: #466767)
   * debian/control:
     - Standards-Version: 3.8.0
   * Update manpage to 3.3.10
   * Add patch for remove yui library
     license problem - no source code avalible now and function is no usable

 -- Ivan Borzenkov <ivan1986@list.ru>  Thu, 22 Jan 2009 02:16:47 +0300

2008

phpunit (3.2.16-1) unstable; urgency=low

   * New upstream release

 -- Jose Carlos Medeiros <debian@psabs.com.br>  Thu, 27 Mar 2008 00:11:53 -0300

2007

phpunit (3.2.5-1) unstable; urgency=low

   * New upstream release
   * New mantainer. (Closes: #454908)
   * Removed install of PHPUnit2 that was changed to PHPUnit.
   * debian/control:
     - Updated "Homepage:" pseudo-header as Reference 1.14.6.
     - Standards-Version: 3.7.3
   * Added phpunit.1 man page.

 -- Jose Carlos Medeiros <debian@psabs.com.br>  Fri, 14 Dec 2007 21:28:41 -0200

phpunit (3.0.6-3) unstable; urgency=low

   * QA upload, orphaning this package.

 -- Bart Martens <bartm@debian.org>  Sat, 08 Dec 2007 08:58:27 +0100

phpunit (3.0.6-2) unstable; urgency=low

   * debian/control: Added transitional package "phpunit2".
   * debian/watch: Updated.

 -- Bart Martens <bartm@knars.be>  Sat, 16 Jun 2007 13:05:13 +0200

phpunit (3.0.6-1) unstable; urgency=low

   * New upstream release.
   * debian/patches/01missingfile.diff: Removed obsolete patch.
   * debian/patches/02renamebin.diff: Removed obsolete patch.
   * debian/control: Merging packages phpunit and phpunit2.  Closes: #424824.
   * debian/rules, debian/control, debian/install, debian/links: Not using
     /usr/share/cdbs/1/class/pear.mk so not Build-Depends on dh-make-php.
   * debian/control, debian/copyright: Upstream homepage has moved.

 -- Bart Martens <bartm@knars.be>  Sat, 19 May 2007 16:26:14 +0200

2006

phpunit2 (2.3.6-2) unstable; urgency=low

   * debian/*: Repackaged with dh-make-pear version 0.1.3.
   * debian/patches/01missingfile.diff: Missing Util/AllTests.php.
   * debian/patches/02renamebin.diff: Install /usr/bin/phpunit2.
   * debian/control: Added php-pear, php5-cli, php-benchmark to Depends.
     Closes: #386516, #386803.
   * debian/README.Debian: More documentation on the web.

 -- Bart Martens <bartm@knars.be>  Sun, 10 Sep 2006 17:15:59 +0200

phpunit2 (2.3.6-1) unstable; urgency=low

   * New upstream release.  Note the two source packages, phpunit for use with
     php4, and phpunit2 (this package) for use with php5.  Closes: #380468.

 -- Bart Martens <bartm@knars.be>  Sun, 30 Jul 2006 12:42:40 +0200

phpunit (1.3.2-2) unstable; urgency=low

   * New maintainer.  Closes: #374437.
   * debian/*: Repackaged with dh-make 0.41.
   * debian/copyright: Updated to BSD license.
   * PHPUnit-1.3.2/PHPUnit/GUI/Gtk.php: Fixed reference to license.
   * debian/control: Added homepage to description.
   * debian/watch: Added.

 -- Bart Martens <bartm@knars.be>  Sun, 30 Jul 2006 10:59:20 +0200

phpunit (1.3.2-1) unstable; urgency=low

   * New upstream version.  (Closes: #340847)
   * Orphaned.

 -- Matthew Palmer <mpalmer@debian.org>  Mon, 19 Jun 2006 21:21:17 +1000

2004

phpunit (1.1.1-2) unstable; urgency=low

   * Improved the message generation, including some refactoring and improved
     message passing.

 -- Matthew Palmer <mpalmer@debian.org>  Tue, 16 Nov 2004 15:19:32 +1100

phpunit (1.1.1-1) unstable; urgency=low

   * Initial release.  Closes: #273649.  Nice version number, don't you think?

 -- Matthew Palmer <mpalmer@debian.org>  Sat, 6 Nov 2004 18:05:58 +1100