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.33
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.34
Choose a head ref
  • 2 commits
  • 4 files changed
  • 1 contributor

Commits on Jan 26, 2017

  1. Closes #2447

    sebastianbergmann committed Jan 26, 2017

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    05da557 View commit details
  2. Prepare release

    sebastianbergmann committed Jan 26, 2017
    Copy the full SHA
    7eb4520 View commit details
Showing with 14 additions and 13 deletions.
  1. +5 −0 ChangeLog-4.8.md
  2. +1 −1 src/Runner/Version.php
  3. +1 −5 src/Util/Configuration.php
  4. +7 −7 tests/Util/ConfigurationTest.php
5 changes: 5 additions & 0 deletions ChangeLog-4.8.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,10 @@

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.34] - 2017-01-26

* Fixed [#2447](https://github.com/sebastianbergmann/phpunit/issues/2447): Reverted backwards incompatible change to handling of boolean environment variable values specified in XML

## [4.8.33] - 2017-01-25

### Fixed
@@ -237,6 +241,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.34]: https://github.com/sebastianbergmann/phpunit/compare/4.8.33...4.8.34
[4.8.33]: https://github.com/sebastianbergmann/phpunit/compare/4.8.32...4.8.33
[4.8.32]: https://github.com/sebastianbergmann/phpunit/compare/4.8.31...4.8.32
[4.8.31]: https://github.com/sebastianbergmann/phpunit/compare/4.8.30...4.8.31
2 changes: 1 addition & 1 deletion src/Runner/Version.php
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ public static function id()
}

if (self::$version === null) {
$version = new Version('4.8.33', dirname(dirname(__DIR__)));
$version = new Version('4.8.34', dirname(dirname(__DIR__)));
self::$version = $version->getVersion();
}

6 changes: 1 addition & 5 deletions src/Util/Configuration.php
Original file line number Diff line number Diff line change
@@ -473,11 +473,7 @@ public function getPHPConfiguration()
$name = (string) $var->getAttribute('name');
$value = (string) $var->getAttribute('value');

if ($array !== 'env') {
$result[$array][$name] = $this->getBoolean($value, $value);
} else {
$result[$array][$name] = $value;
}
$result[$array][$name] = $this->getBoolean($value, $value);
}
}

14 changes: 7 additions & 7 deletions tests/Util/ConfigurationTest.php
Original file line number Diff line number Diff line change
@@ -277,7 +277,7 @@ public function testPHPConfigurationIsReadCorrectly()
'ini' => array('foo' => 'bar'),
'const' => array('FOO' => false, 'BAR' => true),
'var' => array('foo' => false),
'env' => array('foo' => 'true'),
'env' => array('foo' => true),
'post' => array('foo' => 'bar'),
'get' => array('foo' => 'bar'),
'cookie' => array('foo' => 'bar'),
@@ -302,8 +302,8 @@ public function testPHPConfigurationIsHandledCorrectly()
$this->assertEquals(false, FOO);
$this->assertEquals(true, BAR);
$this->assertEquals(false, $GLOBALS['foo']);
$this->assertEquals('true', $_ENV['foo']);
$this->assertEquals('true', getenv('foo'));
$this->assertEquals(true, $_ENV['foo']);
$this->assertEquals(true, getenv('foo'));
$this->assertEquals('bar', $_POST['foo']);
$this->assertEquals('bar', $_GET['foo']);
$this->assertEquals('bar', $_COOKIE['foo']);
@@ -319,11 +319,11 @@ public function testPHPConfigurationIsHandledCorrectly()
*/
public function testHandlePHPConfigurationDoesNotOverwrittenExistingEnvArrayVariables()
{
$_ENV['foo'] = 'false';
$_ENV['foo'] = false;
$this->configuration->handlePHPConfiguration();

$this->assertEquals('false', $_ENV['foo']);
$this->assertEquals('true', getenv('foo'));
$this->assertEquals(false, $_ENV['foo']);
$this->assertEquals(true, getenv('foo'));
}

/**
@@ -336,7 +336,7 @@ public function testHandlePHPConfigurationDoesNotOverriteVariablesFromPutEnv()
putenv('foo=putenv');
$this->configuration->handlePHPConfiguration();

$this->assertEquals('true', $_ENV['foo']);
$this->assertEquals(true, $_ENV['foo']);
$this->assertEquals('putenv', getenv('foo'));
}