Skip to content

Commit db705df

Browse files
committed
v3.1.0 - Legacy Maintenance release (guzzle)
1 parent 98d8c61 commit db705df

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ documented in this file.
66
The format is based on [Keep a Changelog](http://keepachangelog.com/)
77
and this project adheres to [Semantic Versioning](http://semver.org/).
88

9-
## [3.1.x-dev] - UNRELEASED
9+
## [3.1.0] - 2017-10-17 - Legacy maintenance release
1010

1111
- Update PHP requirement to `>=5.6` (from `>=5.3.10`)
12-
- Update `guzzlehttp/guzzle` from `~3.0` to `~4.0`.
12+
- Update `guzzlehttp/guzzle` from `~3.0` to `~4.0||~5.0`.
1313
- Update `phpunit/php-code-coverage` from `~2.2` to `~4.0||~5.0`.
1414
- Removed blacklist functionality from configuration files (use `whiltelisted`
1515
directories with `include`/`exclude` instead).
@@ -48,7 +48,9 @@ disappear, this extension would still work.
4848
- Updated `vfsStream` from `1.2.*` to `1.3.*` to fix failing/skipped test
4949
- Updated versions of dependencies and code is tested to run with Behat `2.5`.
5050

51-
[3.0.x-dev]: https://github.com/leanphp/behat-code-coverage/compare/v2.5.5...master
51+
[3.2.x-dev]: https://github.com/leanphp/behat-code-coverage/compare/v3.1.0...master
52+
[3.1.0]: https://github.com/leanphp/behat-code-coverage/releases/tag/v3.1.0
53+
[3.0.0]: https://github.com/leanphp/behat-code-coverage/releases/tag/v3.0.0
5254
[2.5.5]: https://github.com/leanphp/behat-code-coverage/releases/tag/v2.5.5
5355

5456
[0]: https://github.com/leanphp/behat-code-coverage

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"php": ">=5.6",
2929
"phpunit/php-code-coverage": "~4.0||~5.0",
3030
"behat/behat": "~3.0",
31-
"guzzlehttp/guzzle": "~4.0",
31+
"guzzlehttp/guzzle": "~4.0||~5.0",
3232
"symfony/config": "~2.3||~3.0",
3333
"symfony/dependency-injection": "~2.2||~3.0",
3434
"symfony/expression-language": "~2.2||~3.0",

src/Driver/RemoteXdebug.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class RemoteXdebug implements DriverInterface
3333
* Constructor
3434
*
3535
* [
36-
* 'base_url' => 'http://api.example.com/1.0/coverage',
36+
* 'base_uri' => 'http://api.example.com/1.0/coverage',
3737
* 'auth' => [
3838
* 'user' => 'user name',
3939
* 'password' => 'password',
@@ -60,7 +60,7 @@ public function __construct(array $config, Client $client)
6060
$this->config = $config;
6161

6262
$this->client = $client;
63-
$this->client->setBaseUrl($config['base_url']);
63+
//$this->client->setBaseUrl($config['base_url']);
6464
}
6565

6666
/**

tests/Driver/RemoteXdebugTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ protected function setUp()
2929
parent::setUp();
3030

3131
$this->config = array(
32-
'base_url' => 'http://localhost',
32+
'base_uri' => 'http://localhost',
3333
'auth' => array(
3434
'user' => 'user name',
3535
'password' => 'password',

0 commit comments

Comments
 (0)