19632cb333da38b3db74e20f13e1be04f9fce3f6
[yaffs-website] / vendor / behat / mink-browserkit-driver / CHANGELOG.md
1 1.3.2 / 2016-03-05
2 ==================
3
4 Testsuite:
5
6 * Disallowed failures on PHP 7 on Travis (tests were passing since a long time)
7 * Added HTML escaping of submitted values in the driver testsuite web-fixtures
8
9 1.3.1 / 2016-01-19
10 ==================
11
12 * Added Symfony 3.0 compatibility
13
14 1.3.0 / 2015-09-21
15 ==================
16
17 BC break:
18
19 * Dropped support for Symfony 2.2 and older
20 * Bumped required PHP version to 5.3.6
21
22 New features:
23
24 * Updated the driver to use findElementsXpaths for Mink 1.7 and forward compatibility with Mink 2
25
26 Bug fixes:
27
28 * Improved the exception message when clicking on an invalid element
29 * Use `saveHTML` to get correct HTML code back
30
31 Misc:
32
33 * Updated the repository structure to PSR-4
34
35 1.2.0 / 2014-09-26
36 ==================
37
38 BC break:
39
40 * Changed the behavior of `getValue` for checkboxes according to the BC break in Mink 1.6
41
42 New features:
43
44 * Implemented `getOuterHtml`
45 * Added the support of manipulating forms without submit buttons
46 * Added support of any request headers instead of supporting only a few hardcoded ones
47 * Added support of any BrowserKit client using `filterResponse` when using BrowserKit 2.3+
48 * Added the support of reset buttons
49 * Implemented `submitForm`
50 * Implemented `isSelected`
51
52 Bug fixes:
53
54 * Fixed the support of options without value attribute in `isSelected` and `getValue`
55 * Added the support of radio buttons in `isChecked`
56 * Fixed the submission of empty textarea fields
57 * Refactored the handling of request headers to ensure they are reset when resetting the driver
58 * Fixed the handling of buttons to submit only for submit buttons rather than all buttons
59 * Fixed the code to throw exceptions rather than triggering a fatal error for invalid usages of the driver
60 * Fixed the removal of cookies
61 * Fixed the submission of form fields with same name and without id
62 * Fixed `getAttribute` to return `null` for missing attributes rather than an empty string
63
64 Testing:
65
66 * Updated the testsuite to use the new Mink 1.6 driver testsuite
67 * Added testing on HHVM