Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sebastianbergmann/phpunit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.8.24
Choose a base ref
...
head repository: sebastianbergmann/phpunit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.8.25
Choose a head ref

Commits on Mar 14, 2016

  1. Closes #2112

    sebastianbergmann committed Mar 14, 2016
    Copy the full SHA
    1a1b632 View commit details

Commits on Apr 1, 2016

  1. Remove IRC link

    sebastianbergmann committed Apr 1, 2016
    Copy the full SHA
    b958a6c View commit details
  2. Closes #2127

    sebastianbergmann committed Apr 1, 2016
    Copy the full SHA
    f9297c1 View commit details
  3. Copy the full SHA
    78e05b2 View commit details

Commits on Apr 2, 2016

  1. Cleanup

    sebastianbergmann committed Apr 2, 2016
    Copy the full SHA
    d2e27a5 View commit details
  2. Copy the full SHA
    909b21d View commit details
  3. Use Ant on Travis

    sebastianbergmann committed Apr 2, 2016
    Copy the full SHA
    d24b482 View commit details
  4. Revert "Use Ant on Travis"

    This reverts commit d24b482.
    sebastianbergmann committed Apr 2, 2016
    Copy the full SHA
    612e505 View commit details

Commits on Apr 3, 2016

  1. Copy the full SHA
    ee7a4e4 View commit details

Commits on Apr 4, 2016

  1. Copy the full SHA
    3946af2 View commit details
  2. Fix CS/WS issue

    sebastianbergmann committed Apr 4, 2016
    Copy the full SHA
    d667a50 View commit details

Commits on Apr 5, 2016

  1. Simplify

    sebastianbergmann committed Apr 5, 2016
    Copy the full SHA
    477f77e View commit details

Commits on Apr 7, 2016

  1. Copy the full SHA
    f9733ae View commit details

Commits on Apr 12, 2016

  1. allow unordered occurend of phpType elements

    Michael Kühn authored and sebastianbergmann committed Apr 12, 2016
    Copy the full SHA
    496745a View commit details

Commits on Apr 25, 2016

  1. Copy the full SHA
    3c4becb View commit details

Commits on Apr 29, 2016

  1. Copy the full SHA
    ac4dfb0 View commit details

Commits on May 10, 2016

  1. Copy the full SHA
    5b34300 View commit details
  2. Copy the full SHA
    cb07302 View commit details
  3. PHPUnit should not fail if a constant defined in included file is red…

    …efined during separate process initializtion
    vbashkirtsev authored and sebastianbergmann committed May 10, 2016
    Copy the full SHA
    056d45b View commit details
  4. Update ChangeLog

    sebastianbergmann committed May 10, 2016
    Copy the full SHA
    9bffac9 View commit details
  5. Prepare release

    sebastianbergmann committed May 10, 2016
    Copy the full SHA
    6d1588a View commit details
33 changes: 12 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,13 @@
build/api
build/code-browser
build/coverage
build/logs
build/pdepend
build/phar
build/phpdox
build/*.phar
build/*.phar.asc
tests/TextUI/*.diff
tests/TextUI/*.exp
tests/TextUI/*.log
tests/TextUI/*.out
tests/TextUI/*.php
/bin
/vendor
/.ant_targets
/.idea
/build/phar
/build/*.phar
/build/*.phar.asc
/tests/TextUI/*.diff
/tests/TextUI/*.exp
/tests/TextUI/*.log
/tests/TextUI/*.out
/tests/TextUI/*.php
/cache.properties
/composer.lock
/composer.phar
phpunit.xml
cache.properties
.idea
.ant_targets
/vendor
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -7,11 +7,13 @@ php:
- 5.5
- 5.6
- 7.0
- nightly
- hhvm

matrix:
allow_failures:
- php: 7.0
- php: nightly
- php: hhvm

sudo: false
@@ -25,7 +27,7 @@ install:
script:
- ./phpunit
- ./phpunit --configuration ./build/travis-ci-fail.xml > /dev/null; if [ $? -eq 0 ]; then echo "SHOULD FAIL"; false; else echo "fail checked"; fi;
- xmllint --noout --schema phpunit.xsd phpunit.xml.dist
- xmllint --noout --schema phpunit.xsd phpunit.xml
- xmllint --noout --schema phpunit.xsd tests/_files/configuration.xml
- xmllint --noout --schema phpunit.xsd tests/_files/configuration_empty.xml
- xmllint --noout --schema phpunit.xsd tests/_files/configuration_xinclude.xml -xinclude
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@ Please note that this project is released with a [Contributor Code of Conduct](C

Please make sure that you have [set up your user name and email address](http://git-scm.com/book/en/v2/Getting-Started-First-Time-Git-Setup) for use with Git. Strings such as `silly nick name <root@localhost>` look really stupid in the commit history of a project.

Pull requests for bug fixes must be based on the current stable branch whereas pull requests for new features must be based on the current alpha branch (when `5.0` is the current stable branch, then `5.1` is the current beta branch and `5.2` is the current alpha branch).
Pull requests for bug fixes must be based on the current stable branch whereas pull requests for new features must be based on the `master` branch.

We are trying to keep backwards compatibility breaks in PHPUnit to an absolute minimum. Please take this into account when proposing changes.

8 changes: 8 additions & 0 deletions ChangeLog-4.8.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes of the PHPUnit 4.8 release series are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.

## [4.8.25] - 2016-05-10

### Fixed

* Fixed [#2112](https://github.com/sebastianbergmann/phpunit/issues/2112): Output is html entity encoded when ran through `phpdbg`
* Fixed [#2158](https://github.com/sebastianbergmann/phpunit/issues/2158): Failure to run tests in separate processes if a file included into main process contains constant definition

## [4.8.24] - 2016-03-14

### Fixed
@@ -177,6 +184,7 @@ New PHAR release due to updated dependencies
* Made the argument check of `assertContains()` and `assertNotContains()` more strict to prevent undefined behavior such as [#1808](https://github.com/sebastianbergmann/phpunit/issues/1808)
* Changed the name of the default group from `__nogroup__` to `default`

[4.8.25]: https://github.com/sebastianbergmann/phpunit/compare/4.8.24...4.8.25
[4.8.24]: https://github.com/sebastianbergmann/phpunit/compare/4.8.23...4.8.24
[4.8.23]: https://github.com/sebastianbergmann/phpunit/compare/4.8.22...4.8.23
[4.8.22]: https://github.com/sebastianbergmann/phpunit/compare/4.8.21...4.8.22
Loading