Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Commit

Permalink
Update the changelog for 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stof committed Dec 29, 2021
1 parent 22eeffb commit a60fba4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
2.0.0 / 2021-12-29
==================

This is the last release of GoutteDriver. As of Goutte 4, Goutte is just reusing
the HttpBrowser of `symfony/browser-kit` without any customization. This means
that the HttpBrowser can be used directly with `behat/mink-browserkit-driver`
instead of using this driver. This 2.0 release is meant as an upgrade path.

Removed:

* Removed support for PHP 7.1 and older
* Removed support for Goutte 2 and 3

New features:

* Add support for Goutte 4
* Migrated to BrowserKitDriver 2

1.3.0 / 2021-10-12
==================

Expand Down

4 comments on commit a60fba4

@mpdude
Copy link

@mpdude mpdude commented on a60fba4 Apr 6, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stof At the risk of asking a dumb question or not seeing the obvious – how do I configure Behat/MinkExtension to use symfony/browser-kit directly? I guess I am missing some kind of "bridge" package that sets up a DriverFactory for BrowserKit?

@mpdude
Copy link

@mpdude mpdude commented on a60fba4 Apr 6, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FriendsOfBehat/MinkExtension#14 probably is part of the answer.

@aik099
Copy link
Member

@aik099 aik099 commented on a60fba4 Apr 10, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stof At the risk of asking a dumb question or not seeing the obvious – how do I configure Behat/MinkExtension to use symfony/browser-kit directly? I guess I am missing some kind of "bridge" package that sets up a DriverFactory for BrowserKit?

@mpdude, to make this happen you need to use the minkphp/MinkBrowserKitDriver, but I have no idea how the behat.yml should look like in that case for Behat/MinkExtension. The https://github.com/Behat/MinkExtension/blob/master/doc/index.rst should be a good starting point for figuring out the correct behat.yml content.

@stof
Copy link
Member Author

@stof stof commented on a60fba4 Apr 11, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mpdude indeed. That PR is the answer.

Please sign in to comment.