Skip to content

Commit f8b2d6a

Browse files
committed
Release 0.6.0
1 parent de1d8c9 commit f8b2d6a

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
CHANGELOG
22
=========
33

4+
0.6.0
5+
-----
6+
7+
* Add compatibility with Symfony 5
8+
* Allow to use `Client::waitFor()` to wait for invisible elements
9+
* Add support to pass XPath expressions as parameters of `Client::waitFor()`
10+
* Fix `Crawler::attr()` signature (it can return `null`)
11+
* Deprecate `ServerListener` (use `ServerExtension` instead)
12+
* Upgrade ChromeDriver to version 78.0.3904.70
13+
* New logo
14+
* Various docs fixes and improvements
15+
416
0.5.2
517
-----
618

src/ServerListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
use PHPUnit\Framework\TestListenerDefaultImplementation;
2020
use PHPUnit\Framework\TestSuite;
2121

22-
@trigger_error(sprintf('The "%s" class is deprecated since Panther 0.5.3, use "%s" instead.', ServerListener::class, ServerExtension::class), E_USER_DEPRECATED);
22+
@trigger_error(sprintf('The "%s" class is deprecated since Panther 0.6, use "%s" instead.', ServerListener::class, ServerExtension::class), E_USER_DEPRECATED);
2323

2424
/**
25-
* @deprecated since Panther 0.5.3, use Symfony\Component\Panther\ServerExtension instead.
25+
* @deprecated since Panther 0.6, use Symfony\Component\Panther\ServerExtension instead.
2626
*/
2727
final class ServerListener implements TestListener
2828
{

0 commit comments

Comments
 (0)