Skip to content

Commit

Permalink
Merge branch 'master' into w3c-compat-release
Browse files Browse the repository at this point in the history
  • Loading branch information
justafish committed Dec 13, 2023
2 parents c15694b + 4ca4083 commit c24b0ee
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Check composer.json
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
coverage: none
Expand All @@ -29,7 +29,7 @@ jobs:
name: Static analysis
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
coverage: none
Expand All @@ -49,7 +49,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
17 changes: 15 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
1.7.0 / 2023-02-26
1.7.0 / 2023-12-09
==================

BC break:

* `syn` JS library was upgraded from v0.0.3 to v0.15.0

New features:

* Added parameter types for all methods
* Added support for Symfony 7

Bug fixes:

* `Selenium2Driver::{keyPress, keyDown, keyUp}` methods were using numeric string input as char code. Newly an integer type must be passed.
* Fix compatibility of `execute` with Selenium 4
* `Selenium2Driver::{keyPress, keyDown, keyUp}` methods were using numeric string input as char code. Newly an integer type must be passed. Strings are not handled as strings properly, as done in other Mink drivers.
* Add proper error handling for non-started sessions

Testsuite:

* Fixed compatibility with the latest driver testsuite
* Added CI jobs for PHP 8.2 and 8.3
* Added static analysis with phpstan

1.6.0 / 2022-03-28
==================
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^8.5.22 || ^9.5.11",
"symfony/error-handler": "^4.4 || ^5.0"
"symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},

"autoload": {
Expand Down

0 comments on commit c24b0ee

Please sign in to comment.