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